public ProjectConverter(EProjectFile.EProjectFile source, EocProjectType projectType = EocProjectType.Console, string projectNamespace = "e::user", ILoggerWithContext logger = null) { this.Logger = logger ?? new NullLoggerWithContext(); if (source == null) { throw new ArgumentNullException(nameof(source)); } this.IdToNameMap = new IdToNameMap(source.Code, source.Resource, source.LosableSection); this.ClassIdMap = source.Code.Classes.ToDictionary(x => x.Id); this.MethodIdMap = source.Code.Methods.ToDictionary(x => x.Id); this.DllIdMap = source.Code.DllDeclares.ToDictionary(x => x.Id); this.StructIdMap = source.Code.Structs.ToDictionary(x => x.Id); this.GlobalVarIdMap = source.Code.GlobalVariables.ToDictionary(x => x.Id); this.ConstantIdMap = source.Resource.Constants.ToDictionary(x => x.Id); this.ClassVarIdMap = new Dictionary <int, ClassVariableInfo>(); this.MethodIdToClassMap = new Dictionary <int, ClassInfo>(); foreach (var item in source.Code.Classes) { Array.ForEach(item.Method, x => MethodIdToClassMap.Add(x, item)); Array.ForEach(item.Variables, x => ClassVarIdMap.Add(x.Id, x)); } projectNamespace = projectNamespace ?? "e::user"; this.ProjectNamespace = projectNamespace; this.TypeNamespace = projectNamespace + "::type"; this.CmdNamespace = projectNamespace + "::cmd"; this.DllNamespace = projectNamespace + "::dll"; this.ConstantNamespace = projectNamespace + "::constant"; this.GlobalNamespace = projectNamespace + "::global"; this.Source = source; this.Libs = source.Code.Libraries.Select( x => { try { return(LibInfo.Load(x)); } catch (Exception ex) { Logger.Warn("加载fne信息失败,请检查易语言环境,支持库:{0},异常信息:{1}", x.Name, ex); return(null); } }).ToArray(); this.EocLibs = source.Code.Libraries.Select( x => { try { return(EocLibInfo.Load(x)); } catch (Exception ex) { Logger.Warn("加载eoc库信息失败,请检查eoc环境,支持库:{0},异常信息:{1}", x.Name, ex); return(null); } }).ToArray(); this.EocHelperLibId = Array.FindIndex(source.Code.Libraries, x => x.FileName.ToLower() == "EocHelper".ToLower()); this.DataTypeId_IntPtr = this.EocHelperLibId == -1 ? -1 : EplSystemId.MakeLibDataTypeId((short)this.EocHelperLibId, 0); this.ProjectType = projectType; this.EocConstants = EocConstant.Translate(this, Source.Resource.Constants); this.EocStructs = EocStruct.Translate(this, Source.Code.Structs); this.EocGlobalVariables = EocGlobalVariable.Translate(this, Source.Code.GlobalVariables); this.EocDllDeclares = EocDll.Translate(this, Source.Code.DllDeclares); this.EocObjectClasses = EocObjectClass.Translate(this, Source.Code.Classes.Where(x => EplSystemId.GetType(x.Id) == EplSystemId.Type_Class)); this.EocStaticClasses = EocStaticClass.Translate(this, Source.Code.Classes.Where(x => EplSystemId.GetType(x.Id) != EplSystemId.Type_Class)); }
public ProjectConverter(EProjectFile.EProjectFile source, EocProjectType projectType = EocProjectType.Console, string projectNamespace = "e::user", ILoggerWithContext logger = null) { this.Logger = logger ?? new NullLoggerWithContext(); if (source == null) { throw new ArgumentNullException(nameof(source)); } this.IdToNameMap = new IdToNameMap(source.Code, source.Resource, source.LosableSection); this.MethodIdMap = source.Code.Methods.ToDictionary(x => x.Id); this.MethodIdToClassMap = new Dictionary <int, ClassInfo>(); foreach (var item in source.Code.Classes) { Array.ForEach(item.Method, x => MethodIdToClassMap.Add(x, item)); } projectNamespace = projectNamespace ?? "e::user"; this.ProjectNamespace = projectNamespace; this.TypeNamespace = projectNamespace + "::type"; this.CmdNamespace = projectNamespace + "::cmd"; this.DllNamespace = projectNamespace + "::dll"; this.ConstantNamespace = projectNamespace + "::constant"; this.GlobalNamespace = projectNamespace + "::global"; this.Source = source; this.Libs = source.Code.Libraries.Select( x => { try { return(LibInfo.Load(x)); } catch (Exception ex) { Logger.Warn("加载fne信息失败,请检查易语言环境,支持库:{0},异常信息:{1}", x.Name, ex); return(null); } }).ToArray(); this.EocLibs = source.Code.Libraries.Select( x => { try { return(EocLibInfo.Load(x)); } catch (Exception ex) { Logger.Warn("加载eoc库信息失败,请检查eoc环境,支持库:{0},异常信息:{1}", x.Name, ex); return(null); } }).ToArray(); LibCmdToDeclaringTypeMap = Libs.Select(lib => { var r = new Dictionary <int, int>(); for (int i = 0; i < lib?.DataType?.Length; i++) { if (lib.DataType[i].Method != null) { Array.ForEach(lib.DataType[i].Method, x => r[x] = i); } } return(r); }).ToList().AsReadOnly(); this.EocHelperLibId = Array.FindIndex(source.Code.Libraries, x => x.FileName.ToLower() == "EocHelper".ToLower()); this.DataTypeId_IntPtr = this.EocHelperLibId == -1 ? -1 : EplSystemId.MakeLibDataTypeId((short)this.EocHelperLibId, 0); this.ProjectType = projectType; this.EocConstantMap = EocConstant.Translate(this, Source.Resource.Constants); this.EocStructMap = EocStruct.Translate(this, Source.Code.Structs); this.EocGlobalVariableMap = EocGlobalVariable.Translate(this, Source.Code.GlobalVariables); this.EocDllDeclareMap = EocDll.Translate(this, Source.Code.DllDeclares); this.EocObjectClassMap = EocObjectClass.Translate(this, Source.Code.Classes.Where(x => EplSystemId.GetType(x.Id) == EplSystemId.Type_Class)); this.EocStaticClassMap = EocStaticClass.Translate(this, Source.Code.Classes.Where(x => EplSystemId.GetType(x.Id) != EplSystemId.Type_Class)); this.EocMemberMap = this.EocObjectClassMap.Values.SelectMany(x => x.MemberInfoMap) .Concat(this.EocStaticClassMap.Values.SelectMany(x => x.MemberInfoMap)) .Concat(this.EocStructMap.Values.SelectMany(x => x.MemberInfoMap)) .ToSortedDictionary(); this.EocMethodMap = this.EocObjectClassMap.Values.SelectMany(x => x.Method) .Concat(this.EocStaticClassMap.Values.SelectMany(x => x.Method)) .ToSortedDictionary(); if (ProjectType == EocProjectType.Dll) { this.EocDllExportMap = EocDllExport.Translate(this, Source.Code.Methods.Where(x => x.IsStatic && x.Public).Select(x => x.Id)); } }