Sfoglia il codice sorgente

家医适配,重名枚举及类适配,生成优化

felix 1 anno fa
parent
commit
62e03dc8b9

BIN
FISLib.dll


+ 1 - 5
Map/ServiceMap.cs

@@ -204,11 +204,7 @@ namespace FlutterCodeGenerator.Map
                 {
                     importService = alreadyGeneratedList.FirstOrDefault(x => x.Key.ParameterType.Name == complexReturnTypeName).Value;
                 }
-                if (importService == null)
-                {
-                    throw new Exception("Import Service is null");
-                }
-                if (importService != ServiceName && !importServiceList.Contains(importService))
+                if (importService != null && importService != ServiceName && !importServiceList.Contains(importService))
                 {
                     importServiceList.Add(importService);
                 }

+ 2 - 2
ModelTypes/ComplexModelType.cs

@@ -264,8 +264,8 @@ namespace FlutterCodeGenerator.ModelTypes
                         }
                         else
                         {
-                            var model = userDefinedGenericModelType.GenericArgumentModelType.GetFlutterTypeName();
-                            source.AppendLine($"\t\t\t{child.Name_Lower}: map['{child.Name_Upper}'] != null ? (map['{child.Name_Upper}'] as List).map((e)=>{model}.fromJson(e as Map<String,dynamic>)).toList() : null,");
+                            var model = userDefinedGenericModelType.GetFlutterTypeName();
+                            source.AppendLine($"\t\t\t{child.Name_Lower}: map['{child.Name_Upper}'] != null ? {model}.fromJson(map['{child.Name_Upper}'] as Map<String,dynamic>) : null,");
                         }
                     }
                 }

+ 21 - 0
ModelTypes/EnumModelType.cs

@@ -34,6 +34,18 @@ namespace FlutterCodeGenerator.ModelTypes
             DefaultValue = $"{GetFlutterTypeName()}.{firstChildName}";
         }
 
+        public override string GetFlutterTypeName(bool isDefault = true, bool isGenericName = false, bool isSingle = false)
+        {
+            if (Index > 1)
+            {
+                return $"{ParameterType.Name}{Index}";
+            }
+            else
+            {
+                return $"{ParameterType.Name}";
+            }
+        }
+
         public override string GetDartString()
         {
             var dartString = new StringBuilder();
@@ -57,5 +69,14 @@ namespace FlutterCodeGenerator.ModelTypes
             dartString.AppendLine("}");
             return dartString.ToString();
         }
+
+        protected override void ChangeIndex()
+        {
+            if (UserDefinedEnumDictionary != null)
+            {
+                var firstChildName = UserDefinedEnumDictionary.FirstOrDefault().Value;
+                DefaultValue = $"{GetFlutterTypeName()}.{firstChildName}";
+            }
+        }
     }
 }

+ 12 - 0
ModelTypes/EnumNullableModelType.cs

@@ -9,6 +9,18 @@ namespace FlutterCodeGenerator.ModelTypes
         {
         }
 
+        public override string GetFlutterTypeName(bool isDefault = true, bool isGenericName = false, bool isSingle = false)
+        {
+            if (Index > 1)
+            {
+                return $"{ParameterType.Name}{Index}";
+            }
+            else
+            {
+                return $"{ParameterType.Name}";
+            }
+        }
+
         public override string GetDartString()
         {
             var dartString = new StringBuilder();

+ 21 - 1
ModelTypes/ModelType.cs

@@ -5,6 +5,8 @@ namespace FlutterCodeGenerator.ModelTypes
 {
     internal class ModelType
     {
+        private int _index;
+
         public Type ParameterType { get; set; }
 
         /// <summary>
@@ -22,7 +24,21 @@ namespace FlutterCodeGenerator.ModelTypes
         /// <summary>
         /// Index(For Same Name)
         /// </summary>
-        public int Index { get; set; }
+        public int Index
+        {
+            get
+            {
+                return _index;
+            }
+            set
+            {
+                if (_index != value)
+                {
+                    _index = value;
+                    ChangeIndex();
+                }
+            }
+        }
 
         public ModelType(Type type, string name)
         {
@@ -54,5 +70,9 @@ namespace FlutterCodeGenerator.ModelTypes
                 return "?";
             }
         }
+
+        protected virtual void ChangeIndex()
+        {
+        }
     }
 }

+ 10 - 0
Program.cs

@@ -1,6 +1,7 @@
 using FlutterCodeGenerator.Helper;
 using FlutterCodeGenerator.Model;
 using System;
+using System.Diagnostics;
 using System.IO;
 
 namespace FlutterCodeGenerator
@@ -26,6 +27,15 @@ namespace FlutterCodeGenerator
                 codeGeneratorForWing.GeneratedCode();
                 var codeGeneratorForFISLib = new CodeGeneratorForFISLib(dllPath, generatedFolderPath);
                 codeGeneratorForFISLib.GeneratedCode();
+                using (Process process = new Process())
+                {
+                    ProcessStartInfo psi = new ProcessStartInfo("Explorer.exe")
+                    {
+                        Arguments = generatedFolderPath
+                    };
+                    process.StartInfo = psi;
+                    process.Start();
+                }
                 Console.WriteLine($"The code has already generated! The path is {generatedFolderPath}");
             }
             catch (Exception ex)

BIN
WingInterfaceLibrary.dll