Changed everything to inotify naming.
authorOlof-Joachim Frahm <Olof.Frahm@web.de>
Thu, 9 Jun 2011 09:42:39 +0000 (11:42 +0200)
committerOlof-Joachim Frahm <Olof.Frahm@web.de>
Thu, 9 Jun 2011 09:42:39 +0000 (11:42 +0200)
README
cl-inotify.asd
grovel.lisp
inotify.lisp
package.lisp

diff --git a/README b/README
index 9310746..66ca1c9 100644 (file)
--- a/README
+++ b/README
@@ -1,31 +1,28 @@
-CL-INOTIFY - Interface to the linux inotify API.
+CL-INOTIFY - Interface to the Linux inotify API.
 
 Copyright (C) 2009 Olof-Joachim Frahm
 Released under the GPL3 (or any later version).
 
 Working, but unfinished.
-Implementations currently supported: SBCL
+Implementations currently tested on: SBCL
 
-Uses CFFI, the binary-types (ASDF enhanced from
-http://github.com/Ferada/cl-notify or see
-http://www.cliki.net/Binary-types) and utils-frahm
-(http://github.com/Ferada/utils-frahm) libraries.
+Uses CFFI and the binary-types library (from [1] or see [2]).
 
 
 HOWTO
 
-After loading the library use MAKE-NOTIFY to create a new event queue.
+After loading the library use MAKE-INOTIFY to create a new event queue.
 The NONBLOCKING argument currently determines if we use the standard
 CL:LISTEN function or SB-UNIX:UNIX-READ to check for available events.
 
-The result of MAKE-NOTIFY is used with WATCH and UNWATCH, the first
+The result of MAKE-INOTIFY is used with WATCH and UNWATCH, the first
 being used to watch a file or directory, the second to stop watching
 it.  The FLAGS parameter of WATCH is described in the notify(7) manpage;
 you can use a combination of the flags (as keywords) to create a
 suitable bitmask.
 
 For example, to watch for modified or closed files in a directory, call
-(WATCH notify "foo/" '(:modify :close)).
+(WATCH inotify "foo/" '(:modify :close)).
 
 The result of WATCH is a handle (currently a FIXNUM, but I wouldn't rely
 on that) which can be fed to UNWATCH, but isn't useful for anything
@@ -36,8 +33,8 @@ or NEXT-EVENT (which doesn't block).  EVENT-AVAILABLEP does what it
 should do, NEXT-EVENTS retrieves all currently available events as a
 list and DO-EVENTS (nonblocking) iterates over available events.
 
-The enhanced API registers all watched paths in a table, so you can use
-WATCHEDP to check if a pathname (exact match) is being watched and
+The enhanced API registers all watched paths in a hashtable, so you can
+use WATCHEDP to check if a pathname (exact match) is being watched and
 LIST-WATCHED to return all watched paths as a list.
 
 UNWATCH has to be called with the path or the handle of the watched file
@@ -60,3 +57,9 @@ TODO
 DONE
 - easier interface for (e)poll/select maybe using iolib (done, using
   CL:LISTEN and/or SB-UNIX:UNIX-READ)
+
+
+LINKS
+
+[1]: http://github.com/Ferada/cl-notify
+[2]: http://www.cliki.net/Binary-types
index d2aca7b..ad9fa18 100644 (file)
@@ -1,9 +1,11 @@
+;;; -*- mode: lisp; syntax: common-lisp; coding: utf-8; package: cl-user; -*-
+
 (in-package #:cl-user)
 
 (eval-when (:load-toplevel :execute)
   (asdf:operate 'asdf:load-op 'cffi-grovel))
 
-(asdf:defsystem cl-inotify
+(asdf:defsystem :cl-inotify
   :depends-on (#:cffi #:binary-types)
   :serial T
   :components ((:file "package")
index 5dd12c1..486cc66 100644 (file)
@@ -1,7 +1,7 @@
-(include "sys/inotify.h")
-
 (in-package #:cl-inotify)
 
+(include "sys/inotify.h")
+
 (constant (in-access        "IN_ACCESS"))
 (constant (in-modify        "IN_MODIFY"))
 (constant (in-attrib        "IN_ATTRIB"))
index 49e889c..4a87e4d 100644 (file)
@@ -169,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)
       (perror "inotify_init failed"))
-    (with-slots (fd stream (non-block nonblocking)) notify
+    (with-slots (fd stream (non-block nonblocking)) inotify
       (unwind-protect
           ;; file descriptor is collected with auto-close
           (progn
@@ -194,15 +194,15 @@ 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 perror (prefix-string)
@@ -218,7 +218,7 @@ the file descriptor is set to non-blocking I/O."
      (foreign-bitfield-value 'inotify-flag (ensure-list flags)))
     (T flags)))
 
-(defun watch-raw (notify pathname 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
@@ -226,15 +226,15 @@ 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 notify)
+        (result (c-inotify-add-watch (inotify-fd inotify)
                                      path (translate-keyword-flags flags))))
     (when (minusp result)
       (perror "inotify_add_watch failed"))
     result))
 
-(defun unwatch-raw (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 notify) handle)))
+  (let ((result (c-inotify-rm-watch (inotify-fd inotify) handle)))
     (when (minusp result)
       (perror "inotify_rm_watch failed")))
   (values))
@@ -249,22 +249,23 @@ for validity though).  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 two values HANDLE and FLAGS if PATHNAME is being watched by NOTIFY,
-else NIL."
-  (let ((it (gethash pathname (inotify-watched notify))))
+(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 (notify pathname flags &key (replace-p T))
+(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
@@ -272,42 +273,42 @@ else NIL."
         (rep-flags (if replace-p
                        (cons :mask-add flags)
                        flags)))
-    (let ((it (gethash pathname (slot-value notify 'watched))))
+    (let ((it (gethash pathname (slot-value inotify 'watched))))
       (if it
          (union (cdr it) rep-flags :test #'eq)
          rep-flags))))
 
-(defun watch (notify pathname flags &key (replace-p T))
+(defun watch (inotify pathname flags &key (replace-p T))
   "Adds PATHNAME (either pathname or string) to be watched and records the
 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 notify pathname flags :replace-p replace-p))
-        (handle (watch-raw notify pathname flags)))
-    (with-slots (watched) notify
+  (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))
        ;; remove even if unwatch-raw throws an error (which can happen if :oneshot is specified)
-       (remhash pathname (inotify-watched notify))
-       (unwatch-raw notify handle)))
+       (remhash pathname (inotify-watched inotify))
+       (unwatch-raw inotify handle)))
   (values))
 
-(defun list-watched (notify)
-  "Returns a list of all watched pathnames in no particular order."
+(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 notify)
+     for pathname being each hash-key in (inotify-watched inotify)
      collect pathname))
 
 (defun unix-eagain-p (fd-stream)
@@ -318,37 +319,37 @@ EAGAIN error."
     (declare (ignore result))
     (= error sb-unix:eagain)))
 
-(defun event-available-p (notify)
+(defun event-available-p (inotify)
   "Returns T if an event is available on the queue."
-  (if (inotify-nonblocking notify)
-      (not (unix-eagain-p (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-available-p notify)
-    (read-event notify)))
+  (when (event-available-p inotify)
+    (read-event inotify)))
 
-(defmacro do-events ((var notify &key blocking-p) &body body)
-  "Loops BODY with VAR bound to the next events retrieved from NOTIFY.
+(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 ((notify-sym (gensym)))
+  (let ((inotify-sym (gensym)))
    `(loop
-       with ,var and ,notify-sym = ,notify
+       with ,var and ,inotify-sym = ,inotify
        ,.(unless blocking-p
-          `(while (event-available-p ,notify-sym)))
+          `(while (event-available-p ,inotify-sym)))
        do (progn
-           (setf ,var (read-event ,notify-sym))
+           (setf ,var (read-event ,inotify-sym))
            ,.body))))
 
-(defun next-events (notify)
+(defun next-events (inotify)
   "Reads all available events from the queue.  Returns a LIST of events."
   (loop
-     while (event-available-p notify)
-     collect (read-event notify)))
+     while (event-available-p inotify)
+     collect (read-event inotify)))
index 65b2410..ac6380f 100644 (file)
           ;;; very raw
           #:read-raw-event-from-stream
 
-          #:close-notify
+          #:close-inotify
 
           ;;; event parsing functions
-          #:make-unregistered-notify
+          #:make-unregistered-inotify
           #:read-event-from-stream
           #:watch-raw
           #:unwatch-raw
 
           ;;; enhanced functionality
-          #:make-notify
+          #:make-inotify
           #:watchedp
           #:watch
           #:unwatch
@@ -30,6 +30,5 @@
           ;;; convenience functions
           #:list-watched
           #:do-events
-          #:read-events
-          )
+          #:next-events)
   (:documentation "A binding (not only?) for the LINUX inotify(7) API."))