-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathServiceUn.pas
76 lines (65 loc) · 1.61 KB
/
ServiceUn.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
unit ServiceUn;
interface
uses
Windows, Messages, SysUtils, Classes, DMUn,Vcl.SvcMgr,
SyncObjs,ComObj,ActiveX;
type
TServiceThread = class(TThread)
private
{ Private declarations }
FEventLogger : TEventLogger;
FName: String;
FDisplayName: String;
procedure LogMessage(Message: String; EventType: DWord; Category, ID: Integer);
protected
procedure Execute; override;
public
property Name :String read FName write FName;
property DisplayName :String read FDisplayName write FDisplayName;
end;
implementation
{ TServiceThread }
procedure TServiceThread.LogMessage(Message: String; EventType: DWord; Category, ID: Integer);
begin
if FEventLogger = nil then
FEventLogger := TEventLogger.Create(Name);
FEventLogger.LogMessage(Message, EventType, Category, ID);
end;
procedure TServiceThread.Execute;
const
SecBetweenRuns = 10;
var
Count: Integer;
begin
{ Place thread code here }
FEventLogger := nil;
///initialising
OleInitialize(nil);
try
DM := TDM.Create(nil);
Count := 0;
// attempting to connect to the repository
while not Terminated do // loop around until we should stop
try
Inc(Count);
if Count >= SecBetweenRuns then
begin
Count := 0;
end;
Sleep(500);
except // execution error handler
on e: exception do
begin
LogMessage(DisplayName+ ' - ' +e.Message, EVENTLOG_ERROR_TYPE, 0, 1);
end;
end;
FreeAndNil(DM);
OleUninitialize;
except // Global error handler
on e: exception do
begin
LogMessage(DisplayName+ ' - ' +e.Message, EVENTLOG_ERROR_TYPE, 0, 1);
end;
end;
end;
end.