Menu

[4a4584]: / Source / ClassInfoUnit.pas  Maximize  Restore  History

Download this file

705 lines (606 with data), 17.4 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
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
(***********************************************************************)
(* Delphi Code Coverage *)
(* *)
(* A quick hack of a Code Coverage Tool for Delphi *)
(* by Christer Fahlgren and Nick Ring *)
(* *)
(* This Source Code Form is subject to the terms of the Mozilla Public *)
(* License, v. 2.0. If a copy of the MPL was not distributed with this *)
(* file, You can obtain one at http://mozilla.org/MPL/2.0/. *)
unit ClassInfoUnit;
interface
uses
Generics.Collections,
I_BreakPoint,
I_LogManager;
type
TSimpleBreakPointList = TList<IBreakPoint>;
TProcedureInfo = class(TEnumerable<Integer>)
private
FName: String;
FLines: TDictionary <Integer, TSimpleBreakPointList> ;
function IsCovered(const ABreakPointList: TSimpleBreakPointList): Boolean;
procedure ClearLines;
function GetName: string;
protected
function DoGetEnumerator: TEnumerator<Integer>; override;
public
const BodySuffix = '$Body';
function LineCount: Integer;
function CoveredLineCount: Integer;
function PercentCovered: Integer;
property Name: string read GetName;
constructor Create(const AName: string);
destructor Destroy; override;
procedure AddBreakPoint(
const ALineNo: Integer;
const ABreakPoint: IBreakPoint);
function IsLineCovered(const ALineNo: Integer): Boolean;
end;
TClassInfo = class(TEnumerable<TProcedureInfo>)
strict private
FModule: String;
FName: String;
FProcedures: TDictionary<string, TProcedureInfo>;
procedure ClearProcedures;
function GetProcedureCount: Integer;
function GetCoveredProcedureCount: Integer;
function GetModule: string;
function GetClassName: string;
function GetIsCovered: Boolean;
protected
function DoGetEnumerator: TEnumerator<TProcedureInfo>; override;
public
property ProcedureCount: Integer read GetProcedureCount;
property CoveredProcedureCount: Integer read GetCoveredProcedureCount;
property Module: string read GetModule;
property TheClassName: string read GetClassName;
property IsCovered: Boolean read GetIsCovered;
function LineCount: Integer;
function CoveredLineCount: Integer;
function PercentCovered: Integer;
constructor Create(
const AModuleName: string;
const AClassName: string);
destructor Destroy; override;
function EnsureProcedure(const AProcedureName: string): TProcedureInfo;
end;
TModuleInfo = class(TEnumerable<TClassInfo>)
strict private
FName: string;
FFileName: string;
FClasses: TDictionary<string, TClassInfo>;
function GetModuleName: string;
function GetModuleFileName: string;
function GetClassCount: Integer;
function GetCoveredClassCount: Integer;
function GetMethodCount: Integer;
function GetCoveredMethodCount: Integer;
protected
function DoGetEnumerator: TEnumerator<TClassInfo>; override;
public
property ModuleName: string read GetModuleName;
property ModuleFileName: string read GetModuleFileName;
property ClassCount: Integer read GetClassCount;
property CoveredClassCount: Integer read GetCoveredClassCount;
property MethodCount: Integer read GetMethodCount;
property CoveredMethodCount: Integer read GetCoveredMethodCount;
function LineCount: Integer;
function CoveredLineCount: Integer;
constructor Create(
const AModuleName: string;
const AModuleFileName: string);
destructor Destroy; override;
function ToString: string; override;
function EnsureClassInfo(
const AModuleName: string;
const AClassName: string): TClassInfo;
procedure ClearClasses;
end;
TModuleList = class(TEnumerable<TModuleInfo>)
strict private
FModules: TDictionary<string, TModuleInfo>;
procedure ClearModules;
function GetCount: Integer;
function GetTotalClassCount: Integer;
function GetTotalCoveredClassCount: Integer;
function GetTotalMethodCount: Integer;
function GetTotalCoveredMethodCount: Integer;
function GetTotalLineCount: Integer;
function GetTotalCoveredLineCount: Integer;
protected
function DoGetEnumerator: TEnumerator<TModuleInfo>; override;
public
property Count: Integer read GetCount;
property ClassCount: Integer read GetTotalClassCount;
property CoveredClassCount: Integer read GetTotalCoveredClassCount;
property MethodCount: Integer read GetTotalMethodCount;
property CoveredMethodCount: Integer read GetTotalCoveredMethodCount;
property LineCount: Integer read GetTotalLineCount;
property CoveredLineCount: Integer read GetTotalCoveredLineCount;
constructor Create;
destructor Destroy; override;
function EnsureModuleInfo(
const AModuleName: string;
const AModuleFileName: string): TModuleInfo;
procedure HandleBreakPoint(
const AModuleName: string;
const AModuleFileName: string;
const AQualifiedProcName: string;
const ALineNo: Integer;
const ABreakPoint: IBreakPoint;
const ALogManager: ILogManager);
end;
implementation
uses
Types,
SysUtils,
StrUtils,
Math,
{$IF CompilerVersion < 21}
StrUtilsD9,
{$IFEND}
Classes,
uConsoleOutput;
{$region 'TModuleList'}
constructor TModuleList.Create;
begin
inherited Create;
FModules := TDictionary<string, TModuleInfo>.Create;
end;
destructor TModuleList.Destroy;
begin
ClearModules;
FModules.Free;
inherited Destroy;
end;
procedure TModuleList.ClearModules;
var
Key: string;
begin
for Key in FModules.Keys do
begin
FModules[Key].Free;
end;
end;
function TModuleList.GetCount: Integer;
begin
Result := FModules.Count;
end;
function TModuleList.DoGetEnumerator: TEnumerator<TModuleInfo>;
begin
Result := FModules.Values.GetEnumerator;
end;
function TModuleList.GetTotalClassCount: Integer;
var
CurrentModuleInfo: TModuleInfo;
begin
Result := 0;
for CurrentModuleInfo in FModules.Values do
begin
Inc(Result, CurrentModuleInfo.ClassCount);
end;
end;
function TModuleList.GetTotalCoveredClassCount: Integer;
var
CurrentModuleInfo: TModuleInfo;
begin
Result := 0;
for CurrentModuleInfo in FModules.Values do
begin
Inc(Result, CurrentModuleInfo.CoveredClassCount);
end;
end;
function TModuleList.GetTotalMethodCount: Integer;
var
CurrentModuleInfo: TModuleInfo;
begin
Result := 0;
for CurrentModuleInfo in FModules.Values do
begin
Inc(Result, CurrentModuleInfo.MethodCount);
end;
end;
function TModuleList.GetTotalCoveredMethodCount: Integer;
var
CurrentModuleInfo: TModuleInfo;
begin
Result := 0;
for CurrentModuleInfo in FModules.Values do
begin
Inc(Result, CurrentModuleInfo.CoveredMethodCount);
end;
end;
function TModuleList.GetTotalLineCount: Integer;
var
CurrentModuleInfo: TModuleInfo;
begin
Result := 0;
for CurrentModuleInfo in FModules.Values do
begin
Inc(Result, CurrentModuleInfo.LineCount);
end;
end;
function TModuleList.GetTotalCoveredLineCount(): Integer;
var
CurrentModuleInfo: TModuleInfo;
begin
Result := 0;
for CurrentModuleInfo in FModules.Values do
begin
Inc(Result, CurrentModuleInfo.CoveredLineCount);
end;
end;
function TModuleList.EnsureModuleInfo(
const AModuleName: string;
const AModuleFileName: string): TModuleInfo;
begin
if not FModules.TryGetValue(AModuleName, Result) then
begin
Result := TModuleInfo.Create(AModuleName, AModuleFileName);
FModules.Add(AModuleName, Result);
end;
end;
procedure TModuleList.HandleBreakPoint(
const AModuleName: string;
const AModuleFileName: string;
const AQualifiedProcName: string;
const ALineNo: Integer;
const ABreakPoint: IBreakPoint;
const ALogManager: ILogManager);
var
List: TStrings;
ClassName: string;
ProcedureName: string;
ClsInfo: TClassInfo;
ProcInfo: TProcedureInfo;
Module: TModuleInfo;
ProcedureNameParts: TStringDynArray;
I: Integer;
ClassProcName: string;
begin
ALogManager.Log('Adding breakpoint for '+ AQualifiedProcName + ' in ' + AModuleFileName);
List := TStringList.Create;
try
ClassProcName := RightStr(AQualifiedProcName, Length(AQualifiedProcName) - (Length(AModuleName) + 1));
// detect module initialization section
if ClassProcName = AModuleName then
begin
ClassProcName := 'Initialization';
end;
if EndsStr(TProcedureInfo.BodySuffix, ClassProcName) then
begin
ClassProcName := LeftStr(ClassProcName, Length(ClassProcName) - Length(TProcedureInfo.BodySuffix));
end;
ExtractStrings(['.'], [], PWideChar(ClassProcName), List);
if List.Count > 0 then
begin
ProcedureNameParts := SplitString(List[List.Count - 1], '$');
ProcedureName := ProcedureNameParts[0];
if List.Count > 2 then
begin
ClassName := '';
for I := 0 to List.Count - 2 do
begin
ClassName := IfThen(ClassName = '', '', ClassName + '.') + List[I];
end;
end
else
begin
if SameText(List[0], 'finalization') or SameText(List[0], 'initialization') then
begin
ClassName := StringReplace(AModuleName, '.', '_', [rfReplaceAll]);
end
else
begin
ClassName := List[0];
end;
end;
Module := EnsureModuleInfo(AModuleName, AModuleFileName);
ClsInfo := Module.EnsureClassInfo(AModuleName, ClassName);
ProcInfo := ClsInfo.EnsureProcedure(ProcedureName);
ProcInfo.AddBreakPoint(ALineNo, ABreakPoint);
end;
finally
List.Free;
end;
end;
{$endregion 'TModuleList'}
{$region 'TModuleInfo'}
constructor TModuleInfo.Create(
const AModuleName: string;
const AModuleFileName: string);
begin
inherited Create;
FName := AModuleName;
FFileName := AModuleFileName;
FClasses := TDictionary<string, TClassInfo>.Create;
end;
destructor TModuleInfo.Destroy;
begin
ClearClasses;
FClasses.Free;
inherited Destroy;
end;
procedure TModuleInfo.ClearClasses;
var
Key: string;
begin
for Key in FClasses.Keys do
begin
FClasses[Key].Free;
end;
end;
function TModuleInfo.ToString: string;
begin
Result := 'ModuleInfo[ modulename=' + FName + ', filename=' + FFileName + ' ]';
end;
function TModuleInfo.GetModuleName: string;
begin
Result := FName;
end;
function TModuleInfo.GetModuleFileName: string;
begin
Result := FFileName;
end;
function TModuleInfo.EnsureClassInfo(
const AModuleName: string;
const AClassName: string): TClassInfo;
begin
if not FClasses.TryGetValue(AClassName, Result) then
begin
VerboseOutput('Creating class info for ' + AModuleName + ' class ' + AClassName);
Result := TClassInfo.Create(AModuleName, AClassName);
FClasses.Add(AClassName, Result);
end;
end;
function TModuleInfo.GetClassCount: Integer;
begin
Result := FClasses.Count;
end;
function TModuleInfo.DoGetEnumerator: TEnumerator<TClassInfo>;
begin
Result := FClasses.Values.GetEnumerator;
end;
function TModuleInfo.GetCoveredClassCount: Integer;
var
CurrentClassInfo: TClassInfo;
begin
Result := 0;
for CurrentClassInfo in FClasses.Values do
begin
Inc(Result, IfThen(CurrentClassInfo.IsCovered, 1, 0));
end;
end;
function TModuleInfo.GetMethodCount: Integer;
var
CurrentClassInfo: TClassInfo;
begin
Result := 0;
for CurrentClassInfo in FClasses.Values do
begin
Inc(Result, CurrentClassInfo.ProcedureCount);
end;
end;
function TModuleInfo.GetCoveredMethodCount: Integer;
var
CurrentClassInfo: TClassInfo;
begin
Result := 0;
for CurrentClassInfo in FClasses.Values do
begin
Inc(Result, CurrentClassInfo.CoveredProcedureCount);
end;
end;
function TModuleInfo.LineCount: Integer;
var
CurrentClassInfo: TClassInfo;
begin
Result := 0;
for CurrentClassInfo in FClasses.Values do
begin
Inc(Result, CurrentClassInfo.LineCount);
end;
end;
function TModuleInfo.CoveredLineCount: Integer;
var
CurrentClassInfo: TClassInfo;
begin
Result := 0;
for CurrentClassInfo in FClasses.Values do
begin
Inc(Result, CurrentClassInfo.CoveredLineCount);
end;
end;
{$endregion 'TModuleInfo'}
{$region 'TClassInfo'}
constructor TClassInfo.Create(const AModuleName: string; const AClassName: string);
begin
inherited Create;
FModule := AModuleName;
FName := AClassName;
FProcedures := TDictionary<string, TProcedureInfo>.Create;
end;
destructor TClassInfo.Destroy;
begin
ClearProcedures;
FProcedures.Free;
inherited Destroy;
end;
function TClassInfo.DoGetEnumerator: TEnumerator<TProcedureInfo>;
begin
Result := FProcedures.Values.GetEnumerator;
end;
procedure TClassInfo.ClearProcedures;
var
Key: string;
begin
for Key in FProcedures.Keys do
begin
FProcedures[Key].Free;
end;
end;
function TClassInfo.EnsureProcedure(const AProcedureName: string): TProcedureInfo;
begin
if not FProcedures.TryGetValue(AProcedureName, Result) then
begin
Result := TProcedureInfo.Create(AProcedureName);
FProcedures.Add(AProcedureName, Result);
end;
end;
function TClassInfo.PercentCovered: Integer;
var
Total: Integer;
Covered: Integer;
CurrentInfo: TProcedureInfo;
begin
Total := 0;
Covered := 0;
for CurrentInfo in FProcedures.Values do
begin
Total := Total + CurrentInfo.LineCount;
Covered := Covered + CurrentInfo.CoveredLineCount;
end;
Result := Covered * 100 div Total;
end;
function TClassInfo.GetModule: string;
begin
Result := FModule;
end;
function TClassInfo.GetClassName: string;
begin
Result := FName;
end;
function TClassInfo.GetProcedureCount: Integer;
begin
Result := FProcedures.Count;
end;
function TClassInfo.GetCoveredProcedureCount: Integer;
var
CurrentProcedureInfo: TProcedureInfo;
begin
Result := 0;
for CurrentProcedureInfo in FProcedures.Values do
begin
if CurrentProcedureInfo.CoveredLineCount > 0 then
begin
Inc(Result);
end;
end;
end;
function TClassInfo.LineCount: Integer;
var
CurrentProcedureInfo: TProcedureInfo;
begin
Result := 0;
for CurrentProcedureInfo in FProcedures.Values do
begin
Inc(Result, CurrentProcedureInfo.LineCount);
end;
end;
function TClassInfo.CoveredLineCount: Integer;
var
CurrentProcedureInfo: TProcedureInfo;
begin
Result := 0;
for CurrentProcedureInfo in FProcedures.Values do
begin
Inc(Result, CurrentProcedureInfo.CoveredLineCount);
end;
end;
function TClassInfo.GetIsCovered: Boolean;
begin
Result := CoveredLineCount > 0;
end;
{$endregion 'TClassInfo'}
{$region 'TProcedureInfo'}
constructor TProcedureInfo.Create(const AName: string);
begin
inherited Create;
FName := AName;
FLines := TDictionary <Integer, TSimpleBreakPointList>.Create;
end;
destructor TProcedureInfo.Destroy;
begin
ClearLines;
FLines.Free;
inherited Destroy;
end;
function TProcedureInfo.DoGetEnumerator: TEnumerator<Integer>;
begin
Result := FLines.Keys.GetEnumerator;
end;
procedure TProcedureInfo.ClearLines;
var
I: Integer;
begin
for I in FLines.Keys do
begin
FLines[I].Free;
end;
end;
procedure TProcedureInfo.AddBreakPoint(
const ALineNo: Integer;
const ABreakPoint: IBreakPoint);
var
BreakPointList: TSimpleBreakPointList;
begin
if not (FLines.TryGetValue(ALineNo, BreakPointList)) then
begin
BreakPointList := TSimpleBreakPointList.Create;
FLines.Add(ALineNo, BreakPointList);
end;
BreakPointList.Add(ABreakPoint);
end;
function TProcedureInfo.LineCount: Integer;
begin
Result := FLines.Keys.Count;
end;
function TProcedureInfo.CoveredLineCount: Integer;
var
I: Integer;
BreakPointList: TSimpleBreakPointList;
begin
Result := 0;
for I in FLines.Keys do
begin
BreakPointList := FLines[I];
if IsCovered(BreakPointList) then
begin
Inc(Result);
end;
end;
end;
function TProcedureInfo.IsCovered(const ABreakPointList: TSimpleBreakPointList): Boolean;
var
CurrentBreakPoint: IBreakPoint;
begin
Result := False;
for CurrentBreakPoint in ABreakPointList do
begin
if CurrentBreakPoint.IsCovered then
begin
Exit(True);
end;
end;
end;
function TProcedureInfo.IsLineCovered(const ALineNo: Integer): Boolean;
var
BreakPointList: TSimpleBreakPointList;
begin
Result := false;
if FLines.TryGetValue(ALineNo, BreakPointList) then
begin
Result := IsCovered(BreakPointList);
end;
end;
function TProcedureInfo.PercentCovered: Integer;
begin
Result := (100 * CoveredLineCount) div LineCount;
end;
function TProcedureInfo.GetName: string;
begin
Result := FName;
end;
{$endregion 'TProcedureInfo'}
end.
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.