forked from Sovos-Compliance/convey-public-libs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cromis.DirectoryWatch.pas
614 lines (529 loc) · 18 KB
/
Cromis.DirectoryWatch.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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
(*
* This software is distributed under BSD license.
*
* Copyright (c) 2009 Iztok Kacin, Cromis (iztok.kacin@gmail.com).
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice, this
* list of conditions and the following disclaimer in the documentation and/or
* other materials provided with the distribution.
* - Neither the name of the Iztok Kacin nor the names of its contributors may be
* used to endorse or promote products derived from this software without specific
* prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*
* NOTICE OF CODE ORIGIN
*
* This code was derived from the original code of author "Gleb Yourchenko"
* The original code "FnugryDirWatch" can still be found at Torry Components
* The URL is: http://www.torry.net/pages.php?id=252
*
* The code was taken as a starting point and then mainly written from scratch
* keeping some of the healthy code parts. So I am not in any way an author of
* the original idea. But I am the author of all the changes and new code parts.
*
* ============================================================================
* 12/10/2009 (1.0.0)
* - Initial code rewrite from "FnugryDirWatch"
* 16/01/2010 (1.0.1)
* - Refactored the main watch loop
* 18/03/2011 (1.1.0)
* - 64 bit compiler compatible
* - Fixed thread termination bug
* 12/06/2012 (1.2.0)
* - WaitForFileReady added. Waits until file is free to be used
* 11/07/2012 (1.2.1)
* - Close the FChangeEvent handle
* 21/07/2012 (1.3.0)
* - Added buffer size property, so that the user can control the size of buffer
* - Added OnError event handler, so user get notified of all errors
* - Check the result of ReadDirectoryChangesW with GetOverlappedResult.
This way we can check if buffer overflow happens and trigger an error.
* ============================================================================
*)
unit Cromis.DirectoryWatch;
interface
uses
Windows, SysUtils, Classes, Messages, SyncObjs, DateUtils;
const
FILE_NOTIFY_CHANGE_FILE_NAME = $00000001;
FILE_NOTIFY_CHANGE_DIR_NAME = $00000002;
FILE_NOTIFY_CHANGE_ATTRIBUTES = $00000004;
FILE_NOTIFY_CHANGE_SIZE = $00000008;
FILE_NOTIFY_CHANGE_LAST_WRITE = $00000010;
FILE_NOTIFY_CHANGE_LAST_ACCESS = $00000020;
FILE_NOTIFY_CHANGE_CREATION = $00000040;
FILE_NOTIFY_CHANGE_SECURITY = $00000100;
const
cShutdownTimeout = 3000;
cFileWaitTimeout = 0;
type
// the filters that control when the watch is triggered
TWatchOption = (woFileName, woDirName, woAttributes, woSize, woLastWrite,
woLastAccess, woCreation, woSecurity);
TWatchOptions = set of TWatchOption;
// the actions that are the result of the watch being triggered
TWatchAction = (waAdded, waRemoved, waModified, waRenamedOld, waRenamedNew);
TWatchActions = set of TWatchAction;
TFileChangeNotifyEvent = procedure(const Sender: TObject;
const Action: TWatchAction;
const FileName: string
) of Object;
TOnError = procedure(const Sender: TObject;
const ErrorCode: Integer;
const ErrorMessage: string
) of Object;
TDirectoryWatch = class
private
FWatchOptions : TWatchOptions;
FWatchActions : TWatchActions;
FWatchSubTree : Boolean;
FWatchThread : TThread;
FBufferSize : Integer;
FWndHandle : HWND;
FDirectory : string;
FAbortEvent : THandle;
FOnError : TOnError;
FOnChange : TNotifyEvent;
FOnNotify : TFileChangeNotifyEvent;
procedure WatchWndProc(var Msg: TMessage);
procedure SetDirectory(const Value: string);
procedure SetWatchOptions(const Value: TWatchOptions);
procedure SetWatchActions(const Value: TWatchActions);
procedure SetWatchSubTree(const Value: Boolean);
procedure DeallocateHWnd(Wnd: HWND);
function MakeFilter: Integer;
protected
procedure Change; virtual;
procedure AllocWatchThread;
procedure ReleaseWatchThread;
procedure RestartWatchThread;
procedure Notify(const Action: Integer;
const FileName: string
); virtual;
public
constructor Create;
destructor Destroy; override;
procedure Start;
procedure Stop;
function Running: Boolean;
property WatchSubTree: Boolean read FWatchSubTree write SetWatchSubTree;
property WatchOptions: TWatchOptions read FWatchOptions write SetWatchOptions;
property WatchActions: TWatchActions read FWatchActions write SetWatchActions;
property BufferSize: Integer read FBufferSize write FBufferSize;
property Directory: string read FDirectory write SetDirectory;
// notification properties. Notify about internal and exernal changes
property OnNotify: TFileChangeNotifyEvent read FOnNotify write FOnNotify;
property OnChange: TNotifyEvent read FOnChange write FOnChange;
property OnError: TOnError read FOnError write FOnError;
end;
// waits for the file to be ready (it is not in use anymore) or timeout occurs
procedure WaitForFileReady(const FileName: string; const Timeout: Cardinal = cFileWaitTimeout);
implementation
type
PFILE_NOTIFY_INFORMATION = ^TFILE_NOTIFY_INFORMATION;
TFILE_NOTIFY_INFORMATION = record
NextEntryOffset : Cardinal;
Action : Cardinal;
FileNameLength : Cardinal;
FileName : array[0..MAX_PATH - 1] of WideChar;
end;
const
WM_DIRWATCH_ERROR = WM_USER + 137;
WM_DIRWATCH_NOTIFY = WM_USER + 138;
FILE_LIST_DIRECTORY = $0001;
const
// error messages
cErrorInWatchThread = 'Error "%s" in watch thread. Error code: %d';
cErrorCreateWatchError = 'Error trying to create file handle for "%s". Error code: %d';
type
TDirWatchThread = class(TThread)
private
FWatchSubTree : Boolean;
FAbortEvent : THandle;
FChangeEvent : THandle;
FBufferSize : Integer;
FWndHandle : HWND;
FDirHandle : THandle;
FDirectory : string;
FIOResult : Pointer;
FFilter : Integer;
procedure SignalError(const ErrorMessage: string; ErrorCode: Cardinal = 0);
protected
procedure Execute; override;
public
constructor Create(const Directory: string;
const WndHandle: HWND;
const BufferSize: Integer;
const AbortEvent: THandle;
const TypeFilter: Cardinal;
const aWatchSubTree: Boolean);
destructor Destroy; override;
end;
procedure WaitForFileReady(const FileName: string; const Timeout: Cardinal);
var
hFile: THandle;
StartTime: TDateTime;
begin
StartTime := Now;
// wait to close
while (MilliSecondsBetween(Now, StartTime) < Timeout) or (Timeout = 0) do
begin
hFile := CreateFile(PChar(FileName), GENERIC_READ, 0, nil, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
if hFile <> INVALID_HANDLE_VALUE then
begin
CloseHandle(hFile);
Break;
end;
// wait for file
Sleep(50);
end;
end;
procedure TDirWatchThread.Execute;
var
NotifyData: PFILE_NOTIFY_INFORMATION;
Events: array [0..1] of THandle;
ErrorMessage: string;
WaitResult: DWORD;
NextEntry: Cardinal;
FileName: PWideChar;
Overlap: TOverlapped;
ResSize: Cardinal;
begin
FillChar(Overlap, SizeOf(TOverlapped), 0);
Overlap.hEvent := FChangeEvent;
// set the array of events
Events[0] := FChangeEvent;
Events[1] := FAbortEvent;
while not Terminated do
try
if ReadDirectoryChangesW(FDirHandle, FIOResult, FBufferSize, FWatchSubtree, FFilter, @ResSize, @Overlap, nil) then
begin
WaitResult := WaitForMultipleObjects(Length(Events), @Events, FALSE, INFINITE);
// check if we have terminated the thread
if WaitResult <> WAIT_OBJECT_0 then
begin
Terminate;
Exit;
end;
if WaitResult = WAIT_OBJECT_0 then
begin
if GetOverlappedResult(FDirHandle, Overlap, ResSize, False) then
begin
NotifyData := FIOResult;
// check overflow
if ResSize = 0 then
begin
ErrorMessage := SysErrorMessage(ERROR_NOTIFY_ENUM_DIR);
SignalError(ErrorMessage, ERROR_NOTIFY_ENUM_DIR);
end;
repeat
NextEntry := NotifyData^.NextEntryOffset;
// get memory for filename and fill it with data
GetMem(FileName, NotifyData^.FileNameLength + SizeOf(WideChar));
Move(NotifyData^.FileName, Pointer(FileName)^, NotifyData^.FileNameLength);
PWord(Cardinal(FileName) + NotifyData^.FileNameLength)^ := 0;
// send the message about the filename information and advance to the next entry
PostMessage(FWndHandle, WM_DIRWATCH_NOTIFY, NotifyData^.Action, LParam(FileName));
PByte(NotifyData) := PByte(DWORD(NotifyData) + NextEntry);
until (NextEntry = 0);
end
else
begin
ErrorMessage := SysErrorMessage(GetLastError);
SignalError(ErrorMessage);
end;
end;
end
else
begin
ErrorMessage := SysErrorMessage(GetLastError);
SignalError(ErrorMessage);
end;
except
on E :Exception do
begin
ErrorMessage := E.Message;
SignalError(ErrorMessage);
end;
end;
end;
procedure TDirWatchThread.SignalError(const ErrorMessage: string; ErrorCode: Cardinal);
var
ErrorMsg: PChar;
MessageSize: Integer;
begin
if ErrorCode = 0 then
ErrorCode := GetLastError;
// calculate the size of the error message buffer
MessageSize := Length(ErrorMessage) * SizeOf(Char) + SizeOf(WideChar);
GetMem(ErrorMsg, MessageSize);
StrPCopy(ErrorMsg, ErrorMessage);
PostMessage(FWndHandle, WM_DIRWATCH_ERROR, ErrorCode, LPARAM(ErrorMsg));
end;
constructor TDirWatchThread.Create(const Directory: string;
const WndHandle: HWND;
const BufferSize: Integer;
const AbortEvent: THandle;
const TypeFilter: Cardinal;
const aWatchSubTree: Boolean);
begin
//
// Retrieve proc pointer, open directory to
// watch and allocate buffer for notification data.
// (note, it is done before calling inherited
// create (that calls BeginThread) so any exception
// will be still raised in caller's thread)
//
FDirHandle := CreateFile(PChar(Directory),
FILE_LIST_DIRECTORY,
FILE_SHARE_READ OR
FILE_SHARE_DELETE OR
FILE_SHARE_WRITE,
nil, OPEN_EXISTING,
FILE_FLAG_BACKUP_SEMANTICS OR
FILE_FLAG_OVERLAPPED,
0);
if FDirHandle = INVALID_HANDLE_VALUE then
raise Exception.CreateFmt(cErrorCreateWatchError, [Directory, GetLastError]);
FChangeEvent := CreateEvent(nil, FALSE, FALSE, nil);
FAbortEvent := AbortEvent;
// allocate the buffer memory
FBufferSize := BufferSize * SizeOf(TFILE_NOTIFY_INFORMATION);
GetMem(FIOResult, FBufferSize);
FWatchSubTree := aWatchSubtree;
FWndHandle := WndHandle;
FDirectory := Directory;
FFilter := TypeFilter;
inherited Create(False);
end;
destructor TDirWatchThread.Destroy;
begin
CloseHandle(FChangeEvent);
if FDirHandle <> INVALID_HANDLE_VALUE then
CloseHandle(FDirHandle);
if Assigned(FIOResult) then
FreeMem(FIOResult);
inherited Destroy;
end;
{ TFnugryDirWatch }
procedure TDirectoryWatch.AllocWatchThread;
begin
if FWatchThread = nil then
begin
FAbortEvent := CreateEvent(nil, FALSE, FALSE, nil);
FWatchThread := TDirWatchThread.Create(Directory,
FWndHandle,
FBufferSize,
FAbortEvent,
MakeFilter,
WatchSubtree);
end;
end;
procedure TDirectoryWatch.ReleaseWatchThread;
var
AResult: Cardinal;
ThreadHandle: THandle;
begin
if FWatchThread <> nil then
begin
ThreadHandle := FWatchThread.Handle;
// set and close event
SetEvent(FAbortEvent);
// wait and block until thread is finished
AResult := WaitForSingleObject(ThreadHandle, cShutdownTimeout);
// check if we timed out
if AResult = WAIT_TIMEOUT then
TerminateThread(ThreadHandle, 0);
FreeAndNil(FWatchThread);
CloseHandle(FAbortEvent);
end;
end;
procedure TDirectoryWatch.RestartWatchThread;
begin
Stop;
Start;
end;
function TDirectoryWatch.Running: Boolean;
begin
Result := FWatchThread <> nil;
end;
procedure TDirectoryWatch.DeallocateHWnd(Wnd: HWND);
var
Instance: Pointer;
begin
Instance := Pointer(GetWindowLong(Wnd, GWL_WNDPROC));
if Instance <> @DefWindowProc then
begin
{ make sure we restore the default
windows procedure before freeing memory }
SetWindowLong(Wnd, GWL_WNDPROC, Longint(@DefWindowProc));
FreeObjectInstance(Instance);
end;
DestroyWindow(Wnd);
end;
destructor TDirectoryWatch.Destroy;
begin
Stop;
DeallocateHWnd(FWndHandle);
inherited Destroy;
end;
constructor TDirectoryWatch.Create;
begin
FWndHandle := AllocateHWnd(WatchWndProc);
FWatchSubtree := True;
FBufferSize := 32;
// construct the default watch actions and options
FWatchActions := [waAdded, waRemoved, waModified, waRenamedOld, waRenamedNew];
FWatchOptions := [woFileName, woDirName, woAttributes, woSize, woLastWrite,
woLastAccess, woCreation, woSecurity];
end;
procedure TDirectoryWatch.SetWatchActions(const Value: TWatchActions);
begin
if FWatchActions <> Value then
begin
FWatchActions := Value;
if Running then
RestartWatchThread;
Change;
end;
end;
procedure TDirectoryWatch.SetWatchOptions(const Value: TWatchOptions);
begin
if FWatchOptions <> Value then
begin
FWatchOptions := Value;
if Running then
RestartWatchThread;
Change;
end;
end;
procedure TDirectoryWatch.WatchWndProc(var Msg :TMessage);
var
ErrorCode: Cardinal;
ErrorMessage: string;
begin
case Msg.msg of
WM_DIRWATCH_NOTIFY:
//
// Retrieve notify data and forward
// the event to TDirectoryWatch's notify
// handler. Free filename string (allocated
// in WatchThread's notify handler.)
//
begin
try
Notify(Msg.wParam, WideCharToString(PWideChar(Msg.lParam)));
finally
if Msg.lParam <> 0 then
FreeMem(Pointer(Msg.lParam));
end;
end;
WM_DIRWATCH_ERROR:
//
// Disable dir watch and re-raise
// exception on error
//
begin
try
ErrorMessage := StrPas(PChar(Msg.lParam));
ErrorCode := Msg.WParam;
if Assigned(FOnError) then
FOnError(Self, ErrorCode, ErrorMessage);
finally
if Msg.lParam <> 0 then
FreeMem(Pointer(Msg.lParam));
end;
end;
//
// pass all other messages down the line
//
else
begin
Msg.Result := DefWindowProc(FWndHandle, Msg.Msg, Msg.wParam, Msg.lParam);
Exit;
end;
end;
end;
function TDirectoryWatch.MakeFilter: Integer;
const
FilterFlags: array [TWatchOption] of Integer = (FILE_NOTIFY_CHANGE_FILE_NAME,
FILE_NOTIFY_CHANGE_DIR_NAME,
FILE_NOTIFY_CHANGE_ATTRIBUTES,
FILE_NOTIFY_CHANGE_SIZE,
FILE_NOTIFY_CHANGE_LAST_WRITE,
FILE_NOTIFY_CHANGE_LAST_ACCESS,
FILE_NOTIFY_CHANGE_CREATION,
FILE_NOTIFY_CHANGE_SECURITY);
var
Flag: TWatchOption;
begin
Result := 0;
for Flag in FWatchOptions do
Result := Result or FilterFlags[Flag];
end;
procedure TDirectoryWatch.SetWatchSubTree(const Value :Boolean);
begin
if Value <> FWatchSubtree then
begin
FWatchSubtree := Value;
if Running then
RestartWatchThread;
Change;
end;
end;
procedure TDirectoryWatch.Start;
begin
if FDirectory = '' then
raise Exception.Create('Please specify a directory to watch');
if not Running then
begin
AllocWatchThread;
Change;
end;
end;
procedure TDirectoryWatch.Stop;
begin
if Running then
begin
ReleaseWatchThread;
Change;
end;
end;
procedure TDirectoryWatch.SetDirectory(const Value: string);
begin
if StrIComp(PChar(Trim(Value)), PChar(FDirectory)) <> 0 then
begin
FDirectory := Trim(Value);
if Running then
RestartWatchThread;
Change;
end;
end;
procedure TDirectoryWatch.Change;
begin
if Assigned(FOnChange) then
FOnChange(Self);
end;
procedure TDirectoryWatch.Notify(const Action: Integer; const FileName: string);
begin
if Assigned(FOnNotify) then
if TWatchAction(Action - 1) in FWatchActions then
FOnNotify(Self, TWatchAction(Action - 1), FileName);
end;
end.