|
@@ -21,23 +21,57 @@ namespace RevitToJBim.JsonConverter
|
|
|
{
|
|
|
public static string Serializer(BimDocument document)
|
|
|
{
|
|
|
+ JsonSerializerSettings jsetting = CreateDefaultSettings();
|
|
|
+ var bimObjects = document.BimObjects;
|
|
|
+ var group = bimObjects.GroupBy(bim => bim.ElementType);
|
|
|
+ Dictionary<string, List<BimObject>> dic = new Dictionary<string, List<BimObject>>();
|
|
|
+ foreach (var collection in group)
|
|
|
+ {
|
|
|
+ dic[collection.Key + "s"] = collection.ToList();
|
|
|
+ }
|
|
|
+
|
|
|
+ var documentObject = new {MBIName = "PjXXX_001", PlanName = "F1-saga", Elements = dic};
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ string dataStr =JsonConvert.SerializeObject(documentObject, jsetting);
|
|
|
+ return dataStr;
|
|
|
+ }
|
|
|
+
|
|
|
+ private static JsonSerializerSettings CreateDefaultSettings()
|
|
|
+ {
|
|
|
JsonSerializerSettings jsetting = new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore };
|
|
|
jsetting.Converters.Add(new BimIdConverter());
|
|
|
|
|
|
|
|
|
jsetting.Converters.Add(new StringEnumConverter());
|
|
|
jsetting.Converters.Add(new ParameterConverter());
|
|
|
+ return jsetting;
|
|
|
+ }
|
|
|
+ private static DocumentDto ConverToDto(BimDocument document)
|
|
|
+ {
|
|
|
+ DocumentDto dto = new DocumentDto();
|
|
|
var bimObjects = document.BimObjects;
|
|
|
var group = bimObjects.GroupBy(bim => bim.ElementType);
|
|
|
Dictionary<string, List<BimObject>> dic = new Dictionary<string, List<BimObject>>();
|
|
|
foreach (var collection in group)
|
|
|
{
|
|
|
dic[collection.Key + "s"] = collection.ToList();
|
|
|
-
|
|
|
}
|
|
|
-
|
|
|
- string dataStr = JsonConvert.SerializeObject(dic, jsetting);
|
|
|
- return dataStr;
|
|
|
+
|
|
|
+ dto.MBIName = "PjXXX_001";
|
|
|
+ dto.PlanName = "F1-saga";
|
|
|
+ dto.Elements = dic;
|
|
|
+ return dto;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public class DocumentDto
|
|
|
+ {
|
|
|
+ public string MBIName { get; set; }
|
|
|
+ public string PlanName { get; set; }
|
|
|
+ public Dictionary<string, List<BimObject>> Elements { get; set; }
|
|
|
+ }
|
|
|
}
|