Changed everything to inotify naming.
[cl-inotify.git] / inotify.lisp
index 24c173a..4a87e4d 100644 (file)
 ;; You should have received a copy of the GNU General Public License along
 ;; with this program; if not, see <http://www.gnu.org/licenses/>.
 
-(in-package #:cl-notify)
+(in-package #:cl-inotify)
 
 (defbitfield (inotify-flag :uint32)
-  (:access #.in-access)
-  (:modify #.in-modify)
-  (:attrib #.in-attrib)
-  (:close-write #.in-close-write)
+  (:access        #.in-access)
+  (:modify        #.in-modify)
+  (:attrib        #.in-attrib)
+  (:close-write   #.in-close-write)
   (:close-nowrite #.in-close-nowrite)
-  (:close #.in-close)
-  (:open #.in-open)
-  (:moved-from #.in-moved-from)
-  (:moved-to #.in-moved-to)
-  (:move #.in-move)
-  (:create #.in-create)
-  (:delete #.in-delete)
-  (:delete-self #.in-delete-self)
-  (:move-self #.in-move-self)
-  (:unmount #.in-unmount)
-  (:q-overflow #.in-q-overflow)
-  (:ignored #.in-ignored)
-  (:onlydir #.in-onlydir)
-  (:dont-follow #.in-dont-follow)
-  (:mask-add #.in-mask-add)
-  (:isdir #.in-isdir)
-  (:oneshot #.in-oneshot)
-  (:all-events #.in-all-events))
+  (:close         #.in-close)
+  (:open          #.in-open)
+  (:moved-from    #.in-moved-from)
+  (:moved-to      #.in-moved-to)
+  (:move          #.in-move)
+  (:create        #.in-create)
+  (:delete        #.in-delete)
+  (:delete-self   #.in-delete-self)
+  (:move-self     #.in-move-self)
+  (:unmount       #.in-unmount)
+  (:q-overflow    #.in-q-overflow)
+  (:ignored       #.in-ignored)
+  (:onlydir       #.in-onlydir)
+  (:dont-follow   #.in-dont-follow)
+  (:mask-add      #.in-mask-add)
+  (:isdir         #.in-isdir)
+  (:oneshot       #.in-oneshot)
+  (:all-events    #.in-all-events))
 
 (deftype inotify-add/read-flag ()
-  "Shared valid flags for the WATCH and READ-EVENT functions."
+  "Shared valid flags for the WATCH-RAW and READ-EVENT functions."
   '(member
     :access :attrib 
     :close-write :close-nowrite :close
     :move-self :moved-from :moved-to :move
     :open :all-events))
 
-(deftype inotify-add-flag ()
-  "Valid flags for the WATCH function."
-  '(or inotify-add/read-flag
-    (member :dont-follow :mask-add :oneshot :onlydir)))
-
 (deftype inotify-read-flag ()
   "Valid flags which are returned from READ-EVENT."
   '(or inotify-add/read-flag
     (member :ignored :isdir :q-overflow :unmount)))
 
+(deftype inotify-add-flag ()
+  "Valid flags for the WATCH-RAW function."
+  '(or inotify-add/read-flag
+    (member :dont-follow :mask-add :oneshot :onlydir)))
+
+(defun valid-watch-flag-p (x)
+  (and (typep x 'inotify-add-flag)
+       (not (eq :mask-add x))
+       (not (eq :oneshot x))))
+
+(defun valid-watch-flag-list-p (list)
+  (every #'valid-watch-flag-p list))
+
+(deftype watch-flag-list ()
+  "Valid flags argument for the WATCH function, a list of keywords from
+INOTIFY-ADD-FLAG.  Basically only :MASK-ADD and :ONESHOT are removed.
+The :MASK-ADD behaviour is replicated with the REPLACE-P argument; the
+:ONESHOT behaviour doesn't play well with the WATCH function design (and
+thus should be used only with WATCH-RAW)."
+  '(or (satisfies valid-watch-flag-p)
+       (and list (satisfies valid-watch-flag-list-p))))
+
 (defcfun ("inotify_init" c-inotify-init) :int
   "Initialises a new inotify event queue.")
 
@@ -97,25 +114,27 @@ NAME optionally identifies a file relative to a watched directory."
 
 ;;;; initialisation and stuff
 
-(defun read-new-value (&optional (stream *query-io*))
-  "READs a value from the STREAM and returns it (wrapped in a list)."
-  (format stream "Enter a new value: ~%")
-  (list (read *query-io*)))
+(eval-when (:compile-toplevel :load-toplevel :execute)
+  (defun read-new-value (&optional (stream *query-io*))
+    "READs a value from the STREAM and returns it (wrapped in a list)."
+    (format stream "Enter a new value: ~%")
+    (list (read *query-io*))))
 
-(defun init-endian ()
-  "Initialises the endianess for the BINARY-TYPES library.  Is automatically
+(eval-when (:compile-toplevel :load-toplevel :execute)
+  (defun init-endian ()
+    "Initialises the endianess for the BINARY-TYPES library.  Is automatically
 called when the library is loaded."
-  (setf binary-types:*endian*
-       (restart-case #+little-endian :little-endian
-                     #+big-endian :big-endian
-                     #-(or little-endian big-endian) (error "unknown endianess")
-         (use-value (value)
-           :report "Enter a correct value (either :LITTLE-ENDIAN or :BIG-ENDIAN)."
-           :interactive read-new-value
-           ;; TODO: better way to test for correct value/retry values?
-           (case value
-             ((:little-endian :big-endian) value)
-             (T (error "wrong value supplied (not :LITTLE-ENDIAN or :BIG-ENDIAN)")))))))
+    (setf binary-types:*endian*
+         (restart-case #+little-endian :little-endian
+                       #+big-endian :big-endian
+                       #-(or little-endian big-endian) (error "unknown endianess")
+                       (use-value (value)
+                         :report "Enter a correct value (either :LITTLE-ENDIAN or :BIG-ENDIAN)."
+                         :interactive read-new-value
+                         ;; TODO: better way to test for correct value/retry values?
+                         (case value
+                           ((:little-endian :big-endian) value)
+                           (T (error "wrong value supplied (not :LITTLE-ENDIAN or :BIG-ENDIAN)"))))))))
 
 ;; initialise the endianess
 (eval-when (:compile-toplevel :load-toplevel :execute)
@@ -150,13 +169,13 @@ called when the library is loaded."
                             flags sb-posix:o-nonblock)))
   (values))
 
-(defun init-unregistered-notify (notify &optional (nonblocking T))
+(defun init-unregistered-inotify (inotify &optional (nonblocking T))
   "Creates a new inotify event queue.  If NONBLOCKING is set (default),
 the file descriptor is set to non-blocking I/O."
   (let ((result (c-inotify-init)))
     (when (minusp result)
-      (error "inotify_init failed: ~A" result))
-    (with-slots (fd stream (non-block nonblocking)) notify
+      (perror "inotify_init failed"))
+    (with-slots (fd stream (non-block nonblocking)) inotify
       (unwind-protect
           ;; file descriptor is collected with auto-close
           (progn
@@ -175,40 +194,49 @@ the file descriptor is set to non-blocking I/O."
        ;; if stream is constructed, gc'ing it will cleanup the file descriptor
        (unless stream
          (sb-posix:close fd)))))
-  notify)
+  inotify)
 
-(defun make-unregistered-notify ()
-  "Creates a new unregistered NOTIFY instance."
-  (init-unregistered-notify (make-inotify-instance)))
+(defun make-unregistered-inotify ()
+  "Creates a new unregistered INOTIFY instance."
+  (init-unregistered-inotify (make-inotify-instance)))
 
-(defun close-notify (notify)
+(defun close-inotify (inotify)
   "Closes the inotify event queue."
-  (close (inotify-stream notify))
+  (close (inotify-stream inotify))
   (values))
 
-(defun watch-raw (notify pathname flags)
-  "Adds PATHNAME (either pathname or string) to be watched.  FLAGS
-determines how exactly (see inotify(7) for detailed information).
-Returns a handle which can be used with UNWATCH-RAW."
-  (let ((path (princ-to-string pathname))
-       result)
-    (setf result (c-inotify-add-watch
-                 (inotify-fd notify)
-                 path
-                 (typecase flags
-                   (list (foreign-bitfield-value 'inotify-flag flags))
-                   (keyword (foreign-bitfield-value 'inotify-flag
-                                                    (list flags)))
-                   (T flags))))
+(defun perror (prefix-string)
+  #+sbcl (sb-int:simple-perror prefix-string)
+  #-(or sbcl) (error prefix-string))
+
+(defun ensure-list (arg)
+  (if (listp arg) arg `(,arg)))
+
+(defun translate-keyword-flags (flags)
+  (typecase flags
+    ((or keyword list)
+     (foreign-bitfield-value 'inotify-flag (ensure-list flags)))
+    (T flags)))
+
+(defun watch-raw (inotify pathname flags)
+  "Adds PATHNAME (either of type PATHNAME or STRING) to be watched.  FLAGS
+determines how exactly (see inotify(7) for detailed information) and can
+be of type LIST, KEYWORD or a raw numerical value (which isn't checked
+for validity though).  Returns a handle which can be used with UNWATCH-RAW."
+  (let* ((path (etypecase pathname
+                (string pathname)
+                (pathname (namestring pathname))))
+        (result (c-inotify-add-watch (inotify-fd inotify)
+                                     path (translate-keyword-flags flags))))
     (when (minusp result)
-      (error "inotify_add_watch failed: ~A" result))
+      (perror "inotify_add_watch failed"))
     result))
 
-(defun unwatch-raw (notify handle)
-  "Disables watching the path associated with HANDLE."
-  (let ((result (c-inotify-rm-watch (inotify-fd notify) handle)))
+(defun unwatch-raw (inotify handle)
+  "Stops watching the path associated with a HANDLE established by WATCH-RAW."
+  (let ((result (c-inotify-rm-watch (inotify-fd inotify) handle)))
     (when (minusp result)
-      (error "inotify_rm_watch failed: ~A" result)))
+      (perror "inotify_rm_watch failed")))
   (values))
 
 ;;;; support functions, making life easier
@@ -221,86 +249,107 @@ Returns a handle which can be used with UNWATCH-RAW."
 paths in a dictionary."
   watched)
 
-(defun make-notify (&optional (nonblocking T))
-  "Creates a new registered NOTIFY instance.  In NONBLOCKING mode, the file
-descriptor is set to non-blocking mode."
+(defun make-inotify (&optional (nonblocking T))
+  "Creates a new registered INOTIFY instance.  In NONBLOCKING mode, the file
+descriptor is set to non-blocking mode.  The resulting object has to be
+closed with CLOSE-INOTIFY."
   (let ((result (make-registered-inotify-instance)))
-    (init-unregistered-notify result nonblocking)
+    (init-unregistered-inotify result nonblocking)
     (with-slots (watched) result
       (setf watched (make-hash-table :test 'equal)))
     result))
 
-(defun watchedp (notify pathname)
-  "Returns the tuple (HANDLE . FLAGS) if PATHNAME is being watched by NOTIFY,
-else NIL."
-  (awhen (gethash pathname (inotify-watched notify))
-    (values (car it) (cdr it))))
-
-;; TODO: handle additional flags, save only list of flags
-(defun watch (notify pathname flags)
+(defun watchedp (inotify pathname)
+  "Returns two values HANDLE and FLAGS if PATHNAME is being watched by INOTIFY,
+else NIL.  The match is exact."
+  (let ((it (gethash pathname (inotify-watched Inotify))))
+    (when it (values (car it) (cdr it)))))
+
+(defun sane-user-flags (inotify pathname flags &key (replace-p T))
+  (check-type flags watch-flag-list)
+  ;; now, :mask-add can't be member of flags
+  ;; merge the flags
+  (let* ((flags (ensure-list flags))
+        (rep-flags (if replace-p
+                       (cons :mask-add flags)
+                       flags)))
+    (let ((it (gethash pathname (slot-value inotify 'watched))))
+      (if it
+         (union (cdr it) rep-flags :test #'eq)
+         rep-flags))))
+
+(defun watch (inotify pathname flags &key (replace-p T))
   "Adds PATHNAME (either pathname or string) to be watched and records the
-watched paths.  FLAGS determines how exactly (see inotify(7) for detailed
-information).  Returns a handle which can be used with UNWATCH."
-  (let ((handle (watch-raw notify pathname flags)))
-    (with-slots (watched) notify
+watched paths.  FLAGS (a list of keywords) determines how exactly (see
+inotify(7) for detailed information).  Returns a handle which can be used
+with UNWATCH.  If REPLACE-P is set to T (default), the flags mask is
+replaced rather than OR-ed to the current mask (if it exists).  The
+:MASK-ADD flag is therefore removed from the FLAGS argument."
+  (let* ((flags (sane-user-flags inotify pathname flags :replace-p replace-p))
+        (handle (watch-raw inotify pathname flags)))
+    (with-slots (watched) inotify
       (setf (gethash pathname watched) (cons handle flags)))
     handle))
 
-(defun unwatch (notify &key pathname handle)
+(defun unwatch (inotify &key pathname handle)
   "Disables watching the path associated with the supplied HANDLE or PATHNAME."
   (unless (or pathname handle)
     (error "either PATHNAME or HANDLE has to be specified"))
   (if handle
-      (unwatch-raw notify handle)
-      (let ((handle (watchedp notify pathname)))
+      (unwatch-raw inotify handle)
+      (let ((handle (watchedp inotify pathname)))
        (unless handle
          (error "PATHNAME ~S isn't being watched" pathname))
-       (unwatch-raw notify handle)
-       (remhash pathname (inotify-watched notify))))
+       ;; remove even if unwatch-raw throws an error (which can happen if :oneshot is specified)
+       (remhash pathname (inotify-watched inotify))
+       (unwatch-raw inotify handle)))
   (values))
 
-(defun list-watched (notify)
-  "Returns a list of all watched pathnames in particular order."
-  (let (result)
-    (maphash (lambda (k v)
-              (declare (ignore v))
-              (push k result))
-            (inotify-watched notify))
-    result))
+(defun list-watched (inotify)
+  "Returns a LIST of all watched pathnames in no particular order."
+  (loop
+     for pathname being each hash-key in (inotify-watched inotify)
+     collect pathname))
 
-(defun unix-eagainp (fd-stream)
-  "Returns T on a FD-STREAM if trying to read from the stream raised a EAGAIN
-error."
+(defun unix-eagain-p (fd-stream)
+  "Returns T on a FD-STREAM if trying to read from the stream raised a
+EAGAIN error."
   (multiple-value-bind (result error)
       (sb-unix:unix-read (sb-sys:fd-stream-fd fd-stream) NIL 0)
     (declare (ignore result))
     (= error sb-unix:eagain)))
 
-(defun event-availablep (notify)
+(defun event-available-p (inotify)
   "Returns T if an event is available on the queue."
-  (if (inotify-nonblocking notify)
-      (not (unix-eagainp (inotify-stream notify)))
-      (listen (inotify-stream notify))))
+  (if (inotify-nonblocking inotify)
+      (not (unix-eagain-p (inotify-stream inotify)))
+      (listen (inotify-stream inotify))))
 
-(defun read-event (notify)
+(defun read-event (inotify)
   "Reads an event from the queue.  Blocks if no event is available."
-  (read-event-from-stream (inotify-stream notify)))
+  (read-event-from-stream (inotify-stream inotify)))
 
-(defun next-event (notify)
+(defun next-event (inotify)
   "Reads an event from the queue.  Returns NIL if none is available."
-  (when (event-availablep notify)
-    (read-event notify)))
-
-(defmacro! do-events ((var o!notify) &body body)
-  "Loops BODY with VAR bound to the events retrieved from NOTIFY.  The macro
-uses NEXT-EVENT, so that reading an event won't block."
-  `(loop as ,var = (next-event ,g!notify)
-      while ,var
-      do (progn ,.body)))
-
-(defun next-events (notify)
-  "Reads all available events from the queue.  Returns a list of events."
-  (let (result)
-   (do-events (event notify)
-     (push event result))
-   (nreverse result)))
+  (when (event-available-p inotify)
+    (read-event inotify)))
+
+(defmacro do-events ((var inotify &key blocking-p) &body body)
+  "Loops BODY with VAR bound to the next events retrieved from INOTIFY.
+The macro uses NEXT-EVENT, so reading an event won't block and the loop
+terminates if no events are available."
+  (check-type var symbol)
+  (let ((inotify-sym (gensym)))
+   `(loop
+       with ,var and ,inotify-sym = ,inotify
+       ,.(unless blocking-p
+          `(while (event-available-p ,inotify-sym)))
+       do (progn
+           (setf ,var (read-event ,inotify-sym))
+           ,.body))))
+
+(defun next-events (inotify)
+  "Reads all available events from the queue.  Returns a LIST of events."
+  (loop
+     while (event-available-p inotify)
+     collect (read-event inotify)))