-
Notifications
You must be signed in to change notification settings - Fork 9
/
Octoid.Command.pas
445 lines (418 loc) · 15 KB
/
Octoid.Command.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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
unit Octoid.Command;
interface
uses
System.Classes,
Octoid.CustomTranslator, Octoid.ObjCHeaderTranslator;
type
/// <summary>
/// Performs the work of translating Objective-C headers
/// </summary>
/// <remarks>
/// Used by both the command-line application and any UI-oriented implementation
/// </remarks>
TOctoidCommand = class(TObject)
private
FErrorLimit: Integer;
FExtraSwitches: TStrings;
FFramework: string;
FIsDump: Boolean;
FOnMessage: TMessageEvent;
FProject: TObjCHeaderProject;
FNeedsShowUsage: Boolean;
FSucceeded: Boolean;
FTranslator: TCustomTranslator;
function CheckHelpSwitches: Boolean;
function CheckPathExists(const APath, ASwitch: string; const AIsFile: Boolean = False): Boolean;
function CheckValidPlatform(const AValue: string): Boolean;
function FindSwitchValue(const ASwitch: string; var AValue: string): Boolean;
function GetCmdLine: string;
function GetOutputFile: string;
function GetSwitchValue(const ASource: string): string;
procedure ReadCmdSwitches;
procedure RunForFramework(const AFrameworkFolder: string);
procedure ShowUsage;
procedure TranslatorMessageHandler(const AMsg: string);
procedure WriteInvalidValueMessage(const AValue, ASwitch: string; const ADefault: string = '');
public
/// <summary>
/// Returns the path to the latest installed version of the Clang includes
/// </summary>
class function GetClangIncludePath: string;
/// <summary>
/// Creates an instance of TOctoidCommand and executes Run
/// </summary>
/// <remarks>
/// Requires command line switches in order to succeed
/// </remarks>
class procedure RunCommand;
public
constructor Create;
destructor Destroy; override;
/// <summary>
/// Executes translation for the nominated framework. Translates any child frameworks in sub-folders of the framework
/// </summary>
procedure Run;
procedure SetExtraSwitches(const ASwitches: string);
/// <summary>
/// Limit of errors during translation
/// </summary>
property ErrorLimit: Integer read FErrorLimit write FErrorLimit;
/// <summary>
/// Name of the framework to translate
/// </summary>
property Framework: string read FFramework write FFramework;
/// <summary>
/// Resulting output file
/// </summary>
property OutputFile: string read GetOutputFile;
/// <summary>
/// Contains properties of the project, e.g. target platform, SDK root, Clang path etc
/// </summary>
property Project: TObjCHeaderProject read FProject;
/// <summary>
/// Indicates whether translation succeeded
/// </summary>
property Succeeded: Boolean read FSucceeded;
/// <summary>
/// Does the work of translating the headers
/// </summary>
// property Translator: TObjCHeaderTranslator read FTranslator;
property Translator: TCustomTranslator read FTranslator;
property OnMessage: TMessageEvent read FOnMessage write FOnMessage;
end;
implementation
uses
System.SysUtils, System.IOUtils, System.Win.Registry, System.Math,
Winapi.Windows,
Octoid.Consts, Octoid.AstDumper;
type
TOpenTranslator = class(TObjCHeaderTranslator);
{ TOctoidCommand }
constructor TOctoidCommand.Create;
begin
inherited;
FErrorLimit := cErrorLimitDefault;
FExtraSwitches := TStringList.Create;
FProject := TObjCHeaderProject.Create;
FProject.ClangIncludePath := GetClangIncludePath;
FProject.IgnoreParseErrors := True;
FProject.IncludeSubdirectories := True;
FProject.EnumHandling := TEnumHandling.ConvertToConst;
if IsConsole then
begin
if not CheckHelpSwitches then
ReadCmdSwitches;
end;
end;
destructor TOctoidCommand.Destroy;
begin
FExtraSwitches.Free;
FProject.Free;
FTranslator.Free;
inherited;
end;
procedure TOctoidCommand.TranslatorMessageHandler(const AMsg: string);
begin
if Assigned(FOnMessage) then
FOnMessage(AMsg)
else
Writeln(AMsg);
end;
procedure TOctoidCommand.SetExtraSwitches(const ASwitches: string);
var
I: Integer;
LValues: TArray<string>;
begin
FExtraSwitches.Clear;
LValues := ASwitches.Split([' '], '"');
I := 0;
while I <= High(LValues) do
begin
if LValues[I].StartsWith('-') and not LValues[I].StartsWith('--') then
begin
if (I < High(LValues)) and not LValues[I + 1].StartsWith('-') then
begin
FExtraSwitches.Add(LValues[I] + ' ' + LValues[I + 1]);
Inc(I);
end
else
FExtraSwitches.Add(LValues[I]);
end;
Inc(I);
end;
end;
procedure TOctoidCommand.ShowUsage;
begin
if IsConsole then
begin
Writeln(Format('Usage: %s [Options] [Extras]', [TPath.GetFileNameWithoutExtension(ParamStr(0))]));
Writeln;
Writeln('Options:');
Writeln;
Writeln(Format('%s or %s - show this help', [cSwitchHelpWord, cSwitchHelpSymbol]));
Writeln(Format('%s <sdkroot> - root of the target SDK', [cSwitchSdkRoot]));
Writeln(Format('%s <clanginclude> - path to the Clang include files. May be omitted if a supported version of Clang is installed', [cSwitchClangInclude]));
Writeln(Format('%s <platform> - the target platform (macOS or iOS)', [cSwitchTargetPlatform]));
Writeln(Format('%s <framework> - (optional) transform only the framework with the specified name ' +
'(default is all frameworks in the SDK)', [cSwitchFramework]));
Writeln(Format('%s <out> - (optional) directory where the output .pas files should be placed ' +
'(default is current directory)', [cSwitchOutputPath]));
Writeln(Format('%s <typemap> - (optional) map of types containing equals separated values (can override existing mappings)', [cSwitchTypeMapFile]));
Writeln(Format('%s <typeunitmap> - (optional) map of types to units containing equals separated values (can override existing mappings)', [cSwitchTypeUnitMapFile]));
Writeln(Format('%s - dump AST and Types files into the output folder', [cSwitchDump]));
Writeln;
Writeln('Extras: additional options to be passed to libClang');
Writeln;
ExitCode := 2;
end;
end;
function TOctoidCommand.CheckHelpSwitches: Boolean;
var
LValue: string;
begin
FNeedsShowUsage := FindSwitchValue(cSwitchHelpWord, LValue) or FindSwitchValue(cSwitchHelpSymbol, LValue);
Result := FNeedsShowUsage;
end;
procedure TOctoidCommand.WriteInvalidValueMessage(const AValue, ASwitch: string; const ADefault: string = '');
begin
if ADefault.IsEmpty then
Writeln(Format('Invalid value for %s: %s', [ASwitch, AValue]))
else
Writeln(Format('Invalid value for %s: %s, using default of: %s', [ASwitch, AValue, ADefault]));
end;
function TOctoidCommand.CheckPathExists(const APath, ASwitch: string; const AIsFile: Boolean = False): Boolean;
begin
if not TDirectory.Exists(APath) or (AIsFile and not TFile.Exists(APath)) then
begin
WriteInvalidValueMessage(APath, ASwitch);
Result := False;
end
else
Result := True;
end;
function TOctoidCommand.CheckValidPlatform(const AValue: string): Boolean;
begin
if not (AValue.ToUpper.Equals(cTargetPlatformIOS) or AValue.ToUpper.Equals(cTargetPlatformMacOS)) then
begin
WriteInvalidValueMessage(AValue, cSwitchTargetPlatform);
Result := False;
end
else
Result := True;
end;
procedure TOctoidCommand.ReadCmdSwitches;
var
LValue: string;
begin
if FindSwitchValue(cSwitchSdkRoot, LValue) and CheckPathExists(LValue, cSwitchSdkRoot) then
FProject.SdkRoot := LValue
else
FNeedsShowUsage := True;
if FindSwitchValue(cSwitchClangInclude, LValue) and CheckPathExists(LValue, cSwitchClangInclude) then
FProject.ClangIncludePath := LValue
else if FProject.ClangIncludePath.IsEmpty or not TDirectory.Exists(FProject.ClangIncludePath) then
FNeedsShowUsage := True;
if FindSwitchValue(cSwitchTargetPlatform, LValue) and CheckValidPlatform(LValue) then
FProject.TargetPlatform := LValue
else
FNeedsShowUsage := True;
if FindSwitchValue(cSwitchFramework, LValue) then
FFramework := LValue;
if FindSwitchValue(cSwitchTypeMapFile, LValue) and CheckPathExists(LValue, cSwitchTypeMapFile) then
FTranslator.TypeMapFileName := LValue;
if FindSwitchValue(cSwitchTypeUnitMapFile, LValue) and CheckPathExists(LValue, cSwitchTypeUnitMapFile) then
FTranslator.TypeUnitMapFileName := LValue;
if FindSwitchValue(cSwitchOutputPath, LValue) then
begin
if CheckPathExists(LValue, cSwitchOutputPath) then
FProject.OutputPath := LValue
else
FNeedsShowUsage := True;
end
else
FProject.OutputPath := TDirectory.GetCurrentDirectory;
if FindSwitchValue(cSwitchErrors, LValue) then
begin
if not TryStrToInt(LValue, FErrorLimit) or (FErrorLimit < cErrorLimitDefault) then
begin
WriteInvalidValueMessage(LValue, cSwitchErrors, cErrorLimitDefault.ToString);
FErrorLimit := cErrorLimitDefault;
end;
end;
FIsDump := FindSwitchValue(cSwitchDump, LValue);
if not FNeedsShowUsage then
SetExtraSwitches(GetCmdLine);
end;
function TOctoidCommand.FindSwitchValue(const ASwitch: string; var AValue: string): Boolean;
var
I: Integer;
LInQuote: Boolean;
LCmdLine, LSource: string;
begin
Result := False;
LCmdLine := GetCmdLine;
LInQuote := False;
for I := 0 to Length(LCmdLine) - 1 do
begin
if not LInQuote and (LCmdLine.Chars[I] = '"') then
LInQuote := True
else if not LInQuote then
begin
LSource := LCmdLine.Substring(I, Length(ASwitch));
if SameText(LSource, ASwitch) then
begin
AValue := AnsiDequotedStr(GetSwitchValue(LCmdLine.Substring(I + Length(LSource)).Trim), '"');
Result := True;
Break;
end;
end
else if LInQuote and (LCmdLine.Chars[I] = '"') then
LInQuote := False;
end;
end;
class function TOctoidCommand.GetClangIncludePath: string;
var
LRegistry: TRegistry;
LClangPath, LLLVMPath: string;
LVersionFolders: TArray<string>;
I: Integer;
begin
Result := '';
LRegistry := TRegistry.Create(KEY_READ or KEY_WOW64_32KEY);
try
LRegistry.RootKey := HKEY_LOCAL_MACHINE;
if LRegistry.OpenKey(cLLVMRegistryPath, False) then
try
LLLVMPath := LRegistry.ReadString('');
if not LLLVMPath.IsEmpty and TDirectory.Exists(LLLVMPath) then
begin
LClangPath := TPath.Combine(LLLVMPath, cLLVMClangFolder);
if TDirectory.Exists(LClangPath) then
begin
LVersionFolders := TDirectory.GetDirectories(LClangPath);
for I := Length(LVersionFolders) - 1 downto 0 do
begin
LClangPath := TPath.Combine(LVersionFolders[I], cLLVMClangIncludeFolder);
if TDirectory.Exists(LClangPath) then
begin
Result := LClangPath;
Break;
end;
end;
end;
end;
finally
LRegistry.CloseKey;
end;
finally
LRegistry.Free;
end;
end;
function TOctoidCommand.GetCmdLine: string;
begin
{$WARN SYMBOL_PLATFORM OFF}
Result := CmdLine;
{$WARN SYMBOL_PLATFORM ON}
end;
function TOctoidCommand.GetOutputFile: string;
begin
Result := FProject.TargetPasFile;
end;
function TOctoidCommand.GetSwitchValue(const ASource: string): string;
var
I: Integer;
LIsQuoted: Boolean;
begin
Result := '';
if not ASource.IsEmpty then
begin
LIsQuoted := ASource.Chars[0] = '"';
for I := 0 to Length(GetCmdLine) - 1 do
begin
if LIsQuoted and (I > 0) and (ASource.Chars[I] = '"') then
Exit(ASource.Substring(0, I + 1)) // <======
else if not LIsQuoted and (ASource.Chars[I] = ' ') then
Exit(ASource.Substring(0, I)); // <======
end;
Result := ASource;
end;
end;
procedure TOctoidCommand.Run;
var
LFrameworkFolders: TArray<string>;
LFolder, LFramework, LArg: string;
I: Integer;
begin
FSucceeded := False;
if not FNeedsShowUsage then
begin
FProject.ClearCmdLineArgs;
FProject.AddCmdLineArg(Format('-isystem%s', [TPath.Combine(FProject.SdkRoot, cSDKUserIncludeFolder)]));
if not FProject.ClangIncludePath.IsEmpty then
FProject.AddCmdLineArg(Format('-isystem%s', [FProject.ClangIncludePath]))
else
FProject.AddCmdLineArg(Format('-isystem%s', [TPath.Combine(FProject.SdkRoot, cSDKUserLibClangIncludePath)]));
FProject.AddCmdLineArg(Format('-F%s', [TPath.Combine(FProject.SdkRoot, cSDKFrameworksFolder)]));
FProject.AddCmdLineArg(Format('-F%s', [TPath.Combine(FProject.SdkRoot, cSDKFrameworksFolder)]));
FProject.AddCmdLineArg('-x');
FProject.AddCmdLineArg('objective-c');
FProject.AddCmdLineArg('-ferror-limit=' + Max(FErrorLimit, cErrorLimitDefault).ToString); //!!!!
FProject.AddCmdLineArg('-target');
if FProject.TargetPlatform.Equals(cTargetPlatformMacOS) then
FProject.AddCmdLineArg('x86_64-apple-darwin10')
else if FProject.TargetPlatform.Equals(cTargetPlatformIOS) then
begin
FProject.AddCmdLineArg('arm-apple-darwin10');
FProject.AddCmdLineArg('-DTARGET_OS_IPHONE=1');
end;
for I := 0 to FExtraSwitches.Count - 1 do
FProject.AddCmdLineArg(FExtraSwitches[I]);
FTranslator.Free;
if not FIsDump then
FTranslator := TObjCHeaderTranslator.Create(FProject)
else
FTranslator := TAstDumper.Create(FProject);
FTranslator.OnMessage := TranslatorMessageHandler;
TOpenTranslator(FTranslator).DoMessage('Using arguments:');
for LArg in FProject.CmdLineArgs do
TOpenTranslator(FTranslator).DoMessage(LArg);
LFrameworkFolders := TDirectory.GetDirectories(TPath.Combine(FProject.SdkRoot, cSDKFrameworksFolder));
FSucceeded := True;
for LFolder in LFrameworkFolders do
begin
// If a framework name is supplied that does not exist, it just won't be transformed
LFramework := TPath.GetFileNameWithoutExtension(LFolder);
if LFolder.EndsWith('.framework', True) and (FFramework.IsEmpty or SameText(LFramework, FFramework)) then
RunForFramework(LFolder);
end;
ExitCode := Ord(not FSucceeded); // i.e. exit code of 0 = success
end
else
ShowUsage;
end;
procedure TOctoidCommand.RunForFramework(const AFrameworkFolder: string);
var
LTargetFileName: string;
begin
FProject.FrameworkDirectory := AFrameworkFolder;
LTargetFileName := TPath.ChangeExtension(TPath.GetFileName(AFrameworkFolder), '.pas');
if FProject.TargetPlatform.Equals(cTargetPlatformMacOS) then
LTargetFileName := 'Macapi.' + LTargetFileName
else if FProject.TargetPlatform.Equals(cTargetPlatformIOS) then
LTargetFileName := 'iOSapi.' + LTargetFileName;
FProject.TargetPasFile := TPath.Combine(FProject.OutputPath, LTargetFileName);
if not FTranslator.Run then
FSucceeded := False;
end;
class procedure TOctoidCommand.RunCommand;
var
LCommand: TOctoidCommand;
begin
LCommand := TOctoidCommand.Create;
try
LCommand.Run;
finally
LCommand.Free;
end;
end;
end.