-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathconsole.getopts.pas
399 lines (337 loc) · 9.34 KB
/
console.getopts.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
(*
* The contents of this file are subject to the
* Initial Developer's Public License Version 1.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License from the Firebird Project website,
* at http://www.firebirdsql.org/index.php?op=doc&id=idpl.
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the License.
*
* The Original Code was created by Pierre Yager.
*)
unit console.getopts;
interface
uses
Windows, SysUtils, Generics.Collections;
type
EGetOptError = class(Exception);
EGetOptErrorState = class(EGetOptError);
TOptionType = (oUnknown, oFlag, oSwitch, oParameter);
POption = ^TOption;
TOption = record
Short: string;
Long: string;
ShortDescription: string;
Description: string;
OptionType: TOptionType;
Mandatory: Boolean;
function ToShortSyntax: string;
function ToLongSyntax: string;
end;
TParameter = record
Name: string;
Value: string;
end;
TGetOpt = class
private
type
TState = class
protected
FOpt: TGetOpt;
FContext: POption;
public
constructor Create(Opt: TGetOpt);
procedure Initialize(Context: POption);
procedure ParseOption(const Value: POption); virtual; abstract;
procedure ParseText(const Value: string); virtual; abstract;
end;
TNoWhereState = class(TState)
public
procedure ParseOption(const Value: POption); override;
procedure ParseText(const Value: string); override;
end;
TSwitchValueState = class(TState)
public
procedure ParseOption(const Value: POption); override;
procedure ParseText(const Value: string); override;
end;
TStates = (sNoWhere, sSwitchValue);
private var
FOptions: TList<POption>;
FParameters: TDictionary<POption, string>;
FMissing: TList<POption>;
FOption: POption;
FNullOption: POption;
FState : TState;
FStates: array[TStates] of TState;
function CreateOption(const Short, Long, ShortDescription, Description: string; OptionType: TOptionType; Mandatory: Boolean): POption;
function FindOption(const Value: string): POption;
function FindNextParameter: POption;
procedure ChangeState(const State: TStates);
function GetFlag(const Short: string): Boolean;
public
constructor Create;
destructor Destroy; override;
procedure RegisterFlag(const Short, Long, ShortDescription, Description: string; Mandatory: Boolean);
procedure RegisterSwitch(const Short, Long, ShortDescription, Description: string; Mandatory: Boolean);
procedure RegisterParameter(const ShortDescription, Description: string);
procedure Parse;
function Validate: Boolean;
function PrintSyntax: String;
function PrintHelp: string;
property Parameters: TDictionary<POption, string> read FParameters;
property Missing: TList<POption> read FMissing;
property Flag[const Short: string]: Boolean read GetFlag;
end;
implementation
{ TGetOpt }
constructor TGetOpt.Create;
begin
inherited;
New(FNullOption);
FNullOption^.OptionType := oUnknown;
FStates[sNoWhere] := TNoWhereState.Create(Self);
FStates[sSwitchValue] := TSwitchValueState.Create(Self);
FState := FStates[sNoWhere];
FOptions := TList<POption>.Create;
FMissing := TList<POption>.Create;
FParameters := TDictionary<POption, string>.Create;
end;
destructor TGetOpt.Destroy;
var
O: POption;
begin
FParameters.Free;
for O in FOptions do
Dispose(O);
FOptions.Free;
Dispose(FNullOption);
inherited;
end;
procedure TGetOpt.ChangeState(const State: TStates);
begin
FState := FStates[State];
FState.Initialize(FOption);
end;
function TGetOpt.FindOption(const Value: string): POption;
var
O: POption;
begin
Result := FNullOption;
for O in FOptions do
begin
if (O^.Short = Value) or (O^.Long = Value) then
begin
Result := O;
Break;
end;
end;
end;
function TGetOpt.GetFlag(const Short: string): Boolean;
var
O: POption;
begin
Result := false;
for O in FParameters.Keys do
begin
if (O^.OptionType = oFlag) and (O^.Short = Short) then
begin
Result := true;
Break;
end;
end;
end;
function TGetOpt.FindNextParameter: POption;
var
O: POption;
begin
Result := FNullOption;
for O in FOptions do
begin
if O^.OptionType = oParameter then
begin
if not FParameters.ContainsKey(O) then
begin
Result := O;
Break;
end;
end;
end;
end;
function TGetOpt.CreateOption(const Short, Long, ShortDescription,
Description: string; OptionType: TOptionType; Mandatory: Boolean): POption;
begin
New(Result);
Result^.Short := Short;
Result^.Long := Long;
Result^.ShortDescription := ShortDescription;
Result^.Description := Description;
Result^.Mandatory := Mandatory;
Result^.OptionType := OptionType;
end;
procedure TGetOpt.RegisterFlag(const Short, Long, ShortDescription,
Description: string; Mandatory: Boolean);
var
O: POption;
begin
O := CreateOption(Short, Long, ShortDescription, Description, oFlag, Mandatory);
FOptions.Add(O);
end;
procedure TGetOpt.RegisterParameter(const ShortDescription, Description: string);
var
O: POption;
begin
O := CreateOption('', '', ShortDescription, Description, oParameter, true);
FOptions.Add(O);
end;
procedure TGetOpt.RegisterSwitch(const Short, Long, ShortDescription,
Description: string; Mandatory: Boolean);
var
O: POption;
begin
O := CreateOption(Short, Long, ShortDescription, Description, oSwitch, Mandatory);
FOptions.Add(O);
end;
procedure TGetOpt.Parse;
var
I: Integer;
V: string;
begin
FOption := FNullOption;
I := 1;
while I <= ParamCount do
begin
V := ParamStr(I);
if CharInSet(V[1], ['-', '/']) then
begin
V := Copy(V, 2, MaxInt);
FOption := FindOption(V);
if FOption.OptionType = oUnknown then
raise EGetOptError.Create('Option not supported: ' + ParamStr(I));
FState.ParseOption(FOption);
end
else
FState.ParseText(V);
Inc(I);
end;
end;
function TGetOpt.PrintHelp: String;
var
S: string;
O: POption;
begin
S := 'Arguments allowed for this application: ';
for O in FOptions do
S := S + #13#10 + O^.ToLongSyntax;
Result := S;
end;
function TGetOpt.PrintSyntax: String;
var
S: string;
O: POption;
begin
S := 'Syntax: ' + ExtractFileName(ParamStr(0));
for O in FOptions do
S := S + O^.ToShortSyntax;
Result := S;
end;
function TGetOpt.Validate: Boolean;
var
O: POption;
begin
FMissing.Clear;
for O in FOptions do
begin
if O.Mandatory then
if not FParameters.ContainsKey(O) then
FMissing.Add(O);
end;
Result := FMissing.Count = 0;
end;
{ TGetOpt.TState }
constructor TGetOpt.TState.Create(Opt: TGetOpt);
begin
inherited Create;
FOpt := Opt;
end;
procedure TGetOpt.TState.Initialize(Context: POption);
begin
FContext := Context;
end;
{ TGetOpt.TNoWhereState }
procedure TGetOpt.TNoWhereState.ParseOption(const Value: POption);
begin
if Value^.OptionType = oFlag then
FOpt.FParameters.Add(Value, '')
else if Value^.OptionType = oSwitch then
FOpt.ChangeState(sSwitchValue)
else if Value^.OptionType = oParameter then
raise EGetOptErrorState.Create('Impossible');
end;
procedure TGetOpt.TNoWhereState.ParseText(const Value: string);
var
O: POption;
begin
O := FOpt.FindNextParameter;
if O^.OptionType = oUnknown then
raise EGetOptError.Create('Parameter not allowed: ' + Value)
else
FOpt.FParameters.Add(O, Value);
end;
{ TGetOpt.TSwitchValueState }
procedure TGetOpt.TSwitchValueState.ParseOption(const Value: POption);
begin
raise EGetOptError.Create('You must give a value for parameter -' + FContext^.Short);
end;
procedure TGetOpt.TSwitchValueState.ParseText(const Value: string);
begin
FOpt.FParameters.Add(FContext, Value);
FOpt.ChangeState(sNoWhere);
end;
{ TOption }
function TOption.ToShortSyntax: string;
var
S, L: string;
begin
Result := ' ';
if not Mandatory then
Result := Result + '[';
if OptionType <> oParameter then
begin
if Short <> '' then
S := '-' + Short;
if Long <> '' then
L := '-' + Long;
if (Short <> '') then
Result := Result + S
else
Result := Result + L;
end;
if ShortDescription <> '' then
Result := Result + ' <' + ShortDescription + '>';
if not Mandatory then
Result := Result + ']';
end;
function TOption.ToLongSyntax: string;
var
S, L: string;
begin
Result := ' ';
if OptionType <> oParameter then
begin
if Short <> '' then
S := '-' + Short;
if Long <> '' then
L := '-' + Long;
if (Short <> '') and (Long <> '') then
Result := Result + S + ', ' + L
else
Result := Result + S + L;
end;
if not Mandatory then
Result := Result + #9 + '[optional]';
Result := Result + #13#10 + #9 + Description + #13#10;
end;
end.