-
Notifications
You must be signed in to change notification settings - Fork 19
/
LogViewer.LogLevels.Settings.pas
243 lines (199 loc) · 5.27 KB
/
LogViewer.LogLevels.Settings.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
{
Copyright (C) 2013-2022 Tim Sinaeve [email protected]
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 LogViewer.LogLevels.Settings;
{ Settings for log levels. }
interface
uses
System.Classes, System.UITypes,
Spring, Spring.Collections,
DDuce.Logger.Interfaces;
type
TLogLevelProperties = class(TPersistent)
private
FLevel : TLogMessageLevel;
FAlias : string;
FColor : TColor;
FOnChanged : Event<TNotifyEvent>;
protected
{$REGION 'property access methods'}
procedure SetLevel(const Value: TLogMessageLevel);
function GetColorName: string;
function GetOnChanged: IEvent<TNotifyEvent>;
function GetColor: TColor;
procedure SetColor(const Value: TColor);
function GetLevel: TLogMessageLevel;
function GetAlias: string;
procedure SetAlias(const Value: string);
{$ENDREGION}
procedure Changed;
public
constructor Create(
ALevel : TLogMessageLevel;
AColor : TColor = TColors.SysNone;
const AAlias : string = ''
);
procedure Assign(Source: TPersistent); override;
property OnChanged: IEvent<TNotifyEvent>
read GetOnChanged;
property ColorName: string
read GetColorName;
published
property Alias: string
read GetAlias write SetAlias;
property Color: TColor
read GetColor write SetColor;
property Level: TLogMessageLevel
read GetLevel write SetLevel;
end;
TLogLevelSettings = class(TPersistent)
private
FLogLevels : IList<TLogLevelProperties>;
FOnChanged : Event<TNotifyEvent>;
procedure FLogLevelChanged(Sender: TObject);
function GetOnChanged: IEvent<TNotifyEvent>;
public
procedure AfterConstruction; override;
destructor Destroy; override;
property OnChanged: IEvent<TNotifyEvent>
read GetOnChanged;
property LogLevels: IList<TLogLevelProperties>
read FLogLevels;
end;
implementation
uses
Vcl.Graphics, Vcl.GraphUtil,
DDuce.Logger;
{$REGION 'TLogLevel'}
{$REGION 'construction and destruction'}
constructor TLogLevelProperties.Create(ALevel: TLogMessageLevel; AColor: TColor;
const AAlias: string);
begin
FLevel := ALevel;
FColor := AColor;
FAlias := AAlias;
FOnChanged.UseFreeNotification := False;
end;
{$ENDREGION}
{$REGION 'property access methods'}
function TLogLevelProperties.GetAlias: string;
begin
Result := FAlias;
end;
procedure TLogLevelProperties.SetAlias(const Value: string);
begin
if Value <> Alias then
begin
FAlias := Value;
Changed;
end;
end;
function TLogLevelProperties.GetColor: TColor;
begin
Result := FColor;
end;
procedure TLogLevelProperties.SetColor(const Value: TColor);
begin
if Color <> Value then
begin
FColor := Value;
Changed;
end;
end;
function TLogLevelProperties.GetColorName: string;
begin
Result := ColorToWebColorName(FColor);
end;
function TLogLevelProperties.GetLevel: TLogMessageLevel;
begin
Result := FLevel;
end;
procedure TLogLevelProperties.SetLevel(const Value: TLogMessageLevel);
begin
if Level <> Value then
begin
FLevel := Value;
Changed;
end;
end;
function TLogLevelProperties.GetOnChanged: IEvent<TNotifyEvent>;
begin
Result := FOnChanged;
end;
{$ENDREGION}
{$REGION 'protected methods'}
procedure TLogLevelProperties.Assign(Source: TPersistent);
var
LLogLevel: TLogLevelProperties;
begin
if Source is TLogLevelProperties then
begin
LLogLevel := TLogLevelProperties(Source);
Level := LLogLevel.Level;
Alias := LLogLevel.Alias;
FColor := LLogLevel.Color;
end
else
inherited Assign(Source);
end;
procedure TLogLevelProperties.Changed;
begin
if FOnChanged.CanInvoke then
FOnChanged.Invoke(Self);
end;
{$ENDREGION}
{$ENDREGION}
{$REGION 'TLogLevelSettings'}
{$REGION 'construction and destruction'}
procedure TLogLevelSettings.AfterConstruction;
var
LL : TLogLevelProperties;
LML : TLogMessageLevel;
begin
inherited AfterConstruction;
FLogLevels := TCollections.CreateObjectList<TLogLevelProperties>;
FOnChanged.UseFreeNotification := False;
for LML := Low(TLogMessageLevel) to High(TLogMessageLevel) do
begin
LL := TLogLevelProperties.Create(LML);
LL.OnChanged.Add(FLogLevelChanged);
FLogLevels.Add(LL);
end;
end;
destructor TLogLevelSettings.Destroy;
var
LML : TLogMessageLevel;
LL : TLogLevelProperties;
begin
for LML := Low(TLogMessageLevel) to High(TLogMessageLevel) do
begin
LL := LogLevels[LML];
LL.OnChanged.Remove(FLogLevelChanged);
end;
FLogLevels := nil;
inherited Destroy;
end;
{$ENDREGION}
{$REGION 'property access methods'}
function TLogLevelSettings.GetOnChanged: IEvent<TNotifyEvent>;
begin
Result := FOnChanged;
end;
{$ENDREGION}
{$REGION 'event handlers'}
procedure TLogLevelSettings.FLogLevelChanged(Sender: TObject);
begin
FOnChanged.Invoke(Self);
end;
{$ENDREGION}
{$ENDREGION}
end.