summaryrefslogtreecommitdiff
path: root/haunt/watch
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2022-07-09 09:00:26 -0400
committerDavid Thompson <dthompson2@worcester.edu>2022-07-09 09:00:26 -0400
commit3c3a5ca21345b8df791486027ee367130ed45374 (patch)
tree93983a085609d31c7ac4b2770d8d8191e6599208 /haunt/watch
parenta090d0a7c9168ca6292c6cdf1b8c27c5a067c085 (diff)
Factor watch implementations into their own modules.
This should also hopefully resolve some issues that Christine Lemmer-Webber reported with the old code when resolving all of those inotify bindings at runtime.
Diffstat (limited to 'haunt/watch')
-rw-r--r--haunt/watch/fallback.scm58
-rw-r--r--haunt/watch/linux.scm81
2 files changed, 139 insertions, 0 deletions
diff --git a/haunt/watch/fallback.scm b/haunt/watch/fallback.scm
new file mode 100644
index 0000000..c001776
--- /dev/null
+++ b/haunt/watch/fallback.scm
@@ -0,0 +1,58 @@
+;;; Haunt --- Static site generator for GNU Guile
+;;; Copyright © 2022 David Thompson <davet@gnu.org>
+;;;
+;;; This file is part of Haunt.
+;;;
+;;; Haunt 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.
+;;;
+;;; Haunt 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 Haunt. If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+;;
+;; Fallback file update watcher that uses a naive tree walking
+;; implementation.
+;;
+;;; Code:
+
+(define-module (haunt watch fallback)
+ #:use-module (haunt site)
+ #:use-module (ice-9 ftw)
+ #:export (watch))
+
+(define (watch thunk check-dir? check-file?)
+ (define cwd (getcwd))
+
+ (define (any-files-changed? time)
+ (define (enter? name stat result)
+ ;; Don't bother descending if we already know that a file has
+ ;; changed.
+ (and (not result) (check-dir? name)))
+
+ (define (leaf name stat result)
+ ;; Test if file has been modified since the last time we
+ ;; checked.
+ (or result
+ (and (check-file? name)
+ (or (>= (stat:mtime stat) time)
+ (>= (stat:ctime stat) time)))))
+
+ (define (no-op name stat result) result)
+
+ (file-system-fold enter? leaf no-op no-op no-op no-op #f cwd))
+
+ (let loop ((time (current-time)))
+ (when (any-files-changed? time)
+ (display "watch: file changes detected")
+ (thunk))
+ (let ((next-time (current-time)))
+ (sleep 1)
+ (loop next-time))))
diff --git a/haunt/watch/linux.scm b/haunt/watch/linux.scm
new file mode 100644
index 0000000..d600baa
--- /dev/null
+++ b/haunt/watch/linux.scm
@@ -0,0 +1,81 @@
+;;; Haunt --- Static site generator for GNU Guile
+;;; Copyright © 2022 David Thompson <davet@gnu.org>
+;;;
+;;; This file is part of Haunt.
+;;;
+;;; Haunt 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.
+;;;
+;;; Haunt 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 Haunt. If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+;;
+;; Inotify-based file watching for Linux.
+;;
+;;; Code:
+
+(define-module (haunt watch linux)
+ #:use-module (haunt inotify)
+ #:use-module (haunt site)
+ #:use-module (ice-9 ftw)
+ #:export (watch))
+
+;; TODO: Detect new directories and watch them, too.
+(define (watch thunk check-dir? check-file?)
+ (let ((inotify (make-inotify)))
+ (define (no-op name stat result) result)
+ (define (watch-directory name stat result)
+ (and (check-dir? name)
+ (inotify-add-watch! inotify name
+ '(create delete close-write moved-to moved-from))
+ #t))
+ ;; Drop .scm extension, remove working directory,
+ ;; and transform into a symbolic module name.
+ (define (file-name->module-name file-name)
+ (map string->symbol
+ (string-split (string-drop (string-take file-name
+ (- (string-length file-name)
+ 4))
+ (+ (string-length (getcwd)) 1))
+ #\/)))
+ (file-system-fold watch-directory no-op no-op no-op no-op no-op #t (getcwd))
+ (let loop ((processed-event? #f))
+ (cond
+ ((inotify-pending-events? inotify)
+ (let* ((event (inotify-read-event inotify))
+ (type (inotify-event-type event))
+ (file-name (string-append (inotify-watch-file-name
+ (inotify-event-watch event))
+ "/"
+ (inotify-event-file-name event))))
+ (if (and (check-dir? file-name) (check-file? file-name))
+ (let ((action (case type
+ ((create) "create")
+ ((delete) "delete")
+ ((close-write) "write")
+ ((moved-to moved-from) "move"))))
+ (format #t "watch: observed ~a '~a'~%" action file-name)
+ ;; Reload Scheme modules when they are changed.
+ (when (%search-load-path file-name)
+ (let ((module (resolve-module
+ (file-name->module-name file-name))))
+ (when (module-filename module)
+ (format #t "watch: reload module ~s~%"
+ (module-name module))
+ (reload-module module))))
+ (loop #t))
+ (loop processed-event?))))
+ (processed-event?
+ (thunk)
+ (loop #f))
+ (else
+ (sleep 1)
+ (loop #f))))))