1 ;;; filenotify.el --- watch files for changes on disk -*- lexical-binding:t -*-
3 ;; Copyright (C) 2013-2016 Free Software Foundation, Inc.
5 ;; Author: Michael Albinus <michael.albinus@gmx.de>
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software: you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation, either version 3 of the License, or
12 ;; (at your option) any later version.
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;; This package is an abstraction layer from the different low-level
25 ;; file notification packages `inotify', `kqueue', `gfilenotify' and
30 (defconst file-notify--library
32 ((featurep 'inotify
) 'inotify
)
33 ((featurep 'kqueue
) 'kqueue
)
34 ((featurep 'gfilenotify
) 'gfilenotify
)
35 ((featurep 'w32notify
) 'w32notify
))
36 "Non-nil when Emacs has been compiled with file notification support.
37 The value is the name of the low-level file notification package
38 to be used for local file systems. Remote file notifications
39 could use another implementation.")
41 (defvar file-notify-descriptors
(make-hash-table :test
'equal
)
42 "Hash table for registered file notification descriptors.
43 A key in this hash table is the descriptor as returned from
44 `inotify', `kqueue', `gfilenotify', `w32notify' or a file name
45 handler. The value in the hash table is a list
47 (DIR (FILE . CALLBACK) (FILE . CALLBACK) ...)
49 Several values for a given DIR happen only for `inotify', when
50 different files from the same directory are watched.")
52 (defun file-notify--rm-descriptor (descriptor)
53 "Remove DESCRIPTOR from `file-notify-descriptors'.
54 DESCRIPTOR should be an object returned by `file-notify-add-watch'.
55 If it is registered in `file-notify-descriptors', a stopped event is sent."
56 (let* ((desc (if (consp descriptor
) (car descriptor
) descriptor
))
57 (file (if (consp descriptor
) (cdr descriptor
)))
58 (registered (gethash desc file-notify-descriptors
))
59 (dir (car registered
)))
61 (when (consp registered
)
62 ;; Send `stopped' event.
63 (dolist (entry (cdr registered
))
66 ,(or (and (stringp (car entry
))
67 (expand-file-name (car entry
) dir
))
70 ;; Modify `file-notify-descriptors'.
72 (remhash desc file-notify-descriptors
)
74 (delete (assoc file
(cdr registered
)) (cdr registered
)))
75 (if (null (cdr registered
))
76 (remhash desc file-notify-descriptors
)
77 (puthash desc registered file-notify-descriptors
))))))
79 ;; This function is used by `inotify', `kqueue', `gfilenotify' and
80 ;; `w32notify' events.
82 (defun file-notify-handle-event (event)
83 "Handle file system monitoring event.
84 If EVENT is a filewatch event, call its callback. It has the format
86 (file-notify (DESCRIPTOR ACTIONS FILE [FILE1-OR-COOKIE]) CALLBACK)
88 Otherwise, signal a `file-notify-error'."
90 ;;(message "file-notify-handle-event %S" event)
91 (if (and (eq (car event
) 'file-notify
)
92 (>= (length event
) 3))
93 (funcall (nth 2 event
) (nth 1 event
))
94 (signal 'file-notify-error
95 (cons "Not a valid file-notify event" event
))))
97 ;; Needed for `inotify' and `w32notify'. In the latter case, COOKIE is nil.
98 (defvar file-notify--pending-event nil
99 "A pending file notification events for a future `renamed' action.
100 It is a form ((DESCRIPTOR ACTION FILE [FILE1-OR-COOKIE]) CALLBACK).")
102 (defun file-notify--event-file-name (event)
103 "Return file name of file notification event, or nil."
106 (or (and (stringp (nth 2 event
)) (nth 2 event
)) "")
107 (car (gethash (car event
) file-notify-descriptors
)))))
109 ;; Only `gfilenotify' could return two file names.
110 (defun file-notify--event-file1-name (event)
111 "Return second file name of file notification event, or nil.
112 This is available in case a file has been moved."
113 (and (stringp (nth 3 event
))
116 (nth 3 event
) (car (gethash (car event
) file-notify-descriptors
))))))
118 ;; Cookies are offered by `inotify' only.
119 (defun file-notify--event-cookie (event)
120 "Return cookie of file notification event, or nil.
121 This is available in case a file has been moved."
124 ;; `inotify' returns the same descriptor when the file (directory)
125 ;; uses the same inode. We want to distinguish, and apply a virtual
126 ;; descriptor which make the difference.
127 (defun file-notify--descriptor (desc file
)
128 "Return the descriptor to be used in `file-notify-*-watch'.
129 For `gfilenotify' and `w32notify' it is the same descriptor as
130 used in the low-level file notification package."
131 (if (and (natnump desc
) (eq file-notify--library
'inotify
))
135 (file-name-nondirectory file
)
136 (gethash desc file-notify-descriptors
)))))
139 ;; The callback function used to map between specific flags of the
140 ;; respective file notifications, and the ones we return.
141 (defun file-notify-callback (event)
142 "Handle an EVENT returned from file notification.
143 EVENT is the cadr of the event in `file-notify-handle-event'
144 \(DESCRIPTOR ACTIONS FILE [FILE1-OR-COOKIE])."
145 (let* ((desc (car event
))
146 (registered (gethash desc file-notify-descriptors
))
147 (actions (nth 1 event
))
148 (file (file-notify--event-file-name event
))
149 file1 callback pending-event stopped
)
151 ;; Make actions a list.
152 (unless (consp actions
) (setq actions
(cons actions nil
)))
154 ;; Loop over registered entries. In fact, more than one entry
155 ;; happens only for `inotify'.
156 (dolist (entry (cdr registered
))
158 ;; Check, that event is meant for us.
159 (unless (setq callback
(cdr entry
))
162 ;; Loop over actions. In fact, more than one action happens only
163 ;; for `inotify' and `kqueue'.
164 (dolist (action actions
)
166 ;; Send pending event, if it doesn't match.
167 (when (and file-notify--pending-event
168 ;; The cookie doesn't match.
169 (not (eq (file-notify--event-cookie
170 (car file-notify--pending-event
))
171 (file-notify--event-cookie event
)))
174 (and (eq (nth 1 (car file-notify--pending-event
))
176 (not (eq action
'moved-to
)))
178 (and (eq (nth 1 (car file-notify--pending-event
))
180 (not (eq action
'renamed-to
)))))
181 (setq pending-event file-notify--pending-event
182 file-notify--pending-event nil
)
183 (setcar (cdar pending-event
) 'deleted
))
185 ;; Map action. We ignore all events which cannot be mapped.
189 '(attribute-changed changed created deleted renamed
))
191 ((memq action
'(moved rename
))
192 (setq file1
(file-notify--event-file1-name event
))
194 ((eq action
'ignored
)
195 (setq stopped t actions nil
))
196 ((memq action
'(attrib link
)) 'attribute-changed
)
197 ((memq action
'(create added
)) 'created
)
198 ((memq action
'(modify modified write
)) 'changed
)
199 ((memq action
'(delete delete-self move-self removed
)) 'deleted
)
200 ;; Make the event pending.
201 ((memq action
'(moved-from renamed-from
))
202 (setq file-notify--pending-event
203 `((,desc
,action
,file
,(file-notify--event-cookie event
))
206 ;; Look for pending event.
207 ((memq action
'(moved-to renamed-to
))
208 (if (null file-notify--pending-event
)
211 file
(file-notify--event-file-name
212 (car file-notify--pending-event
)))
213 ;; If the source is handled by another watch, we
214 ;; must fire the rename event there as well.
215 (when (not (equal (file-notify--descriptor desc file1
)
216 (file-notify--descriptor
217 (caar file-notify--pending-event
)
218 (file-notify--event-file-name
219 file-notify--pending-event
))))
221 `((,(caar file-notify--pending-event
)
222 renamed
,file
,file1
)
223 ,(cadr file-notify--pending-event
))))
224 (setq file-notify--pending-event nil
)
227 ;; Apply pending callback.
231 (file-notify--descriptor
233 (file-notify--event-file-name file-notify--pending-event
)))
234 (funcall (cadr pending-event
) (car pending-event
))
235 (setq pending-event nil
))
237 ;; Check for stopped.
243 (memq action
'(deleted renamed
))
244 (= (length (cdr registered
)) 1)
247 (file-name-nondirectory file
)
248 (file-name-nondirectory (car registered
)))
250 (file-name-nondirectory file
)
251 (car (cadr registered
)))))))
256 ;; If there is no relative file name for that watch,
257 ;; we watch the whole directory.
261 (nth 0 entry
) (file-name-nondirectory file
))
262 ;; Directory matches.
264 (file-name-nondirectory file
)
265 (file-name-nondirectory (car registered
)))
269 (nth 0 entry
) (file-name-nondirectory file1
)))))
271 ;;"file-notify-callback %S %S %S %S %S"
272 ;;(file-notify--descriptor desc file) action file file1 registered)
276 `(,(file-notify--descriptor desc file
) ,action
,file
,file1
))
279 `(,(file-notify--descriptor desc file
) ,action
,file
)))))
281 ;; Modify `file-notify-descriptors'.
283 (file-notify-rm-watch (file-notify--descriptor desc file
))))))
285 ;; `kqueue', `gfilenotify' and `w32notify' return a unique descriptor
286 ;; for every `file-notify-add-watch', while `inotify' returns a unique
287 ;; descriptor per inode only.
288 (defun file-notify-add-watch (file flags callback
)
289 "Add a watch for filesystem events pertaining to FILE.
290 This arranges for filesystem events pertaining to FILE to be reported
291 to Emacs. Use `file-notify-rm-watch' to cancel the watch.
293 The returned value is a descriptor for the added watch. If the
294 file cannot be watched for some reason, this function signals a
295 `file-notify-error' error.
297 FLAGS is a list of conditions to set what will be watched for. It can
298 include the following symbols:
300 `change' -- watch for file changes
301 `attribute-change' -- watch for file attributes changes, like
302 permissions or modification time
304 If FILE is a directory, `change' watches for file creation or
305 deletion in that directory. This does not work recursively.
307 When any event happens, Emacs will call the CALLBACK function passing
308 it a single argument EVENT, which is of the form
310 (DESCRIPTOR ACTION FILE [FILE1])
312 DESCRIPTOR is the same object as the one returned by this function.
313 ACTION is the description of the event. It could be any one of the
316 `created' -- FILE was created
317 `deleted' -- FILE was deleted
318 `changed' -- FILE has changed
319 `renamed' -- FILE has been renamed to FILE1
320 `attribute-changed' -- a FILE attribute was changed
321 `stopped' -- watching FILE has been stopped
323 FILE is the name of the file whose event is being reported."
325 (unless (stringp file
)
326 (signal 'wrong-type-argument
`(,file
)))
327 (setq file
(expand-file-name file
))
328 (unless (and (consp flags
)
329 (null (delq 'change
(delq 'attribute-change
(copy-tree flags
)))))
330 (signal 'wrong-type-argument
`(,flags
)))
331 (unless (functionp callback
)
332 (signal 'wrong-type-argument
`(,callback
)))
334 (let* ((handler (find-file-name-handler file
'file-notify-add-watch
))
335 (dir (directory-file-name
336 (if (file-directory-p file
)
338 (file-name-directory file
))))
339 desc func l-flags registered entry
)
341 (unless (file-directory-p dir
)
342 (signal 'file-notify-error
`("Directory does not exist" ,dir
)))
345 ;; A file name handler could exist even if there is no local
346 ;; file notification support.
348 handler
'file-notify-add-watch
349 ;; kqueue does not report file changes in
350 ;; directory monitor. So we must watch the file
352 (if (eq file-notify--library
'kqueue
) file dir
)
355 ;; Check, whether Emacs has been compiled with file notification
357 (unless file-notify--library
358 (signal 'file-notify-error
359 '("No file notification package available")))
361 ;; Determine low-level function to be called.
364 ((eq file-notify--library
'inotify
) 'inotify-add-watch
)
365 ((eq file-notify--library
'kqueue
) 'kqueue-add-watch
)
366 ((eq file-notify--library
'gfilenotify
) 'gfile-add-watch
)
367 ((eq file-notify--library
'w32notify
) 'w32notify-add-watch
)))
369 ;; Determine respective flags.
370 (if (eq file-notify--library
'gfilenotify
)
371 (setq l-flags
(append '(watch-mounts send-moved
) flags
))
372 (when (memq 'change flags
)
376 ((eq file-notify--library
'inotify
)
377 '(create delete delete-self modify move-self move
))
378 ((eq file-notify--library
'kqueue
)
379 '(create delete write extend rename
))
380 ((eq file-notify--library
'w32notify
)
381 '(file-name directory-name size last-write-time
)))))
382 (when (memq 'attribute-change flags
)
384 ((eq file-notify--library
'inotify
) 'attrib
)
385 ((eq file-notify--library
'kqueue
) 'attrib
)
386 ((eq file-notify--library
'w32notify
) 'attributes
))
389 ;; Call low-level function.
391 func
(if (eq file-notify--library
'kqueue
) file dir
)
392 l-flags
'file-notify-callback
)))
394 ;; Modify `file-notify-descriptors'.
395 (setq file
(unless (file-directory-p file
) (file-name-nondirectory file
))
396 desc
(if (consp desc
) (car desc
) desc
)
397 registered
(gethash desc file-notify-descriptors
)
398 entry
`(,file .
,callback
))
399 (unless (member entry
(cdr registered
))
400 (puthash desc
`(,dir
,entry .
,(cdr registered
)) file-notify-descriptors
))
402 ;; Return descriptor.
403 (file-notify--descriptor desc file
)))
405 (defun file-notify-rm-watch (descriptor)
406 "Remove an existing watch specified by its DESCRIPTOR.
407 DESCRIPTOR should be an object returned by `file-notify-add-watch'."
408 (let* ((desc (if (consp descriptor
) (car descriptor
) descriptor
))
409 (file (if (consp descriptor
) (cdr descriptor
)))
410 (registered (gethash desc file-notify-descriptors
))
411 (dir (car registered
))
412 (handler (and (stringp dir
)
413 (find-file-name-handler dir
'file-notify-rm-watch
))))
416 ;; Call low-level function.
418 (and (= (length (cdr registered
)) 1)
419 (assoc file
(cdr registered
))))
422 ;; A file name handler could exist even if there is no local
423 ;; file notification support.
424 (funcall handler
'file-notify-rm-watch descriptor
)
428 ((eq file-notify--library
'inotify
) 'inotify-rm-watch
)
429 ((eq file-notify--library
'kqueue
) 'kqueue-rm-watch
)
430 ((eq file-notify--library
'gfilenotify
) 'gfile-rm-watch
)
431 ((eq file-notify--library
'w32notify
) 'w32notify-rm-watch
))
433 (file-notify-error nil
)))
435 ;; Modify `file-notify-descriptors'.
436 (file-notify--rm-descriptor descriptor
))))
438 (defun file-notify-valid-p (descriptor)
439 "Check a watch specified by its DESCRIPTOR.
440 DESCRIPTOR should be an object returned by `file-notify-add-watch'."
441 (let* ((desc (if (consp descriptor
) (car descriptor
) descriptor
))
442 (file (if (consp descriptor
) (cdr descriptor
)))
443 (registered (gethash desc file-notify-descriptors
))
444 (dir (car registered
))
448 (setq handler
(find-file-name-handler dir
'file-notify-valid-p
))
450 (and (or ;; It is a directory.
452 ;; The file is registered.
453 (assoc file
(cdr registered
)))
455 ;; A file name handler could exist even if there is no
456 ;; local file notification support.
457 (funcall handler
'file-notify-valid-p descriptor
)
460 ((eq file-notify--library
'inotify
) 'inotify-valid-p
)
461 ((eq file-notify--library
'kqueue
) 'kqueue-valid-p
)
462 ((eq file-notify--library
'gfilenotify
) 'gfile-valid-p
)
463 ((eq file-notify--library
'w32notify
) 'w32notify-valid-p
))
468 (provide 'filenotify
)
470 ;;; filenotify.el ends here