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
|
{
fpGUI IDE - Maximus
Copyright (C) 2012 - 2013 Graeme Geldenhuys
See the file COPYING.modifiedLGPL, included in this distribution,
for details about redistributing fpGUI.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Description:
---
}
unit filemonitor;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, fpg_main, fpg_base, contnrs;
type
TFileMonitorEventType = (fmeFileCreated,
fmeFileChanged,
fmeFileDeleted,
fmeFileRenamed,
fmeUnknownChange);
TFileMonitorEventData = record
EventType: TFileMonitorEventType;
FileName: TfpgString;
// OldFileName: TfpgString;
// UserData: Pointer;
end;
TFileChangedEvent = procedure(Sender: TObject; AData: TFileMonitorEventData) of object;
TMonitoredFile = class(TObject)
private
FName: TfpgString;
FSize: Int64;
FDate: TDateTime;
FSHA1: TfpgString;
function AsString: TfpgString;
public
function GetNewSHA1: TfpgString;
procedure UpdateInfo;
property Name: TfpgString read FName write FName;
property Size: Int64 read FSize write FSize;
property Date: TDateTime read FDate write FDate;
property SHA1: TfpgString read FSHA1 write FSHA1;
end;
TFileMonitor = class(TThread)
private
FInterval: LongWord;
FFileList: TThreadList;
FOnFileChanged: TFileChangedEvent;
FCurrent: TMonitoredFile;
FCurrentState: TFileMonitorEventType;
procedure DoFileChangeNotification;
public
constructor CreateCustom;
destructor Destroy; override;
procedure Execute; override;
property Interval: LongWord read FInterval write FInterval;
procedure AddFile(const AFilename: TfpgString);
procedure RemoveFile(const AFilename: TfpgString);
property OnFileChanged: TFileChangedEvent read FOnFileChanged write FOnFileChanged;
end;
implementation
uses
fpg_utils,
sha1;
function ReadFileDate(const AFileName: string): TDateTime;
var
fa: LongInt;
begin
fa := FileAge(AFileName);
Result := FileDateToDateTime(fa);
end;
function ReadFileSize(const AFileName: string): DWord;
var
LFileStream: TFileStream;
begin
LFileStream := TFileStream.Create(AFileName, fmOpenRead or fmShareDenyWrite);
try
Result := LFileStream.Size;
finally
LFileStream.Free;
end;
end;
procedure ReadFileDateSize(const AFileName: string; var ADateTime: TDateTime; var AFileSize: Int64);
begin
ADateTime := ReadFileDate(AFileName);
AFileSize := ReadFileSize(AFileName);
end;
{ TMonitoredFile }
function TMonitoredFile.AsString: TfpgString;
const
OBJ_AS_STRING = '%s %s %d';
begin
Result := Format(OBJ_AS_STRING, [FName, FormatDateTime('yyyy-mm-dd hh:mm:ss', FDate), FSize]);
end;
function TMonitoredFile.GetNewSHA1: TfpgString;
var
lFile: TMonitoredFile;
s: Int64;
d: TDateTime;
begin
s := 0;
d := 0.0;
lFile := TMonitoredFile.Create;
try
lFile.Name := FName;
ReadFileDateSize(lFile.Name, d, s);
lFile.Size := s;
lFile.Date := d;
Result := SHA1ofStr(lFile.AsString);
finally
lFile.Free;
end;
end;
procedure TMonitoredFile.UpdateInfo;
var
s: Int64;
d: TDateTime;
begin
ReadFileDateSize(Name, d, s);
Size := s;
Date := d;
SHA1 := SHA1ofStr(AsString);
end;
{ TFileMonitor }
procedure TFileMonitor.DoFileChangeNotification;
var
rec: TFileMonitorEventData;
begin
if Assigned(FOnFileChanged) then
begin
rec.EventType := FCurrentState;
rec.FileName := FCurrent.Name;
FOnFileChanged(self, rec);
end;
end;
constructor TFileMonitor.CreateCustom;
begin
Create(True);
FFileList := TThreadList.Create;
FInterval := 500;
end;
destructor TFileMonitor.Destroy;
var
f: TMonitoredFile;
lst: TList;
i: integer;
begin
try
lst := FFileList.LockList;
for i := lst.Count-1 downto 0 do
begin
f := TMonitoredFile(lst[i]);
lst.Remove(f);
f.Free;
end;
finally
FFileList.UnlockList;
end;
FFileList.Free;
inherited Destroy;
end;
procedure TFileMonitor.Execute;
var
i: integer;
lFile: TMonitoredFile;
lst: TList;
begin
while not Terminated do
begin
if Assigned(FOnFileChanged) then
begin
lst := FFileList.LockList;
try
for i := lst.Count-1 downto 0 do
begin
lFile := TMonitoredFile(lst[i]);
if fpgFileExists(lFile.Name) then
begin
if lFile.SHA1 <> lFile.GetNewSHA1 then
begin
FCurrent := lFile;
FCurrentState := fmeFileChanged;
Synchronize(@DoFileChangeNotification);
lFile.UpdateInfo;
end;
end
else
begin
FCurrent := lFile;
FCurrentState := fmeFileDeleted;
Synchronize(@DoFileChangeNotification);
lst.Remove(lFile);
end;
end;
finally
FFileList.UnlockList;
end;
end;
sleep(FInterval);
end;
end;
procedure TFileMonitor.AddFile(const AFilename: TfpgString);
var
lFile: TMonitoredFile;
s: Int64;
d: TDateTime;
begin
s := 0;
d := 0.0;
lFile := TMonitoredFile.Create;
lFile.Name := AFileName;
ReadFileDateSize(AFileName, d, s);
lFile.Size := s;
lFile.Date := d;
lFile.SHA1 := SHA1ofStr(lFile.AsString);
FFileList.Add(lFile);
end;
procedure TFileMonitor.RemoveFile(const AFilename: TfpgString);
var
i: integer;
lFile: TMonitoredFile;
lst: TList;
begin
lst := FFileList.LockList;
try
for i := 0 to lst.Count-1 do
begin
if AFilename = TMonitoredFile(lst[i]).Name then
begin
lFile := TMonitoredFile(lst[i]);
lst.Delete(i);
lFile.Free;
break;
end;
end;
finally
FFileList.UnlockList;
end;
end;
end.
|