forked from danieleteti/loggerpro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LoggerPro.GlobalLogger.pas
77 lines (64 loc) · 1.68 KB
/
LoggerPro.GlobalLogger.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
unit LoggerPro.GlobalLogger;
{<@abstract(Contains the global logger as a thread safe singleton)
Use the global logger for fast&dirty logging, but consider to use your own
instance of @link(ILogWriter) (created using @link(BuildLogWriter)) for all your serious logging needs.
@author(Daniele Teti - [email protected])
}
interface
uses
LoggerPro;
{ @abstract(The global logger. Just uses @link(Logger.GlobalLogger) and you can start to log using @code(Log) function.)
The global logger is configured with a @link(TLoggerProFileAppender) using default settings.
}
function Log: ILogWriter;
{ @abstract(Use only inside DLL because dll unloading is not a safe place to shutdown threads, so call this before unload DLL)
Use this also in ISAPI dll. Check the @code(loggerproisapisample.dll) sample
}
procedure ReleaseGlobalLogger;
implementation
uses
LoggerPro.FileAppender;
var
_Logger: ILogWriter;
_Lock: TObject = nil;
_ShuttedDown: boolean = false;
function Log: ILogWriter;
begin
if _Logger = nil then
begin
if not _ShuttedDown then
begin
TMonitor.Enter(_Lock);
try
if _Logger = nil then // double check
begin
_Logger := BuildLogWriter([TLoggerProFileAppender.Create]);
end;
finally
TMonitor.Exit(_Lock);
end;
end;
end;
Result := _Logger;
end;
procedure ReleaseGlobalLogger;
begin
if _Logger <> nil then
begin
TMonitor.Enter(_Lock);
try
if _Logger <> nil then // double check
begin
_Logger := nil;
_ShuttedDown := True;
end;
finally
TMonitor.Exit(_Lock);
end;
end;
end;
initialization
_Lock := TObject.Create;
finalization
_Lock.Free;
end.