forked from yavfast/dbg-spider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuSpiderOptions.pas
406 lines (335 loc) · 10 KB
/
uSpiderOptions.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
unit uSpiderOptions;
interface
uses Classes, XMLDoc, XMLIntf, DebugerTypes, DbgHookTypes, Graphics,
System.UITypes;
type
TColorOptions = class
private
FXMLNode: IXMLNode;
function GetColor(const Name: String): TColor;
procedure SetColor(const Name: String; const Value: TColor);
public
constructor Create(const OwnerNode: IXMLNode);
property Colors[const Name: String]: TColor read GetColor write SetColor;
end;
TLogColorOptions = class(TColorOptions)
private
function GetLogColor(const LogType: TDbgLogType): TColor;
procedure SetLogColor(const LogType: TDbgLogType; const Value: TColor);
public
property LogColors[const LogType: TDbgLogType]: TColor read GetLogColor write SetLogColor; default;
end;
TTimelineColorOptions = class(TColorOptions)
private
function GetEventColor(const EventType: TDbgPointType): TColor;
procedure SetEventColor(const EventType: TDbgPointType; const Value: TColor);
public
property EventColors[const EventType: TDbgPointType]: TColor read GetEventColor write SetEventColor; default;
end;
TSyncObjsColorOptions = class(TColorOptions)
private
function GetSyncObjsColor(const SyncObjsType: TDbgSyncObjsType): TColor;
procedure SetSyncObjsColor(const SyncObjsType: TDbgSyncObjsType; const Value: TColor);
public
property SyncObjsColors[const SyncObjsType: TDbgSyncObjsType]: TColor read GetSyncObjsColor write SetSyncObjsColor; default;
end;
TSpiderOptions = class
private
FXMLFileName: String;
FXML: IXMLDocument;
FUpdateCount: Integer;
FLogColors: TLogColorOptions;
FTimelineColors: TTimelineColorOptions;
FSyncObjsColors: TSyncObjsColorOptions;
protected
procedure Open;
procedure CreateNew;
procedure Save;
public
constructor Create(const AXMLFileName: String);
destructor Destroy; override;
procedure BeginUpdate;
procedure EndUpdate;
procedure AddRecentProject(const ProjectName: String);
procedure GetRecentProjects(var Projects: TStringList);
property LogColors: TLogColorOptions read FLogColors;
property TimelineColors: TTimelineColorOptions read FTimelineColors;
property SyncObjsColors: TSyncObjsColorOptions read FSyncObjsColors;
end;
implementation
uses
Windows, SysUtils, SyncObjs, ClassUtils;
const
_RECENT = 'recent';
_RECENT_ITEM = 'item';
_DefLogColors: array[Low(TDbgLogType) .. High(TDbgLogType)] of TColor = (
clBlack, // dltUnknown
clBlack, // dltInfo
clPurple, //dltWarning
clRed, // dltError
clNavy, // dltDebugOutput
clBlack, // dltProcessEvent
clBlack, // dltThreadEvent
clRed, // dltExceptionEvent
clMaroon, // dltBreakPointEvent
clBlack // dltDLLEvent
);
_LogColorNames: array[Low(TDbgLogType) .. High(TDbgLogType)] of String = (
'', // dltUnknown
'info', // dltInfo
'warning', //dltWarning
'error', // dltError
'debug_output', // dltDebugOutput
'process_event', // dltProcessEvent
'thread_event', // dltThreadEvent
'exception_event', // dltExceptionEvent
'breakpoint_event', // dltBreakPointEvent
'dll_event' // dltDLLEvent
);
_DefEventColors: array[Low(TDbgPointType) .. High(TDbgPointType)] of TColor = (
clWhite, // ptNone
clSkyBlue, // ptWait
clGreen, // ptStart
clGreen, // ptStop
clRed, // ptException
clGreen, // ptPerfomance
clGreen, // ptThreadInfo
clGreen, // ptMemoryInfo
clYellow, // ptSyncObjsInfo
clWhite // ptTraceInfo
);
_EventColorNames: array[Low(TDbgPointType) .. High(TDbgPointType)] of String = (
'none', // ptNone
'wait', // ptWait
'start', // ptStart
'stop', // ptStop
'exception', // ptException
'active', // ptPerfomance
'thread', // ptThreadInfo
'memory', // ptMemoryInfo
'syncobjs', // ptSyncObjsInfo
'trace' // ptTraceInfo
);
_DefSyncObjsColors: array[Low(TDbgSyncObjsType) .. High(TDbgSyncObjsType)] of TColor = (
clDefault,
clSilver, // soSleep
clGray, // soWaitForSingleObject
clGray, // soWaitForMultipleObjects
clYellow, // soEnterCriticalSection
clLime, // soLeaveCriticalSection
clMaroon, // soInCriticalSection
clYellow // soSendMessage
);
_SyncObjsColorNames: array[Low(TDbgSyncObjsType) .. High(TDbgSyncObjsType)] of String = (
'unknown',
'sleep', // soSleep
'waitforsingleobject', // soWaitForSingleObject
'waitformultipleobjects', // soWaitForMultipleObjects
'entercriticalsection', // soEnterCriticalSection
'leavecriticalsection', // soLeaveCriticalSection
'incriticalsection', // soInCriticalSection
'sendmessage' // soSendMessage
);
{ TSpiderOptions }
procedure TSpiderOptions.AddRecentProject(const ProjectName: String);
var
RecentNode: IXMLNode;
Node: IXMLNode;
RP: TStringList;
Idx: Integer;
begin
Assert(Assigned(FXML));
RP := TStringList.Create;
RP.Duplicates := dupIgnore;
RP.CaseSensitive := False;
BeginUpdate;
try
RecentNode := FXML.DocumentElement.ChildNodes.FindNode(_RECENT);
if RecentNode = nil then
RecentNode := FXML.DocumentElement.AddChild(_RECENT)
else
GetRecentProjects(RP);
if (RP.Count > 0) then
repeat
Idx := RP.IndexOf(ProjectName);
if Idx >= 0 then
RP.Delete(Idx);
until Idx = -1;
RP.Insert(0, ProjectName);
RecentNode.ChildNodes.Clear;
for Idx := 0 to RP.Count - 1 do
begin
Node := RecentNode.AddChild(_RECENT_ITEM);
Node.Text := RP[Idx];
end;
finally
EndUpdate;
FreeAndNil(RP);
end;
end;
procedure TSpiderOptions.GetRecentProjects(var Projects: TStringList);
var
RecentNode: IXMLNode;
Node: IXMLNode;
I: Integer;
begin
Assert(Assigned(FXML));
Projects.Clear;
RecentNode := FXML.DocumentElement.ChildNodes.FindNode(_RECENT);
if Assigned(RecentNode) then
begin
for I := 0 to RecentNode.ChildNodes.Count - 1 do
begin
Node := RecentNode.ChildNodes[I];
if Node.IsTextElement then
Projects.Add(Node.Text);
end;
end;
end;
procedure TSpiderOptions.BeginUpdate;
begin
InterlockedIncrement(FUpdateCount);
end;
constructor TSpiderOptions.Create(const AXMLFileName: String);
begin
inherited Create;
FXML := nil;
FUpdateCount := 0;
FXMLFileName := AXMLFileName;
Open;
end;
procedure TSpiderOptions.CreateNew;
var
DocNode: IXMLNode;
begin
FXML := TXMLDocument.Create(nil);
FXML.NodeIndentStr := ' ';
FXML.Options := FXML.Options + [{doNodeAutoIndent, }doNodeAutoCreate];
FXML.Active := True;
FXML.Encoding := 'utf-8';
DocNode := FXML.AddChild('spider_gui');
DocNode.Attributes['version'] := '1.0';
Save;
end;
destructor TSpiderOptions.Destroy;
begin
Save;
FreeAndNil(FLogColors);
FreeAndNil(FTimelineColors);
FreeAndNil(FSyncObjsColors);
FXML := nil;
inherited;
end;
procedure TSpiderOptions.EndUpdate;
begin
if InterlockedDecrement(FUpdateCount) = 0 then
Save;
end;
procedure TSpiderOptions.Open;
var
Node1, Node2: IXMLNode;
begin
BeginUpdate;
try
if FileExists(FXMLFileName) then
begin
FXML := TXMLDocument.Create(FXMLFileName);
//FXML.NodeIndentStr := ' ';
FXML.Options := FXML.Options + [doNodeAutoIndent, doNodeAutoCreate];
end
else
CreateNew;
Node1 := GetXMLChildNode(FXML.DocumentElement, 'colors');
Node2 := GetXMLChildNode(Node1, 'log');
FLogColors := TLogColorOptions.Create(Node2);
Node2 := GetXMLChildNode(Node1, 'timeline');
FTimelineColors := TTimelineColorOptions.Create(Node2);
Node2 := GetXMLChildNode(Node1, 'syncobjs');
FSyncObjsColors := TSyncObjsColorOptions.Create(Node2);
finally
EndUpdate;
end;
end;
procedure TSpiderOptions.Save;
begin
if Assigned(FXML) then
begin
try
// Ïðîáóåì ñîõðàíèòü ðÿäîì ñ ïðèëîæåíèåì
FXML.SaveToFile(FXMLFileName);
except
// TODO: Ñîõðàíÿòü â ïðîôèëü ïîëüçîâàòåëÿ
end;
end;
end;
{ TColorOptions }
constructor TColorOptions.Create(const OwnerNode: IXMLNode);
begin
inherited Create;
FXMLNode := OwnerNode;
end;
function TColorOptions.GetColor(const Name: String): TColor;
var
Str: String;
begin
Result := clDefault;
Str := GetXMLValue(FXMLNode, Name);
if Str <> '' then
Result := StringToColor(Str);
end;
procedure TColorOptions.SetColor(const Name: String; const Value: TColor);
begin
SetXMLValue(FXMLNode, Name, ColorToString(Value));
end;
{ TLogColorOptions }
function TLogColorOptions.GetLogColor(const LogType: TDbgLogType): TColor;
var
N: String;
begin
N := _LogColorNames[LogType];
Result := Colors[N];
if Result = clDefault then
Result := _DefLogColors[LogType];
end;
procedure TLogColorOptions.SetLogColor(const LogType: TDbgLogType; const Value: TColor);
var
N: String;
begin
N := _LogColorNames[LogType];
Colors[N] := Value;
end;
{ TTimelineOptions }
function TTimelineColorOptions.GetEventColor(const EventType: TDbgPointType): TColor;
var
N: String;
begin
N := _EventColorNames[EventType];
Result := Colors[N];
if Result = clDefault then
Result := _DefEventColors[EventType];
end;
procedure TTimelineColorOptions.SetEventColor(const EventType: TDbgPointType; const Value: TColor);
var
N: String;
begin
N := _EventColorNames[EventType];
Colors[N] := Value;
end;
{ TSyncObjsColorOptions }
function TSyncObjsColorOptions.GetSyncObjsColor(const SyncObjsType: TDbgSyncObjsType): TColor;
var
N: String;
begin
N := _SyncObjsColorNames[SyncObjsType];
Result := Colors[N];
if Result = clDefault then
Result := _DefSyncObjsColors[SyncObjsType];
end;
procedure TSyncObjsColorOptions.SetSyncObjsColor(const SyncObjsType: TDbgSyncObjsType; const Value: TColor);
var
N: String;
begin
N := _SyncObjsColorNames[SyncObjsType];
Colors[N] := Value;
end;
end.