-
Notifications
You must be signed in to change notification settings - Fork 84
/
Quick.Logger.Provider.StringList.pas
201 lines (171 loc) · 5.07 KB
/
Quick.Logger.Provider.StringList.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
{ ***************************************************************************
Copyright (c) 2016-2024 Kike Pérez / Jens Fudickar
Unit : Quick.Logger.Provider.StringList
Description : Log StringList Provider
Author : Jens Fudickar
Version : 1.23
Created : 12/28/2023
Modified : 09/10/2024
This file is part of QuickLogger: https://github.com/exilon/QuickLogger
***************************************************************************
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.Logger.Provider.StringList;
interface
{$I QuickLib.inc}
uses
System.Classes,
{$IFDEF MSWINDOWS}
WinApi.Windows,
{$IFDEF DELPHIXE8_UP}
Quick.Json.Serializer,
{$ENDIF}
{$ENDIF}
{$IFDEF DELPHILINUX}
Quick.SyncObjs.Linux.Compatibility,
{$ENDIF}
System.SysUtils,
Generics.Collections,
Quick.Commons,
Quick.Logger;
type
TLogStringListProvider = class(TLogProviderBase)
private
fIncludeLogItems: Boolean;
fintLogList: TStringList;
FLogList: TStrings;
fMaxSize: Int64;
fShowEventTypes: Boolean;
fShowTimeStamp: Boolean;
CS: TRTLCriticalSection;
function GetLogList: TStrings;
public
constructor Create; override;
destructor Destroy; override;
// This property defines if the log items should be cloned to the object property of the item list.
property IncludeLogItems: Boolean read fIncludeLogItems write fIncludeLogItems default false;
{$IFDEF DELPHIXE8_UP}[TNotSerializableProperty]{$ENDIF}
// Attention: When assigning an external stringlist to the property and IncludeLogItems = true you have to ensure
// that the external list.ownsobjects is true
property LogList: TStrings read GetLogList write FLogList;
property MaxSize: Int64 read fMaxSize write fMaxSize;
property ShowEventTypes: Boolean read fShowEventTypes write fShowEventTypes;
property ShowTimeStamp: Boolean read fShowTimeStamp write fShowTimeStamp;
procedure Init; override;
procedure Restart; override;
procedure WriteLog (cLogItem: TLogItem); override;
procedure Clear;
end;
var
GlobalLogStringListProvider: TLogStringListProvider;
implementation
constructor TLogStringListProvider.Create;
begin
inherited;
{$IF Defined(MSWINDOWS) OR Defined(DELPHILINUX)}
InitializeCriticalSection (CS);
{$ELSE}
InitCriticalSection (CS);
{$ENDIF}
LogLevel := LOG_ALL;
fMaxSize := 0;
fShowEventTypes := False;
fShowTimeStamp := False;
fIncludeLogItems := false;
fintLogList := TStringList.Create;
fintLogList.OwnsObjects := true;
end;
destructor TLogStringListProvider.Destroy;
begin
EnterCriticalSection (CS);
try
if Assigned (fintLogList) then
fintLogList.Free;
finally
LeaveCriticalSection (CS);
end;
{$IF Defined(MSWINDOWS) OR Defined(DELPHILINUX)}
DeleteCriticalSection (CS);
{$ELSE}
DoneCriticalsection (CS);
{$ENDIF}
inherited;
end;
procedure TLogStringListProvider.Init;
begin
inherited;
end;
procedure TLogStringListProvider.Restart;
begin
Stop;
Clear;
EnterCriticalSection (CS);
try
if Assigned (fintLogList) then
fintLogList.Free;
finally
LeaveCriticalSection (CS);
end;
Init;
end;
procedure TLogStringListProvider.WriteLog (cLogItem: TLogItem);
begin
EnterCriticalSection (CS);
LogList.BeginUpdate;
try
if fMaxSize > 0 then
begin
while LogList.Count >= fMaxSize do
LogList.Delete (0);
end;
if CustomMsgOutput then
if IncludeLogItems then
LogList.AddObject (LogItemToFormat(cLogItem), cLogItem.Clone)
else
LogList.Add (LogItemToFormat(cLogItem))
else
begin
if IncludeLogItems then
LogList.AddObject (LogItemToLine(cLogItem, fShowTimeStamp, fShowEventTypes), cLogItem.Clone)
else
LogList.Add (LogItemToLine(cLogItem, fShowTimeStamp, fShowEventTypes));
if cLogItem.EventType = etHeader then
LogList.Add (FillStr('-', cLogItem.Msg.Length));
end;
finally
LogList.EndUpdate;
LeaveCriticalSection (CS);
end;
end;
procedure TLogStringListProvider.Clear;
begin
EnterCriticalSection (CS);
try
LogList.Clear;
finally
LeaveCriticalSection (CS);
end;
end;
function TLogStringListProvider.GetLogList: TStrings;
begin
if Assigned (fLogList) then
Result := fLogList
else
Result := fintLogList;
end;
initialization
GlobalLogStringListProvider := TLogStringListProvider.Create;
finalization
if Assigned (GlobalLogStringListProvider) and (GlobalLogStringListProvider.RefCount = 0) then
begin
GlobalLogStringListProvider.Free;
end;
end.