-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathulangbase.pas
322 lines (275 loc) · 7.72 KB
/
ulangbase.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
//----------------------------------------
//
// Copyright © ying32. All Rights Reserved.
//
// Licensed under Lazarus.modifiedLGPL
//
//----------------------------------------
unit uLangBase;
{$mode objfpc}{$H+}
{$modeswitch advancedrecords}
//{$modeswitch class}
interface
uses
Classes,
SysUtils,
StrUtils,
Forms,
TypInfo,
LazFileUtils,
IDEExternToolIntf,
LazIDEIntf,
uSupports,
res2goResources,
process;
type
{ TLangBase }
TFnParam = record
Name: string;
&Type: string;
Flags: TParamFlags;
end;
TFnParams = array of TFnParam;
TAutoCreateForms = array of string;
TCompileParam = record
Input: string;
Output: string;
// for Golang
GoUseTempdll: Boolean;
GoEnabledFinalizerOn: Boolean;
GoTags: string;
GoEnabledCGO: Boolean;
GoBuildMode: string;
GoRoot: string;
GoUseGoEmbed: Boolean;
end;
{ TProjParam }
TProjParam = record
Title: string;
UseScaled: Boolean;
UseDefaultWinAppRes: Boolean;
OutPath: string;
public
constructor Create(AOutPath, ATitle: string; AUseScaled, AUseDefaultWinAppRes: Boolean);
end;
TLangBase = class
private
FPackageName: string;
function GetProjectLPRFileName: string;
function GetWindResFileName: string;
protected
FTypeLists: TTypeLists;
FBaseTypes: TTypeLists;
function GetPackageName: string; virtual;
procedure InitTypeLists; virtual; abstract;
procedure InitBaseTypes; virtual; abstract;
function GetParams(AProp: PPropInfo): TFnParams;
function FirstCaseChar(Astr: string): string;
function GetAutoCreateForms: TAutoCreateForms;
function GetResFileExists: Boolean; virtual;
public
constructor Create;
destructor Destroy; override;
function Compile(AParams: TCompileParam): Boolean; virtual; abstract;
procedure ExecuteCommand(const ACmds: array of string; AWait: Boolean; AShow: Boolean = False; AWorkDir: string = ''); overload;
procedure ExecuteCommand(const ACmd: string; AWait: Boolean; AShow: Boolean = False; AWorkDir: string = ''); overload;
function IsMainPackage: Boolean;
property PackageName: string read GetPackageName write FPackageName;
property ProjectLPRFileName: string read GetProjectLPRFileName;
property WindResFileName: string read GetWindResFileName;
property ResFileExists: Boolean read GetResFileExists;
procedure ConvertProjectFile(AParam: TProjParam); virtual; abstract;
function ToEventString(AProp: PPropInfo): string; virtual; abstract;
procedure SaveToFile(AFileName: string; ARoot: TComponent; AEvents: array of TEventItem; AMem: TMemoryStream); virtual; abstract;
procedure ConvertResource(const AResFileName, APath: string); virtual; abstract;
end;
implementation
{ TProjParam }
constructor TProjParam.Create(AOutPath, ATitle: string; AUseScaled,
AUseDefaultWinAppRes: Boolean);
begin
Self.OutPath := AOutPath;
Self.Title:=ATitle;
Self.UseScaled:=AUseScaled;
Self.UseDefaultWinAppRes := AUseDefaultWinAppRes;
end;
{ TLangBase }
constructor TLangBase.Create;
begin
inherited Create;
FTypeLists := TTypeLists.Create;
FBaseTypes := TTypeLists.Create;
InitTypeLists;
InitBaseTypes;
end;
destructor TLangBase.Destroy;
begin
FTypeLists.Free;
FBaseTypes.Free;
inherited Destroy;
end;
function TLangBase.GetProjectLPRFileName: string;
begin
Result := ChangeFileExt(LazarusIDE.ActiveProject.ProjectInfoFile, '.lpr');
end;
function TLangBase.GetPackageName: string;
begin
Result := FPackageName;
end;
function TLangBase.GetResFileExists: Boolean;
begin
Result := False;
end;
function TLangBase.GetWindResFileName: string;
begin
Result := 'windres'{$ifdef windows}+'.exe'{$endif};
Result := AppendPathDelim(ExtractFilePath(LazarusIDE.GetFPCompilerFilename)) + Result;
end;
function TLangBase.GetParams(AProp: PPropInfo): TFnParams;
var
LTypeData: PTypeData;
I: Integer;
LFlags: TParamFlags = [];
LParamName: string = '';
LParamType: string = '';
LMem: TMemoryStream;
LLen: Byte = 0;
begin
Result := nil;
// 处理参数
if AProp <> nil then
begin
LTypeData := GetTypeData(AProp^.PropType);
if Assigned(LTypeData) then
begin
//mkClassProcedure,mkClassFunction
LMem := TMemoryStream.Create;
try
LMem.Write(LTypeData^.ParamList[0], SizeOf(LTypeData^.ParamList));
LMem.Position:=0;
SetLength(Result, LTypeData^.ParamCount);
for I := 0 to LTypeData^.ParamCount - 1 do
begin
LMem.Read(LFlags, SizeOf(TParamFlags));
// name
LMem.Read(LLen, 1);
SetLength(LParamName, LLen);
LMem.Read(LParamName[1], LLen);
// type
LMem.Read(LLen, 1);
SetLength(LParamType, LLen);
LMem.Read(LParamType[1], LLen);
Result[I].Name := Trim(LParamName);
Result[I].Flags := LFlags;
Result[I].&Type := Trim(LParamType);
end;
finally
LMem.Free;
end;
end;
end;
end;
function TLangBase.FirstCaseChar(Astr: string): string;
begin
Result := Astr;
if Length(Result) > 0 then
Result[1] := LowerCase(Result[1]);
end;
function TLangBase.GetAutoCreateForms: TAutoCreateForms;
var
LLPRFileName, S: string;
LStrs: TStringList;
LP: Integer;
begin
Result := nil;
if Assigned(LazarusIDE) and Assigned(LazarusIDE.ActiveProject) then
begin
LStrs := TStringList.Create;
try
LStrs.Text:=LazarusIDE.ActiveProject.MainFile.GetSourceText;
for S in LStrs do
begin
// 开始提取 Application.CreateForm的
if S.Trim.StartsWith('Application.CreateForm(') then
begin
SetLength(Result, Length(Result) + 1);
LP := S.IndexOf(',');
Result[High(Result)] := Trim(S.Substring(LP + 1, S.IndexOf(')') - LP - 1));
end;
end;
finally
LStrs.Free;
end;
// Logs('mainSource: '#13#10 + LazarusIDE.ActiveProject.MainFile.GetSourceText);
//LLPRFileName := ProjectLPRFileName;
//if FileExists(LLPRFileName) then
//begin
// LStrs := TStringList.Create;
// try
// LStrs.LoadFromFile(LLPRFileName);
// for S in LStrs do
// begin
// // 开始提取 Application.CreateForm的
// if S.Trim.StartsWith('Application.CreateForm(') then
// begin
// SetLength(Result, Length(Result) + 1);
// LP := S.IndexOf(',');
// Result[High(Result)] := Trim(S.Substring(LP + 1, S.IndexOf(')') - LP - 1));
// end;
// end;
// finally
// LStrs.Free;
// end;
//end;
end;
end;
procedure TLangBase.ExecuteCommand(const ACmds: array of string;
AWait, AShow: Boolean; AWorkDir: string);
var
LProcess: TProcess;
LCmd: string;
begin
if Length(ACmds) = 0 then Exit;
LProcess := TProcess.Create(nil);
try
LProcess.Options:= [];//[poWaitOnExit{, poNewProcessGroup, poStderrToOutPut}];
if AShow then
LProcess.ShowWindow := swoShowDefault
else
LProcess.ShowWindow := swoHIDE;
if AWorkDir <> '' then
LProcess.CurrentDirectory:=AWorkDir;
for LCmd in ACmds do
begin
try
LProcess.CommandLine := LCmd;
LProcess.Execute;
if AWait then
LProcess.WaitOnExit;
if LProcess.ExitCode <> 0 then
begin
//CtlWriteln(mluError);
Exit;
end;
except
on E: Exception do
begin
CtlWriteln(mluError, E.Message);
Exit;
end;
end;
end;
finally
LProcess.Free;
end;
end;
procedure TLangBase.ExecuteCommand(const ACmd: string; AWait, AShow: Boolean;
AWorkDir: string);
begin
ExecuteCommand([ACmd], AWait, AShow, AWorkDir);
end;
function TLangBase.IsMainPackage: Boolean;
begin
Result := PackageName.Equals('main') or PackageName.IsEmpty
end;
end.