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
|
{
fpGUI - Free Pascal GUI Toolkit
Unit to handle command line processing
Copyright (C) 2007 - 2012 See the file AUTHORS.txt, included in this
distribution, for details of the copyright.
See the file COPYING.modifiedLGPL, included in this distribution,
for details about redistributing fpGUI.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
}
{ TODO : Make sure Unicode parameter handling is supported. }
unit fpg_cmdlineparams;
{$mode objfpc}{$H+}
interface
uses
Classes;
const
ctiCommandLineParamPrefix = '-';
type
TfpgCommandLineParams = class(TObject)
private
FsParams: string;
FslParams: TStringList;
procedure ReadParams;
function WordExtract(const AInput: string; const APos: integer; const ADelims: string): string;
function WordCount(const AStrToProcess: string; ADelims: string): integer;
function WordPosition(const AN: integer; const AStr: string; ADelims: string): integer;
function ExtractChar(const AValue: string; const APos: integer): char;
function CharInStr(const AChr: char; const AStr: string): boolean;
function StripLeadingDelims(const AStrToProcess: string; ADelims: string): string;
function StripTrailingDelims(const AStrToProcess: string; ADelims: string): string;
function NumToken(const AValue, AToken: string): integer;
function Token(const AValue, AToken: string; const APos: integer): string;
function StrTran(AValue, ADel, AIns: string): string;
public
constructor Create;
destructor Destroy; override;
function IsParam(const AParam: string): boolean; overload;
function IsParam(const AParams: array of string): boolean; overload;
function GetParam(const AParam: string): string;
property Params: TStringList read FslParams;
property AsString: string read FsParams;
end;
// Singleton
function gCommandLineParams: TfpgCommandLineParams;
implementation
uses
SysUtils;
var
uCommandLineParams: TfpgCommandLineParams;
// Singleton
function gCommandLineParams: TfpgCommandLineParams;
begin
if uCommandLineParams = nil then
uCommandLineParams := TfpgCommandLineParams.Create;
result := uCommandLineParams;
end;
{ TfpgCommandLineParams }
constructor TfpgCommandLineParams.Create;
begin
inherited;
FslParams := TStringList.Create;
ReadParams;
end;
destructor TfpgCommandLineParams.destroy;
begin
FslParams.Free;
inherited;
end;
function TfpgCommandLineParams.GetParam(const AParam: string): string;
begin
result := FslParams.Values[ upperCase(AParam)];
end;
function TfpgCommandLineParams.IsParam(const AParam: string): boolean;
var
i: integer;
begin
result := false;
for i := 0 to FslParams.Count - 1 do begin
if FslParams.Names[i] = upperCase(AParam) then begin
result := true;
break; //==>
end;
end;
end;
function TfpgCommandLineParams.IsParam(const AParams: array of string): boolean;
var
i: integer;
begin
result := false;
for i := Low(AParams) to High(AParams) do
if IsParam(AParams[i]) then
begin
result := true;
Exit; //==>
end;
end;
procedure TfpgCommandLineParams.ReadParams;
var
i: integer;
j: integer;
lsNameValue: string;
lsValue: string;
lsName: string;
const
cDelim = ' ';
begin
lsValue := '';
FsParams := '';
j := ParamCount;
for i := 1 to j do begin
if FsParams <> '' then FsParams := FsParams + cDelim;
FsParams := FsParams + ParamStr(i);
end ;
j := WordCount(FsParams, ctiCommandLineParamPrefix);
for i := 1 to j do begin
lsNameValue := WordExtract(FsParams, i, ctiCommandLineParamPrefix);
lsName := Token(lsNameValue, cDelim, 1);
lsValue := copy(lsNameValue, length(lsName) + 1,
length(FsParams) - length(lsValue));
lsValue := Trim(lsValue);
lsName := StrTran(lsName, ctiCommandLineParamPrefix, '');
lsName := upperCase(lsName);
FslParams.Add(lsName + '=' + lsValue);
end;
end;
function TfpgCommandLineParams.StrTran(AValue, ADel, AIns: string): string;
var
i: integer;
sToChange: string;
begin
result := '';
sToChange := AValue;
i := pos(ADel, sToChange);
while i <> 0 do
begin
result := result + copy(sToChange, 1, i-1) + AIns;
delete(sToChange, 1, i+length(ADel)-1);
i := pos(ADel, sToChange);
end;
result := result + sToChange;
end;
function TfpgCommandLineParams.NumToken(const AValue, AToken: string): integer;
var
i, iCount: integer;
lsValue: string;
begin
result := 0;
if AValue = '' then
Exit; //==>
iCount := 0;
lsValue := AValue;
i := pos(AToken, lsValue);
while i <> 0 do
begin
delete(lsValue, i, length(AToken));
inc(iCount);
i := pos(AToken, lsValue);
end;
result := iCount + 1;
end;
function TfpgCommandLineParams.Token(const AValue, AToken: string;
const APos: integer): string;
var
i, iCount, iNumToken: integer;
lsValue: string;
begin
result := '';
iNumToken := NumToken(AValue, AToken);
if APos = 1 then
begin
if pos(AToken, AValue) = 0 then
result := AValue
else
result := copy(AValue, 1, pos(AToken, AValue)-1);
end
else if (iNumToken < APos-1) or (APos<1) then
begin
result := '';
end
else
begin
{ Remove leading blocks }
iCount := 1;
lsValue := AValue;
i := pos(AToken, lsValue);
while (i<>0) and (iCount<APos) do
begin
delete(lsValue, 1, i + length(AToken) - 1);
inc(iCount);
i := pos(AToken, lsValue);
end;
if (i=0) and (iCount=APos) then
result := lsValue
else if (i=0) and (iCount<>APos) then
result := ''
else
result := copy(lsValue, 1, i-1);
end;
end;
function TfpgCommandLineParams.WordExtract(const AInput: string;
const APos: integer; const ADelims: string): string;
var
iStart: integer;
i: integer;
iLen: integer;
begin
result := '';
// Find the starting pos of the Nth word
iStart := WordPosition(APos, AInput, ADelims);
if iStart <> 0 then
begin
i := iStart;
iLen := length(AInput);
// Build up result until we come to our next wordDelim
// while (i <= iLen) and not(S[i] in ADelims) do begin
while (i <= iLen) and not(CharInStr(ExtractChar(AInput, i), ADelims)) do
begin
result := result + ExtractChar(AInput, i);
inc(i);
end;
end;
end;
function TfpgCommandLineParams.WordPosition(const AN: integer;
const AStr: string; ADelims: string): integer;
var
lCount: integer;
lI: Word;
lSLen: integer;
begin
lCount := 0;
lI := 1;
Result := 0;
lSLen := length(AStr);
while (lI <= lSLen) and (lCount <> AN) do
begin
while (lI <= lSLen) and (CharInStr(ExtractChar(AStr, lI), ADelims)) do
begin
Inc(lI);
end;
// if we're not beyond end of S, we're at the start of a word
if lI <= lSLen then
begin
Inc(lCount);
end;
// if not finished, find the end of the current word
if lCount <> AN then
begin
while (lI <= lSLen) and not(CharInStr(ExtractChar(AStr, lI), ADelims)) do
begin
Inc(lI);
end;
end
else
begin
Result := lI;
end;
end;
end;
function TfpgCommandLineParams.ExtractChar(const AValue: string;
const APos: integer): char;
var
lResult: string;
begin
if APos > length(AValue) then
begin
result := ' ';
exit;
end;
lResult := copy(AValue, APos, 1);
result := lResult[1];
end;
function TfpgCommandLineParams.StripLeadingDelims(const AStrToProcess: string;
ADelims: string): string;
var
i: integer;
lCharCurrent: char;
begin
result := AStrToProcess;
// Loop through each char in the string
for i := 1 to length(AStrToProcess) do
begin
// Extract the current character
lCharCurrent := ExtractChar(AStrToProcess, i);
// Is this character a NON word delim?, then we have found the body of the string.
if not CharInStr(lCharCurrent, ADelims) then
begin
result := copy(AStrToProcess, i,
length(AStrToProcess) - i + 1);
exit; //==>
// The current char is a word delim, but we are at the end of the string -
// so no words
end
else
begin
if i = length(AStrToProcess) then
begin
result := '';
end;
end;
end;
end;
// Strip any trailing ADelims
function TfpgCommandLineParams.StripTrailingDelims(const AStrToProcess: string;
ADelims: string): string;
var
i: integer;
lCharCurrent: char;
begin
result := AStrToProcess;
// Loop through each char in the string
for i := length(AStrToProcess) downto 1 do
begin
// Extract the current character
lCharCurrent := ExtractChar(AStrToProcess, i);
// Is this character a NON word delim?, then we have found the body of the string.
if not CharInStr(lCharCurrent, ADelims) then
begin
result := copy(AStrToProcess, 1, i);
exit; //==>
// The current char is a word delim, but we are at the beginning of the string -
// so no words
end
else
begin
if i = length(AStrToProcess) then
begin
result := '';
end;
end;
end;
end;
// Given a set of word delimiters, return number of words in S
function TfpgCommandLineParams.WordCount(const AStrToProcess: string;
ADelims: string): integer;
var
i: integer;
lCharLast: char;
lCharCurrent: char;
lStrToProcess: string;
begin
// Strip any leading ADelims
lStrToProcess := StripLeadingDelims(AStrToProcess, ADelims);
lStrToProcess := StripTrailingDelims(lStrToProcess, ADelims);
// If lStrToProcess is empty, then there are no words
if lStrToProcess = '' then
begin
result := 0;
Exit; //==>
end;
// lStrToProcess is not empty, therefore there must be at least one word
// Every wordDelim we find equals another word:
// 0 word delim := 1 word
// 1 word delim := 2 words...
result := 1;
// lCharLast is used to check for more than 1 wordDelim together
lCharLast := #0;
for i := 1 to length(lStrToProcess) do
begin
lCharCurrent := ExtractChar(lStrToProcess, i);
if CharInStr(lCharCurrent, ADelims) and not(CharInStr(lCharLast, ADelims)) then
begin
inc(result);
end;
lCharLast := lCharCurrent;
end;
end;
// Is AChr in the string AStr ?
function TfpgCommandLineParams.CharInStr(const AChr: char; const AStr: string): boolean;
begin
result := pos(AChr, AStr) <> 0;
end;
initialization
finalization
uCommandLineParams.Free;
end.
|