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
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
|
unit mystringlistunit;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, RegExpr, Process, protokollunit;
type
tMyStringList = class (tStringList)
private
line: longint;
prot: tProtokollant;
srNoGo,srBuff: tMyStringList; // Liste der in SubRoutinen verbotenen Zeilenanfänge, sowie der aufgeschobenen Zeilen
public
constructor create; overload;
constructor create(protokollant: tProtokollant; name: string); overload;
destructor destroy; override;
procedure loadFromFile(const s: ansiString); override;
procedure loadFromGz(const s: ansiString);
procedure saveToGz(const s: ansiString);
function readln(out s: string): boolean; inline;
function metaReadln(out s: string; subRoutine: boolean): boolean; inline;
procedure grep(expr: string);
function hatZeile(zeile: string): boolean; // invers zu "grep -c"
function eof: boolean;
procedure rewind;
function stillNeed(bez: string): boolean;
function needInLine(bez: string; lin: longint): boolean;
procedure insert(index: longint; const s: ansistring); override;
function unfoldMacros: boolean;
procedure subst(regex,ersatz: string);
procedure dump(pro: tProtokollant; prefix: string);
procedure nichtInSubRoutine(s: string);
end;
procedure _del(var s: string; p,c: longint); inline; // identisch zu delete(s,p,c) -- lediglich um delete innerhalb von tMyStringlist verfügbar zu haben
procedure _mov(const source;var dest;count:SizeInt); // identisch zu move(source,dest,count) -- lediglich um move innerhalb von tMyStringlist verfügbar zu haben
implementation
uses Math, lowlevelunit, systemunit, fileUnit;
// tMyStringlist ***************************************************************
constructor tMyStringlist.create;
begin
create(nil,'');
end;
constructor tMyStringlist.create(protokollant: tProtokollant; name: string);
begin
inherited create;
if assigned(protokollant) then
prot:=tProtokollant.create(protokollant,name)
else
prot:=nil;
srNoGo:=nil;
srBuff:=nil;
line:=0;
end;
destructor tMyStringlist.destroy;
begin
srNoGo.free;
srBuff.free;
inherited destroy;
end;
procedure tMyStringlist.loadFromFile(const s: ansiString);
var
i: longint;
begin
inherited loadFromFile(s);
for i:=0 to count-1 do
self[i]:=trim(self[i]);
line:=0;
if assigned(prot) then
prot.schreibe(inttostr(count)+' Zeilen eingelesen')
else
gibAus(inttostr(count)+' Zeilen eingelesen',1);
end;
procedure tMyStringlist.loadFromGz(const s: ansiString);
var
len: longint;
pt: pointer;
buf: ansistring;
begin
fileunit.loadFromGz(s,pt,len);
setlength(buf,len);
_mov(pt^,buf[1],len);
text:=buf;
setlength(buf,0);
for len:=0 to count-1 do
self[len]:=trim(self[len]);
line:=0;
if assigned(prot) then
prot.schreibe(inttostr(count)+' Zeilen eingelesen')
else
gibAus(inttostr(count)+' Zeilen eingelesen',1);
end;
procedure tMyStringlist.saveToGz(const s: ansiString);
begin
fileunit.saveToGz(s,@(text[1]),length(text));
end;
function tMyStringlist.readln(out s: string): boolean;
begin
result:=not eof;
if not result then begin
s:='';
exit;
end;
s:=self[line];
inc(line);
end;
function tMyStringlist.metaReadln(out s: string; subRoutine: boolean): boolean;
begin
if assigned(srNoGo) then begin
if subRoutine then begin
repeat
result:=readln(s);
if not srNoGo.hatZeile(s) then exit;
srBuff.add(s);
until false;
end
else if srBuff.count>0 then begin
result:=true;
s:=srBuff[0];
srBuff.delete(0);
exit;
end;
end;
result:=readln(s);
end;
procedure tMyStringlist.grep(expr: string);
var
re: tRegExpr;
i: longint;
begin
re:=tRegExpr.create;
re.expression:=expr;
for i:=count-1 downto 0 do
if not re.exec(self[i]) then
delete(i);
re.free;
end;
function tMyStringlist.hatZeile(zeile: string): boolean;
var
re: tRegExpr;
i: longint;
begin
re:=tRegExpr.create;
result:=true;
for i:=0 to count-1 do begin
re.expression:=self[i];
if re.exec(zeile) then begin
re.free;
exit;
end;
end;
re.free;
result:=false;
end;
function tMyStringlist.eof: boolean;
begin
result:=line>=count;
end;
procedure tMyStringlist.rewind;
begin
line:=0;
end;
function tMyStringlist.stillNeed(bez: string): boolean;
var
i: longint;
begin
result:=true;
for i:=max(0,line-1) to count-1 do
if needInLine(bez,i) then
exit;
result:=false;
end;
function tMyStringlist.needInLine(bez: string; lin: longint): boolean;
var
s,t: string;
begin
result:=true;
s:=' '+self[lin]+' ';
while pos(bez,s)>0 do begin
t:=copy(s,1,pos(bez,s)+length(bez));
_del(s,1,pos(bez,s)+length(bez)-1);
_del(t,1,length(t)-length(bez)-2);
if (t[1] in [' ',#9,':','[']) and (t[length(t)] in [' ',#9,':',']']) and (copy(t,2,length(bez))=bez) then
exit;
end;
result:=false;
end;
procedure tMyStringlist.insert(index: longint; const s: ansistring);
begin
inherited insert(index,s);
if index<=line then inc(line);
end;
function tMyStringlist.unfoldMacros: boolean;
var
i,j,k,l,Ebene: longint;
s,t,u,v: string;
SchleifenInhalt: tMyStringlist;
istWahr,gefunden,wasGefunden: boolean;
const
binops: array[0..12] of string =
('<=','>=','<>','≤','≥','=','≠','<','>','in','∈','notIn','∉');
begin
result:=false;
i:=0;
while i<count do begin // Kommentare löschen
s:=self[i];
s:=erstesArgument(s,'#');
if length(s)=0 then begin
delete(i);
continue;
end;
self[i]:=s;
inc(i);
end;
repeat
wasGefunden:=false;
i:=0;
while i<count do begin // Übersprünge überspringen, alles nach 'Dateiende' löschen
s:=self[i];
if startetMit('!überspringe:',s) then begin
for j:=0 to strtoint(s) do
delete(i);
continue;
end;
if s='Dateiende' then begin
inc(i);
while i<count do
delete(i);
continue;
end;
inc(i);
end;
if wasGefunden then continue;
i:=count-1;
while i>=0 do begin // Substitutionen auswerten
s:=self[i];
if startetMit('!setze',s) then begin
wasGefunden:=true;
t:=erstesArgument(s,':');
if pos('$',t)<>1 then begin
prot.schreibe('ungültiger Variablenname '''+t+''' für Ersetzung!',true);
exit;
end;
delete(i);
for j:=i to count-1 do begin
u:=self[j];
k:=length(u);
while (pos(t,u)>0) and (k>0) do begin // ... nach Ersetzung ...
u:=copy(u,1,pos(t,u)-1)+s+copy(u,pos(t,u)+length(t),length(u));
dec(k);
end;
self[j]:=u;
end;
end
else
dec(i);
end;
if wasGefunden then continue;
for i:=0 to count-1 do begin // Shellvariablen auswerten
s:=shellSubst(self[i]);
if s<>self[i] then begin
wasGefunden:=true;
self[i]:=s;
end;
end;
i:=0;
while i<count do begin // Schleifen ausrollen
s:=self[i];
if startetMit('!Schleife:',s) then begin
wasGefunden:=true;
l:=i;
delete(i);
t:=erstesArgument(s,':');
if (length(t)=0) or (t[1]<>'$') then exit;
SchleifenInhalt:=tMyStringlist.create(nil,''); // Schleifenkörper merken
Ebene:=0;
while (i<Count) and ((Ebene<>0) or (self[i]<>'!Schleifenende')) do begin
SchleifenInhalt.Add(self[i]);
if self[i]='!Schleifenende' then dec(Ebene);
if pos('!Schleife:',self[i])=1 then inc(Ebene);
delete(i);
end;
delete(i);
u:=s;
s:='';
while length(u)>0 do begin
v:=erstesArgument(u);
if pos('..',v)<>0 then v:=intervallAusrollen(v);
s:=s+' '+v;
end;
s:=trim(s);
while length(s)>0 do begin // Schleifenzähler laufen lassen
u:=erstesArgument(s);
for j:=0 to SchleifenInhalt.Count-1 do begin // Schleifenkörper ...
v:=SchleifenInhalt[j];
k:=length(v);
while (pos(t,v)>0) and (k>0) do begin // ... nach Ersetzung ...
v:=copy(v,1,pos(t,v)-1)+u+copy(v,pos(t,v)+length(t),length(v));
dec(k);
end;
insert(i,v); // ... kopieren
inc(i);
end;
end;
SchleifenInhalt.free;
i:=l;
continue;
end;
self[i]:=s;
inc(i);
end;
if wasGefunden then continue;
i:=0;
while i<count do begin // Bedingungen auswerten
s:=self[i];
if startetMit('?',s) then begin
wasGefunden:=true;
t:=erstesArgument(s,':');
gefunden:=false;
for j:=0 to length(binops)-1 do
if pos(binops[j],t)>0 then begin
gefunden:=true;
u:=trim(copy(t,1,pos(binops[j],t)-1));
_del(t,1,pos(binops[j],t)+length(binops[j])-1);
t:=trim(t);
case binops[j] of
'≤','<=': istWahr:=strtofloat(u)<=strtofloat(t);
'≥','>=': istWahr:=strtofloat(u)>=strtofloat(t);
'=':
try
istWahr:=strtofloat(u)=strtofloat(t);
except
istWahr:=u=t;
end;
'≠','<>':
try
istWahr:=strtofloat(u)<>strtofloat(t);
except
istWahr:=u<>t;
end;
'<': istWahr:=strtofloat(u)<strtofloat(t);
'>': istWahr:=strtofloat(u)>strtofloat(t);
'in','∈': begin
istWahr:=false;
t:=t+' ';
while (t<>'') and not istWahr do
istWahr:=erstesArgument(t)=u;
end;
'notIn','∉': begin
istWahr:=true;
t:=t+' ';
while (t<>'') and istWahr do
istWahr:=erstesArgument(t)<>u;
end;
else begin
if assigned(prot) then prot.schreibe('Operator '''+binops[j]+''' ist nicht implementiert!',true)
else gibAus('Operator '''+binops[j]+''' ist nicht implementiert!',3);
exit;
end;
end{of case};
if not istWahr then
delete(i);
break;
end;
if not gefunden then begin
if assigned(prot) then prot.schreibe('Ich kann keinen gültigen Operator in Bedingung '''+t+''' finden!',true)
else gibAus('Ich kann keinen gültigen Operator in Bedingung '''+t+''' finden!',3);
exit;
end;
if not istWahr then
continue;
self[i]:=s;
end;
inc(i);
end;
until not wasGefunden;
result:=true;
end;
procedure tMyStringlist.subst(regex,ersatz: string);
var
i,cnt: longint;
re: tRegExpr;
begin
re:=tRegExpr.create;
re.expression:='^(.*)('+regex+')(.*)$';
cnt:=3;
for i:=1 to length(regex) do
if (regex[i]='(') and
((i=1) or (regex[i-1]<>'\')) then
inc(cnt);
for i:=0 to count-1 do begin
re.exec(self[i]);
self[i]:=re.substitute('$1'+ersatz+'$'+inttostr(cnt));
end;
re.free;
end;
procedure tMyStringlist.dump(pro: tProtokollant; prefix: string);
var
i: longint;
begin
for i:=0 to count-1 do
pro.schreibe(prefix+self[i]);
end;
procedure tMyStringList.nichtInSubRoutine(s: string);
begin
if not assigned(srNoGo) then begin
srNoGo:=tMyStringList.create;
srBuff:=tMyStringList.create;
end;
srNoGo.add(s);
end;
// allgemeine Funktionen *******************************************************
procedure _del(var s: string; p,c: longint);
begin
delete(s,p,c);
end;
procedure _mov(const source;var dest;count:SizeInt);
begin
move(source,dest,count);
end;
end.
|