-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinotify.php
More file actions
538 lines (460 loc) · 15 KB
/
inotify.php
File metadata and controls
538 lines (460 loc) · 15 KB
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
<?PHP
/**
* qcEvents - inotify-Event-Handler
* Copyright (C) 2012 Bernd Holzmueller <bernd@quarxconnect.de>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* 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. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
**/
// Make sure the inotify-extension was loaded
if (!extension_loaded ('inotify') && (!function_exists ('dl') || !@dl ('inotify.so'))) {
trigger_error ('inotify-extension not loaded', E_USER_WARNING);
return;
}
require_once ('qcEvents/Interface/Loop.php');
require_once ('qcEvents/Hookable.php');
/**
* inotify
* -------
* Event-Handler to monitor inode-changes
*
* @class qcEvents_inotify
* @package qcEvents
* @revision 02
**/
class qcEvents_inotify extends qcEvents_Hookable implements qcEvents_Interface_Loop {
/* File-Operations */
const MASK_ACCESS = 1; // File was accessed (read)
const MASK_MODIFY = 2; // File was modified
const MASK_ATTRIB = 4; // Metadata of file was changed
const MASK_CLOSE_WRITE = 8; // Write-Handle was closed
const MASK_CLOSE_READ = 16; // Read-Handle was closed
const MASK_OPEN = 32; // File was openend
const MASK_DELETE = 1024; // Watched file or directory was removed
const MASK_MOVE = 2048; // Watched file or directory was moved
/* File-Meta-Operations */
const MASK_CLOSE = 24; // qcEvents_inotify::MASK_CLOSE_WRITE | qcEvents_inotify::MASK_CLOSE_READ;
/* Directory-Operations */
const MASK_MOVE_FROM = 64; // File was moved out of watched directory
const MASK_MOVE_TO = 128; // File was moved into watched directory
const MASK_CREATE = 256; // File was created in watched directory
const MASK_REMOVE = 512; // File was removed from watched directory
/* Directory-Meta-Operations */
const MASK_MOVE_ANY = 192; // qcEvents_inotify::MASK_MOVE_FROM | qcEvents_inotify::MASK_MOVE_TO;
/* Meta-Operations */
const MASK_ALL = 4095; // Watch all events
private static $inotifyGenerations = 0;
private static $inotifyEvents = array ();
/* Our event-base */
private $eventBase = null;
// Internal inotify-handle
private $inotify = null;
private $inotifyGeneration = 0;
// Path to watch
private $inotifyPath = '';
// Mask for watch
private $inotifyMask = 0;
// Inotify-Reference for this handle
private $inotifyDescriptor = null;
// {{{ __construct
/**
* Create a new inotify-Handler for a given path
*
* @param qcEvents_Base $Base
* @param string $Path
* @param int $Mask (optional) Type of events to watch
*
* @access friendly
* @return void
**/
function __construct (qcEvents_Base $Base, $Path, $Mask = self::MASK_ALL) {
// Store the mask
$this->inotifyMask = $Mask;
// Assign the event-base
$this->setEventBase ($Base);
// Set path
$this->setWatchedPath ($Path);
}
// }}}
// {{{ getWatchedPath
/**
* Retrive the path being watched
*
* @access public
* @return string
**/
public function getWatchedPath () {
return $this->inotifyPath;
}
// }}}
// {{{ setWatchedPath
/**
* Change the path being watched
*
* @param string $Path
*
* @access public
* @return bool
**/
public function setWatchedPath ($Path) {
// Make sure the path exists
if (!file_exists ($Path))
return false;
// Unregister any current watcher
if ($this->inotifyDescriptor !== null) {
inotify_rm_watch ($this->inotify, $this->inotifyDescriptor);
unset (self::$inotifyEvents [$this->inotifyGeneration][$this->inotifyDescriptor]);
}
// Change the path
$this->inotifyPath = $Path;
// Register again (if possible)
if (is_resource ($inotify = $this->getInotify ())) {
$this->inotifyDescriptor = inotify_add_watch ($this->inotify, $this->inotifyPath, $this->inotifyMask);
self::$inotifyEvents [$this->inotifyGeneration][$this->inotifyDescriptor] = $this;
} else
trigger_error ('Could not fetch inotify', E_USER_WARNING);
return true;
}
// }}}
// {{{ getReadFD
/**
* Retrive the stream-resource to watch for reads
*
* @access public
* @return resource May return NULL if no reads should be watched
**/
public function getReadFD () {
return $this->inotify;
}
// }}}
// {{{ getWriteFD
/**
* Retrive the stream-resource to watch for writes
*
* @access public
* @return resource May return NULL if no writes should be watched
**/
public function getWriteFD () {
return null;
}
// }}}
// {{{ getErrorFD
/**
* Retrive an additional stream-resource to watch for errors
* @remark Read-/Write-FDs are always monitored for errors
*
* @access public
* @return resource May return NULL if no additional stream-resource should be watched
**/
public function getErrorFD () {
return null;
}
// }}}
private function getInotify () {
// Make sure we have an event-base
if (!$this->eventBase)
return null;
// Check if we already have a source
if ($this->inotify)
return $this->inotify;
// Scan existing events for inotify
foreach ($this->eventBase->getEvents () as $Event)
if (($Event instanceof qcEvents_inotify) && is_resource ($Event->inotify)) {
$this->inotify = $Event->inotify;
$this->inotifyGeneration = $Event->inotifyGeneration;
break;
}
// Create a new inotify
if (!is_resource ($this->inotify)) {
$this->inotify = inotify_init ();
$this->inotifyGeneration = self::$inotifyGenerations++;
self::$inotifyEvents [$this->inotifyGeneration] = array ();
$this->eventBase->addEvent ($this);
}
// Return the source
return $this->inotify;
}
// {{{ scanCreated
/**
* Scan a watched directory for dirs and files and fake callback-events
*
* @access public
* @return void
**/
public function scanCreated () {
// Make sure this is a directory
if (!is_dir ($this->inotifyPath))
return;
// Open Directory
if (!is_object ($d = dir ($this->inotifyPath)))
return;
while ($f = $d->read ())
if (($f != '.') && ($f != '..')) {
if ($this->___callback ('inotifyEvent', self::MASK_CREATE, 0, $f) === true)
continue;
$this->___callback ('directoryCreate', $f, 0);
}
$d->close ();
}
// }}}
// {{{ getEventBase
/**
* Retrive the handle of the current event-loop-handler
*
* @access public
* @return qcEvents_Base May be NULL if none is assigned
*
* @remark This is implemented by qcEvents_Trait_Parented
**/
public function getEventBase () {
return $this->eventBase;
}
// }}}
// {{{ setEventBase
/**
* Set a new event-loop-handler
*
* @param qcEvents_Base $Base
*
* @access public
* @return void
**/
public function setEventBase (qcEvents_Base $Base) {
// Don't do anything if the handler didn't change
if ($this->eventBase === $Base)
return null;
// Unbind from the event-base
$this->unsetEventBase ();
// Assign the new event-base
$this->eventBase = $Base;
// Check if our target exists
if (!file_exists ($this->inotifyPath))
return;
// Find a new inotify
$this->getInotify ();
// Register our watch
if ($this->inotifyPath) {
$this->inotifyDescriptor = inotify_add_watch ($this->inotify, $this->inotifyPath, $this->inotifyMask);
self::$inotifyEvents [$this->inotifyGeneration][$this->inotifyDescriptor] = $this;
}
}
// }}}
// {{{ unsetEventBase
/**
* Remove any assigned event-loop-handler
*
* @access public
* @return void
*
* @remark This is implemented by qcEvents_Trait_Parented
**/
public function unsetEventBase () {
if ($this->inotifyDescriptor !== null) {
inotify_rm_watch ($this->inotify, $this->inotifyDescriptor);
unset (self::$inotifyEvents [$this->inotifyGeneration][$this->inotifyDescriptor]);
if (count (self::$inotifyEvents [$this->inotifyGeneration]) == 0)
fclose ($this->inotify);
}
$this->inotifyDescriptor = null;
$this->inotify = null;
$this->eventBase = null;
}
// }}}
// {{{ raiseRead
/**
* Handle a read-event
*
* @access public
* @return void
**/
public final function raiseRead () {
foreach (inotify_read ($this->inotify) as $Event) {
// Check if we have an event-handle for this watch-descriptor
if (!isset (self::$inotifyEvents [$this->inotifyGeneration][$Event ['wd']])) {
trigger_error ('Missing watch-descriptor for captured event');
continue;
}
// Fire up the event
$H = self::$inotifyEvents [$this->inotifyGeneration][$Event ['wd']];
if ($H->___callback ('inotifyEvent', $Event ['mask'], $Event ['cookie'], $Event ['name']) === true)
continue;
// Directory-Events
if ((($Event ['mask'] & self::MASK_MOVE_FROM) == self::MASK_MOVE_FROM) ||
(($Event ['mask'] & self::MASK_REMOVE) == self::MASK_REMOVE))
$H->___callback ('directoryRemove', $Event ['name'], $Event ['cookie']);
if ((($Event ['mask'] & self::MASK_MOVE_TO) == self::MASK_MOVE_TO) ||
(($Event ['mask'] & self::MASK_CREATE) == self::MASK_CREATE))
$H->___callback ('directoryCreate', $Event ['name'], $Event ['cookie']);
// File-Events
if (($Event ['mask'] & self::MASK_ACCESS) == self::MASK_ACCESS)
$H->___callback ('fileAccess', $Event ['name'], $Event ['cookie']);
if (($Event ['mask'] & self::MASK_MODIFY) == self::MASK_MODIFY)
$H->___callback ('fileModify', $Event ['name'], $Event ['cookie']);
if (($Event ['mask'] & self::MASK_ATTRIB) == self::MASK_ATTRIB)
$H->___callback ('fileMetaChange', $Event ['name'], $Event ['cookie']);
if (($Event ['mask'] & self::MASK_CLOSE_WRITE) == self::MASK_CLOSE_WRITE)
$H->___callback ('fileClose', $Event ['name'], $Event ['cookie']);
if (($Event ['mask'] & self::MASK_CLOSE_READ) == self::MASK_CLOSE_READ)
$H->___callback ('fileClose', $Event ['name'], $Event ['cookie']);
if (($Event ['mask'] & self::MASK_OPEN) == self::MASK_OPEN)
$H->___callback ('fileOpen', $Event ['name'], $Event ['cookie']);
if (($Event ['mask'] & self::MASK_DELETE) == self::MASK_DELETE)
$H->___callback ('fileDelete', $Event ['name'], $Event ['cookie']);
if (($Event ['mask'] & self::MASK_MOVE) == self::MASK_MOVE)
$H->___callback ('fileMove', $Event ['name'], $Event ['cookie']);
}
}
// }}}
// {{{ raiseWrite
/**
* Callback: The Event-Loop detected a write-event
*
* @access public
* @return void
**/
public function raiseWrite () { }
// }}}
// {{{ raiseError
/**
* Callback: The Event-Loop detected an error-event
*
* @param resource $fd
*
* @access public
* @return void
**/
public function raiseError ($fd) { }
// }}}
// {{{ inotifyEvent
/**
* Capture an generic inotify-Event
*
* @param int $Mask
* @param int $Cookie
* @param string $Name
*
* @access protected
* @return bool If TRUE no further don't fire up other callbacks
**/
protected function inotifyEvent ($Mask, $Cookie, $Name) { }
// }}}
// {{{ directoryCreate
/**
* A file was created in the watched directory (created or moved to)
*
* @param string $Name
* @param int $Cookie
*
* @access protected
* @return void
**/
protected function directoryCreate ($Name, $Cookie) { }
// }}}
// {{{ directoryRemove
/**
* A file was removed from the watched directory (deleted or moved away)
*
* @param string $Name
* @param int $Cookie
*
* @access protected
* @return void
**/
protected function directoryRemove ($Name, $Cookie) { }
// }}}
// {{{ fileAccess
/**
* The watched file was accessed
*
* @param string $Name
* @param int $Cookie
*
* @access protected
* @return void
**/
protected function fileAccess ($Name, $Cookie) { }
// }}}
// {{{ fileModify
/**
* The watched file was modified
*
* @param string $Name
* @param int $Cookie
*
* @access protected
* @return void
**/
protected function fileModify ($Name, $Cookie) { }
// }}}
// {{{ fileMetaChange
/**
* Meta-Data of watched file was changed
*
* @param string $Name
* @param int $Cookie
*
* @access protected
* @return void
**/
protected function fileMetaChange ($Name, $Cookie) { }
// }}}
// {{{ fileClose
/**
* The watched file was closed
*
* @param string $Name
* @param int $Cookie
*
* @access protected
* @return void
**/
protected function fileClose ($Name, $Cookie) { }
// }}}
// {{{ fileOpen
/**
* The watched file was opened
*
* @param string $Name
* @param int $Cookie
*
* @access protected
* @return void
**/
protected function fileOpen ($Name, $Cookie) { }
// }}}
// {{{ fileDelete
/**
* The watched file was deleted
*
* @param string $Name
* @param int $Cookie
*
* @access protected
* @return void
**/
protected function fileDelete ($Name, $Cookie) { }
// }}}
// {{{ fileMove
/**
* The watched file was moved to another location
*
* @param string $Name
* @param int $Cookie
*
* @access protected
* @return void
**/
protected function fileMove ($Name, $Cookie) { }
// }}}
}
?>