-
Notifications
You must be signed in to change notification settings - Fork 187
/
Quick.Debug.Utils.pas
413 lines (342 loc) · 12 KB
/
Quick.Debug.Utils.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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
{ ***************************************************************************
Copyright (c) 2016-2020 Kike Pérez
Unit : Quick.Debug.Utils
Description : Debug Utils
Author : Kike Pérez
Version : 1.9
Created : 05/06/2020
Modified : 07/07/2020
This file is part of QuickLib: https://github.com/exilon/QuickLib
***************************************************************************
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*************************************************************************** }
unit Quick.Debug.Utils;
{$i QuickLib.inc}
interface
uses
System.SysUtils,
Quick.Logger.Intf,
Quick.Serializer.Intf,
Quick.Commons,
{$IFNDEF NEXTGEN}
Quick.Console,
{$ELSE}
{$IFNDEF DELPHILINUX}
FMX.Types,
{$ENDIF}
{$ENDIF}
Quick.Chrono;
type
TDebugConsoleLogger = class(TInterfacedObject,ILogger)
private
fShowTime : Boolean;
fFormatSettings : TFormatSettings;
function FormatMsg(const aMsg : string) : string;
public
constructor Create;
property ShowTime : Boolean read fShowTime write fShowTime;
property FormatSettings : TFormatSettings read fFormatSettings write fFormatSettings;
procedure Info(const aMsg : string); overload;
procedure Info(const aMsg : string; aParams : array of const); overload;
procedure Succ(const aMsg : string); overload;
procedure Succ(const aMsg : string; aParams : array of const); overload;
procedure Done(const aMsg : string); overload;
procedure Done(const aMsg : string; aParams : array of const); overload;
procedure Warn(const aMsg : string); overload;
procedure Warn(const aMsg : string; aParams : array of const); overload;
procedure Error(const aMsg : string); overload;
procedure Error(const aMsg : string; aParams : array of const); overload;
procedure Critical(const aMsg : string); overload;
procedure Critical(const aMsg : string; aParams : array of const); overload;
procedure Trace(const aMsg : string); overload;
procedure Trace(const aMsg : string; aParams : array of const); overload;
procedure Debug(const aMsg : string); overload;
procedure Debug(const aMsg : string; aParams : array of const); overload;
procedure &Except(const aMsg : string; aValues : array of const); overload;
procedure &Except(const aMsg, aException, aStackTrace : string); overload;
procedure &Except(const aMsg : string; aValues: array of const; const aException, aStackTrace: string); overload;
end;
IDebugMethodEnter = interface
['{3BE4E8C2-CBCF-43BC-B3BE-0A0235C49BF1}']
procedure TimeIt;
end;
TDebugMethodEnter = class(TInterfacedObject,IDebugMethodEnter)
private
fLogger : ILogger;
fCallerMethod : string;
fTimeIt : Boolean;
fChrono : IChronometer;
public
constructor Create(aLogger : ILogger; const aCallerMethod : string);
destructor Destroy; override;
procedure TimeIt;
end;
IDebugMehtodChrono = interface
['{3DDD5389-D55A-4DEA-81FA-980CF41ACE38}']
procedure BreakPoint(const aMessage : string);
procedure Stop;
end;
TDebugMethodChrono = class(TInterfacedObject,IDebugMehtodChrono)
private
fLogger : ILogger;
fCallerMethod : string;
fMsg : string;
fChrono : IChronometer;
public
constructor Create(aLogger: ILogger; const aCallerMethod, aMsg : string);
destructor Destroy; override;
procedure BreakPoint(const aMsg : string);
procedure Stop;
end;
TDebugger = class
private class var
fLogger : ILogger;
fSerializer : ISerializer;
fShowTime : Boolean;
public
class constructor Create;
class destructor Destroy;
class procedure SetLogger(aLogger : ILogger);
class property ShowTime : Boolean read fShowTime write fShowTime;
class function NewChrono(aStarted : Boolean) : IChronometer;
class function TimeIt(aOwner : TObject; const aFunctionName, aDescription : string) : IDebugMehtodChrono;
class function Log : ILogger;
class procedure Trace(aOwner : TObject; const aMsg : string); overload;
class procedure Trace(aOwner : TObject; const aMsg : string; aParams : array of const); overload;
class procedure Trace(const aMsg : string); overload;
class procedure Trace(const aMsg : string; aParams : array of const); overload;
class procedure Trace(const aMsg : string; const aObject : TObject); overload;
class function Enter(aOwner : TObject; const aFunctionName: string) : IDebugMethodEnter;
end;
{$IFDEF NEXTGEN}
procedure cout(const cMsg : string; params : array of const; cEventType : TLogEventType); overload;
procedure cout(const cMsg : string; cEventType : TLogEventType); overload;
{$ENDIF}
implementation
uses
Quick.Json.Serializer;
{$IFDEF NEXTGEN}
procedure cout(const cMsg : string; params : array of const; cEventType : TLogEventType);
begin
FMX.Types.Log.d(Format(cMsg,params));
end;
procedure cout(const cMsg : string; cEventType : TLogEventType); overload;
begin
FMX.Types.Log.d(cMsg);
end;
{$ENDIF}
{ TDebugger }
class constructor TDebugger.Create;
begin
fSerializer := TJsonSerializer.Create(TSerializeLevel.slPublicProperty);
fLogger := TDebugConsoleLogger.Create;
fShowTime := True;
end;
class destructor TDebugger.Destroy;
begin
fSerializer := nil;
fLogger := nil;
end;
class function TDebugger.TimeIt(aOwner : TObject; const aFunctionName, aDescription: string): IDebugMehtodChrono;
begin
if aOwner <> nil then Result := TDebugMethodChrono.Create(fLogger,Format('%s.%s',[aOwner.ClassName,aFunctionName]),aDescription)
else Result := TDebugMethodChrono.Create(fLogger,Format('%s',[aFunctionName]),aDescription);
end;
class function TDebugger.Enter(aOwner : TObject; const aFunctionName: string) : IDebugMethodEnter;
begin
if aOwner <> nil then
begin
fLogger.Debug(Format('[ENTER] >> %s.%s',[aOwner.ClassName,aFunctionName]));
Result := TDebugMethodEnter.Create(fLogger,Format('%s.%s',[aOwner.ClassName,aFunctionName]));
end
else
begin
fLogger.Debug(Format('[ENTER] >> %s',[aFunctionName]));
Result := TDebugMethodEnter.Create(fLogger,aFunctionName);
end;
end;
class function TDebugger.NewChrono(aStarted : Boolean) : IChronometer;
begin
Result := TChronometer.Create(aStarted);
end;
class function TDebugger.Log: ILogger;
begin
Result := fLogger;
end;
class procedure TDebugger.SetLogger(aLogger: ILogger);
begin
if aLogger = nil then raise Exception.Create('Debugger logger cannot be nil!');
fLogger := aLogger;
fShowTime := False;
end;
class procedure TDebugger.Trace(aOwner: TObject; const aMsg: string);
begin
if aOwner <> nil then fLogger.Trace(Format('[TRACE] %s -> %s',[aOwner.ClassName,aMsg]))
else fLogger.Trace(Format('[TRACE] -> %s',[aMsg]))
end;
class procedure TDebugger.Trace(aOwner: TObject; const aMsg: string; aParams: array of const);
begin
Self.Trace(aOwner,Format(aMsg,aParams));
end;
class procedure TDebugger.Trace(const aMsg: string);
begin
fLogger.Trace(Format('[TRACE] %s',[aMsg]));
end;
class procedure TDebugger.Trace(const aMsg: string; aParams: array of const);
begin
Self.Trace(Format(aMsg,aParams));
end;
class procedure TDebugger.Trace(const aMsg: string; const aObject: TObject);
begin
Self.Trace(aMsg + ' ' + fSerializer.ObjectToJson(aObject));
end;
{ TDebugConsoleLogger }
constructor TDebugConsoleLogger.Create;
begin
fFormatSettings.DateSeparator := '/';
fFormatSettings.TimeSeparator := ':';
fFormatSettings.ShortDateFormat := 'DD-MM-YYY HH:NN:SS.ZZZ';
fFormatSettings.ShortTimeFormat := 'HH:NN:SS';
{$IFNDEF NEXTGEN}
Console.LogVerbose := LOG_ALL;
{$ENDIF}
fShowTime := True;
end;
procedure TDebugConsoleLogger.Critical(const aMsg: string; aParams: array of const);
begin
cout(FormatMsg(aMsg),aParams,TLogEventType.etCritical);
end;
procedure TDebugConsoleLogger.Critical(const aMsg: string);
begin
cout(FormatMsg(aMsg),TLogEventType.etCritical);
end;
procedure TDebugConsoleLogger.Debug(const aMsg: string; aParams: array of const);
begin
cout(FormatMsg(aMsg),aParams,TLogEventType.etDebug);
end;
procedure TDebugConsoleLogger.Debug(const aMsg: string);
begin
cout(FormatMsg(aMsg),TLogEventType.etDebug);
end;
procedure TDebugConsoleLogger.Done(const aMsg: string; aParams: array of const);
begin
cout(FormatMsg(aMsg),aParams,TLogEventType.etDone);
end;
procedure TDebugConsoleLogger.Done(const aMsg: string);
begin
cout(FormatMsg(aMsg),TLogEventType.etDone);
end;
procedure TDebugConsoleLogger.Error(const aMsg: string);
begin
cout(FormatMsg(aMsg),TLogEventType.etError);
end;
procedure TDebugConsoleLogger.Error(const aMsg: string; aParams: array of const);
begin
cout(FormatMsg(aMsg),aParams,TLogEventType.etError);
end;
procedure TDebugConsoleLogger.&Except(const aMsg: string; aValues: array of const);
begin
cout(FormatMsg(aMsg),aValues,TLogEventType.etException);
end;
procedure TDebugConsoleLogger.&Except(const aMsg, aException, aStackTrace: string);
begin
cout(FormatMsg(aMsg),TLogEventType.etException);
end;
procedure TDebugConsoleLogger.&Except(const aMsg: string; aValues: array of const; const aException, aStackTrace: string);
begin
cout(FormatMsg(aMsg),aValues,TLogEventType.etException);
end;
function TDebugConsoleLogger.FormatMsg(const aMsg: string): string;
begin
if fShowTime then Result := DateTimeToStr(Now(),fFormatSettings) + ' ' + aMsg
else Result := aMsg
end;
procedure TDebugConsoleLogger.Info(const aMsg: string; aParams: array of const);
begin
cout(FormatMsg(aMsg),aParams,TLogEventType.etInfo);
end;
procedure TDebugConsoleLogger.Info(const aMsg: string);
begin
cout(FormatMsg(aMsg),TLogEventType.etInfo);
end;
procedure TDebugConsoleLogger.Succ(const aMsg: string; aParams: array of const);
begin
cout(FormatMsg(aMsg),aParams,TLogEventType.etSuccess);
end;
procedure TDebugConsoleLogger.Succ(const aMsg: string);
begin
cout(FormatMsg(aMsg),TLogEventType.etSuccess);
end;
procedure TDebugConsoleLogger.Trace(const aMsg: string; aParams: array of const);
begin
cout(FormatMsg(aMsg),aParams,TLogEventType.etTrace);
end;
procedure TDebugConsoleLogger.Trace(const aMsg: string);
begin
cout(FormatMsg(aMsg),TLogEventType.etTrace);
end;
procedure TDebugConsoleLogger.Warn(const aMsg: string; aParams: array of const);
begin
cout(FormatMsg(aMsg),aParams,TLogEventType.etWarning);
end;
procedure TDebugConsoleLogger.Warn(const aMsg: string);
begin
cout(FormatMsg(aMsg),TLogEventType.etWarning);
end;
{ TDebugFunctionEnter }
constructor TDebugMethodEnter.Create(aLogger: ILogger; const aCallerMethod: string);
begin
fLogger := aLogger;
fCallerMethod := aCallerMethod;
end;
destructor TDebugMethodEnter.Destroy;
begin
if fTimeIt then
begin
fChrono.Stop;
fLogger.Debug(Format('[EXIT] >> %s in %s',[fCallerMethod,fChrono.ElapsedTime]));
end
else fLogger.Debug(Format('[EXIT] >> %s',[fCallerMethod]));
inherited;
end;
procedure TDebugMethodEnter.TimeIt;
begin
fTimeIt := True;
fChrono := TChronometer.Create(True);
end;
{ TDebugMethodChrono }
constructor TDebugMethodChrono.Create(aLogger: ILogger; const aCallerMethod, aMsg : string);
begin
fLogger := aLogger;
fCallerMethod := aCallerMethod;
fMsg := aMsg;
fChrono := TChronometer.Create(True);
end;
destructor TDebugMethodChrono.Destroy;
begin
if fChrono.IsRunning then
begin
fChrono.Stop;
fLogger.Trace(Format('[CHRONO] %s -> %s = %s',[fCallerMethod,fMsg,fChrono.ElapsedTime]));
end;
inherited;
end;
procedure TDebugMethodChrono.BreakPoint(const aMsg: string);
begin
fChrono.BreakPoint;
fLogger.Trace(Format('[CHRONO] %s -> %s = %s',[fCallerMethod,aMsg,fChrono.ElapsedTime_BreakPoint]));
end;
procedure TDebugMethodChrono.Stop;
begin
fChrono.Stop;
fLogger.Trace(Format('[CHRONO] %s -> %s = %s',[fCallerMethod,fMsg,fChrono.ElapsedTime]));
end;
end.