-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUDmMain.pas
More file actions
566 lines (473 loc) · 14 KB
/
UDmMain.pas
File metadata and controls
566 lines (473 loc) · 14 KB
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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
unit UDmMain;
interface
uses
System.SysUtils,
System.Classes,
System.IOUtils,
System.Generics.Collections;
type
TUnite = class
private
FUName: string;
FFileUnitName: string;
FInitializationSection: string;
FTypeSection: string;
FImplementationSection: string;
FUsesIntfSection: string;
FHeaderSection: string;
FFinalizationSection: string;
FUsesImpSection: string;
procedure SetFileUnitName( const Value: string );
procedure SetHeaderSection( const Value: string );
procedure SetImplementationSection( const Value: string );
procedure SetInitializationSection( const Value: string );
procedure SetTypeSection( const Value: string );
procedure SetUName( const Value: string );
procedure SetUsesIntfSection( const Value: string );
procedure SetFinalizationSection( const Value: string );
procedure SetUsesImpSection( const Value: string );
public
constructor Create;
procedure WriteUnit;
property FileUnitName: string read FFileUnitName write SetFileUnitName;
property UName: string read FUName write SetUName;
property HeaderSection: string read FHeaderSection write SetHeaderSection;
property UsesIntfSection: string read FUsesIntfSection write SetUsesIntfSection;
property TypeSection: string read FTypeSection write SetTypeSection;
property UsesImpSection: string read FUsesImpSection write SetUsesImpSection;
property ImplementationSection: string read FImplementationSection write SetImplementationSection;
property InitializationSection: string read FInitializationSection write SetInitializationSection;
property FinalizationSection: string read FFinalizationSection write SetFinalizationSection;
end;
TDmMain = class( TDataModule )
private
{ Déclarations privées }
FFolderOutput: string;
FUnitComments: string;
FUsesIntf: string;
FUses: string;
FFile: TArray< string >;
FLinePos: Integer;
FUnites: TObjectDictionary< string, TUnite >;
function GetUnitComments: string;
function GetUsesIntf: string;
function GetUses: string;
function IsClassDef( aLine: string; out aDeclare: boolean ): boolean;
function WordInLine( aWord, aLine: string ): boolean;
function IsLineComments( aLine: string ): boolean;
procedure GetListeClass;
procedure GetImplementation;
procedure AddUses( aUsesIntf, aUsesImpl, aLine: string );
procedure WriteUnits;
public
{ Déclarations publiques }
procedure Execute( ASource, AOutput: string );
// procedure Execute1( ASource, AOutput: string );
end;
var
DmMain: TDmMain;
implementation
{%CLASSGROUP 'System.Classes.TPersistent'}
uses UConsts;
{$R *.dfm}
{ TDmMain }
procedure TDmMain.AddUses( aUsesIntf, aUsesImpl, aLine: string );
var
LPos: Integer;
LType: string;
begin
LPos := Pos( ':', aLine );
if ( LPos > 0 ) then
begin
LType := Copy( aLine, LPos + 1, Pos( ';', aLine, LPos + 1 ) - LPos - 1 ).Trim;
if FUnites.ContainsKey( LType ) and not( WordInLine( LType, aUsesIntf ) ) and not( WordInLine( LType, aUsesImpl ) ) then
begin
aUsesImpl := aUsesImpl + ', ' + LType;
end;
end;
end;
procedure TDmMain.Execute( ASource, AOutput: string );
begin
if FileExists( ASource ) then
begin
ForceDirectories( AOutput );
FFolderOutput := AOutput;
FFile := TFile.ReadAllLines( ASource );
FUnitComments := GetUnitComments;
FUsesIntf := GetUsesIntf;
FUses := GetUses;
GetListeClass;
GetImplementation;
WriteUnits;
FreeAndNil( FUnites );
SetLength( FFile, 0 );
end
else
begin
Writeln( 'Source inexistante : ' + ASource );
end;
end;
procedure TDmMain.GetImplementation;
var
LLine, LNbBlock: Integer;
LUses: string;
LClass: string;
LPosD, LPosF: SmallInt;
LUnite: TUnite;
LAdd: boolean;
begin
LUses := '';
LLine := FLinePos;
while ( LLine <= High( FFile ) ) do
begin
// Writeln(LLine);
if ( LLine < High( FFile ) ) and ( WordInLine( 'uses', FFile[ LLine + 1 ].ToLower ) ) and not( IsLineComments( FFile[ LLine + 1 ] ) ) then
begin
repeat
Inc( LLine );
if not( IsLineComments( FFile[ LLine ] ) ) then
begin
LUses := LUses + FFile[ LLine ];
end;
until ( Pos( ';', FFile[ LLine ] ) >= 0 );
LUses := Copy( LUses, 1, Pos( ';', LUses ) + 1 ) + END_LINE;
Inc( LLine );
end;
if ( ( Pos( 'function', FFile[ LLine ].Trim.ToLower ) > 0 )
or ( Pos( 'procedure', FFile[ LLine ].Trim.ToLower ) > 0 )
or ( Pos( 'constructor', FFile[ LLine ].Trim.ToLower ) > 0 )
or ( Pos( 'destructor', FFile[ LLine ].Trim.ToLower ) > 0 ) )
and ( Pos( '.', FFile[ LLine ] ) > 0 )
and not( IsLineComments( FFile[ LLine ] ) ) then
begin
LPosD := Pos( ' ', FFile[ LLine ] );
LPosF := Pos( '.', FFile[ LLine ] );
LClass := Copy( FFile[ LLine ], LPosD + 1, LPosF - LPosD - 1 );
if FUnites.TryGetValue( LClass, LUnite ) then
begin
LUnite.UsesImpSection := 'implementataion' + END_LINE + LUses + END_LINE;
LUnite.ImplementationSection := LUnite.ImplementationSection + FFile[ LLine ] + END_LINE;
AddUses( LUnite.UsesIntfSection, LUses, FFile[ LLine ] );
LAdd := False;
while not( WordInLine( 'begin', FFile[ LLine ].ToLower ) ) do
begin
Inc( LLine );
LAdd := True;
end;
if LAdd then
begin
AddUses( LUnite.UsesIntfSection, LUses, FFile[ LLine ] );
LUnite.ImplementationSection := LUnite.ImplementationSection + FFile[ LLine ] + END_LINE;
end;
LNbBlock := 1;
while ( LLine <= High( FFile ) ) and ( LNbBlock > 0 ) do
begin
Inc( LLine );
AddUses( LUnite.UsesIntfSection, LUses, FFile[ LLine ] );
LUnite.ImplementationSection := LUnite.ImplementationSection + FFile[ LLine ] + END_LINE;
if ( WordInLine( 'begin', FFile[ LLine ].ToLower ) )
or ( WordInLine( 'case', FFile[ LLine ].ToLower ) )
or ( WordInLine( 'try', FFile[ LLine ].ToLower ) ) then
begin
Inc( LNbBlock );
end
else if ( WordInLine( 'end;', FFile[ LLine ].ToLower ) ) then
begin
Dec( LNbBlock );
end;
end;
LUnite.ImplementationSection := LUnite.ImplementationSection + END_LINE;
Inc( LLine );
end
else
begin
Inc( LLine );
end;
end
else
begin
Inc( LLine );
end;
end;
end;
procedure TDmMain.GetListeClass;
var
LClassName: string;
LInherit: string;
LFileName: string;
LUnite: TUnite;
LDeclare: boolean;
LLine, LPos: Integer;
LType: string;
begin
FUnites := TObjectDictionary< string, TUnite >.Create;
LLine := FLinePos;
while ( LLine <= High( FFile ) ) and ( FFile[ LLine ].Trim.ToLower <> 'implementation' ) do
begin
if not( IsLineComments( FFile[ LLine ] ) ) and ( IsClassDef( FFile[ LLine ].ToLower, LDeclare ) ) then
begin
LClassName := Copy( FFile[ LLine ], 1, Pos( '=', FFile[ LLine ] ) - 1 ).Trim;
LPos := Pos( '(', FFile[ LLine ] );
if ( LPos > 0 ) then
begin
LInherit := Copy( FFile[ LLine ], LPos + 1, Pos( ')', FFile[ LLine ], LPos ) - LPos - 1 );
if FUnites.ContainsKey( LInherit ) and not( WordInLine( LInherit, LUnite.UsesIntfSection ) ) then
begin
LUnite.UsesIntfSection := LUnite.UsesIntfSection + ', ' + LInherit;
end;
end;
LFileName := TPath.Combine( FFolderOutput, 'U' + LClassName + '.pas' );
if not( FUnites.TryGetValue( LClassName, LUnite ) ) then
begin
try
LUnite := TUnite.Create;
LUnite.FileUnitName := LFileName;
LUnite.UName := 'U' + LClassName;
LUnite.HeaderSection := FUnitComments + END_LINE +
'unit ' + LUnite.UName + ';' + END_LINE;
LUnite.UsesIntfSection := FUsesIntf + END_LINE + FUses;
LUnite.TypeSection := FFile[ LLine ] + END_LINE;
FUnites.Add( LClassName, LUnite );
except
on e: exception do
begin
Writeln( LFileName );
end;
end;
end
else
begin
LUnite.TypeSection := LUnite.TypeSection + FFile[ LLine ] + END_LINE;
end;
if not( LDeclare ) then
begin
Inc( LLine );
while ( LLine <= High( FFile ) ) and ( FFile[ LLine ].Trim <> 'end;' ) do
begin
LUnite.TypeSection := LUnite.TypeSection + FFile[ LLine ] + END_LINE;
LPos := Pos( ':', FFile[ LLine ] );
if ( LPos > 0 ) then
begin
LType := Copy( FFile[ LLine ], LPos + 1, Pos( ';', FFile[ LLine ], LPos + 1 ) - LPos - 1 ).Trim;
if FUnites.ContainsKey( LType ) and not( WordInLine( LType, LUnite.UsesIntfSection ) ) then
begin
LUnite.UsesIntfSection := LUnite.UsesIntfSection + ', ' + LType;
end;
end;
Inc( LLine );
end;
LUnite.TypeSection := LUnite.TypeSection + FFile[ LLine ] + END_LINE;
end;
end;
Inc( LLine );
end;
FLinePos := LLine;
end;
// procedure TDmMain.Execute1( ASource, AOutput: string );
// var
// LFileStream: TFileStream;
// LStreamReader: TStreamReader;
// LLine: string;
// begin
// if FileExists( ASource ) then
// begin
// LFileStream := TFileStream.Create( ASource, fmOpenRead or fmShareDenyWrite );
// try
// LStreamReader := TStreamReader.Create( LFileStream, TEncoding.UTF8, True );
// try
// while not LStreamReader.EndOfStream do
// begin
// LLine := LStreamReader.ReadLine;
// Writeln( LLine );
// end;
// finally
// LStreamReader.Free;
// end;
// finally
// LFileStream.Free;
// end;
// end
// else
// begin
// Writeln( 'Source inexistante : ' + ASource );
// end;
// end;
function TDmMain.GetUnitComments: string;
begin
Result := '';
for var i := 0 to High( FFile ) do
begin
if ( Pos( 'unit', FFile[ i ].ToLower ) > 0 ) then
begin
FLinePos := i;
Exit;
end;
Result := Result + FFile[ i ] + END_LINE;
end;
end;
function TDmMain.GetUses: string;
begin
Result := Copy( FFile[ FLinePos ].Trim, 5, Length( FFile[ FLinePos ] ) ).Trim;
if ( Result[ Length( Result ) ] = ';' ) then
begin
Result := Copy( Result, 1, Length( Result ) - 1 );
Inc( FLinePos );
end
else
begin
for var i := FLinePos + 1 to High( FFile ) do
begin
if not( IsLineComments( FFile[ i ] ) ) and ( Pos( ';', FFile[ i ] ) > 0 ) then
begin
Result := Result + Copy( FFile[ i ], 1, Length( FFile[ i ] ) - 1 );
FLinePos := i + 1;
Exit
end
else
begin
Result := Result + FFile[ i ];
end;
end;
end;
end;
function TDmMain.GetUsesIntf: string;
begin
Result := '';
for var i := FLinePos + 1 to High( FFile ) do
begin
if WordInLine( 'uses', FFile[ i ] ) then
begin
Result := Result + 'uses' + END_LINE;
FLinePos := i;
Exit;
end;
Result := Result + FFile[ i ] + END_LINE;
end;
end;
function TDmMain.IsClassDef( aLine: string; out aDeclare: boolean ): boolean;
var
LPos: SmallInt;
begin
Result := False;
aDeclare := False;
LPos := Pos( 'class', aLine );
if ( LPos > 0 ) then
begin
if aLine[ LPos - 1 ] <> '=' then
begin
if aLine[ LPos - 1 ] = ' ' then
begin
if CharInSet( aLine[ LPos + 5 ], [ ';', ' ', '(', #$A, #$D ] ) then
begin
Result := True;
aDeclare := ( aLine[ LPos + 5 ] = ';' );
end;
end;
end
else
begin
Result := True;
end;
end;
end;
function TDmMain.IsLineComments( aLine: string ): boolean;
var
wComment: string;
wPos: SmallInt;
begin
Result := False;
wPos := Pos( '//', aLine );
if ( wPos > 0 ) then
begin
Result := ( Copy( aLine, 1, wPos + 1 ).Trim = '//' );
end;
end;
function TDmMain.WordInLine( aWord, aLine: string ): boolean;
begin
Result := False;
if ( Pos( aWord + ' ', aLine ) = 1 )
or ( Pos( ' ' + aWord + ' ', aLine ) > 0 )
or ( Pos( ' ' + aWord + ',', aLine ) > 0 )
or ( Pos( ',' + aWord + ',', aLine ) > 0 )
or ( ( Pos( ' ' + aWord, aLine ) > 0 ) and ( Pos( ' ' + aWord, aLine ) + Length( aWord ) >= Length( aLine ) ) )
or ( ( Pos( aWord, aLine ) = 1 ) and ( Pos( aWord, aLine ) + Length( aWord ) >= Length( aLine ) ) ) then
begin
Result := True;
end;
end;
procedure TDmMain.WriteUnits;
var
LPair: TPair< string, TUnite >;
begin
for LPair in FUnites do
begin
LPair.Value.WriteUnit;
LPair.Value.Free;
end;
end;
{ TUnite }
constructor TUnite.Create;
begin
FHeaderSection := '';
FUsesIntfSection := '';
FTypeSection := '';
FUsesImpSection := '';
FImplementationSection := '';
FInitializationSection := '';
FFinalizationSection := '';
end;
procedure TUnite.SetFileUnitName( const Value: string );
begin
FFileUnitName := Value;
end;
procedure TUnite.SetFinalizationSection( const Value: string );
begin
FFinalizationSection := Value;
end;
procedure TUnite.SetHeaderSection( const Value: string );
begin
FHeaderSection := Value;
end;
procedure TUnite.SetImplementationSection( const Value: string );
begin
FImplementationSection := Value;
end;
procedure TUnite.SetInitializationSection( const Value: string );
begin
FInitializationSection := Value;
end;
procedure TUnite.SetTypeSection( const Value: string );
begin
FTypeSection := Value;
end;
procedure TUnite.SetUName( const Value: string );
begin
FUName := Value;
end;
procedure TUnite.SetUsesImpSection( const Value: string );
begin
FUsesImpSection := Value;
end;
procedure TUnite.SetUsesIntfSection( const Value: string );
begin
FUsesIntfSection := Value;
end;
procedure TUnite.WriteUnit;
var
F: TextFile;
begin
AssignFile( F, FFileUnitName );
Rewrite( F );
Writeln( F, FHeaderSection );
Writeln( F, FUsesIntfSection + ';' );
Writeln( F, '' );
Writeln( F, FTypeSection + END_LINE );
Writeln( F, FUsesImpSection );
Writeln( F, FImplementationSection );
Writeln( F, FInitializationSection );
Writeln( F, FFinalizationSection );
Writeln( F, '' );
Writeln( F, 'end.' );
CloseFile( F );
end;
end.