Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement auto-republishing of changed files in preview #183

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 88 additions & 0 deletions op-watch.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
;;; op-watch.el --- Watch filesystem for changes in .org files. -*- lexical-binding: t -*-

;; Copyright (C) 2012, 2013, 2014 Kelvin Hu

;; Author: Kelvin Hu <ini DOT kelvin AT gmail DOT com>
;; Keywords: convenience
;; Homepage: https://github.com/kelvinh/org-page

;; 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/>.

;;; Commentary:

;; Re-publish .org files when they change.

;;; Code:

(require 'op-export)
(require 'op-git)
(require 'op-vars)

(require 'dash)
(require 'ht)

(require 'filenotify nil t)

(defvar op/watch-descriptors (ht-create)
"A mapping from watch descriptors to timers.")

(defun op/callback-for (path all)
"Return a callback to handle change event."
(lambda (event)
(destructuring-bind (descriptor action file . rest) event
(when (eq action 'changed)

;; One save of a file can trigger several `changed'
;; events in quick succession, so we debounce them.
(let ((debounce-timer (ht-get op/watch-descriptors descriptor)))
(when (timerp debounce-timer)
(cancel-timer debounce-timer)))

(ht-set op/watch-descriptors descriptor
(run-with-timer 1 nil #'op/file-change-handler
file path all))))))

(defun op/add-watch (file path all)
"Add a watch to FILE."
(-if-let (descriptor (file-notify-add-watch file '(change)
(op/callback-for path all)))
(ht-set! op/watch-descriptors descriptor nil)
(error "Cannot add watch to file `%s'" file)))

(defun op/watch-files (all path)
"Watch the repository for changes of files.

When any file of ALL changes, publish it to PATH."
(--each all
(op/add-watch it path all)))

(defun op/stop-all-watches ()
"Remove existing file watches and cancel timers."
(interactive)

(ht-each (lambda (descriptor debounce-timer)
(file-notify-rm-watch descriptor)
(when (timerp debounce-timer)
(cancel-timer debounce-timer)))
op/watch-descriptors)
(setf op/watch-descriptors (ht-create)))

(defun op/file-change-handler (file path all)
"Handle change event for FILE."
(message "CHANGED %s [%s]" file path)
(let ((changed-files `(:update (,file) :delete nil)))
(op/publish-changes all changed-files path)))

(provide 'op-watch)
;;; op-watch.el ends here
17 changes: 17 additions & 0 deletions org-page.el
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
(require 'op-git)
(require 'op-enhance)
(require 'op-export)
(require 'op-watch)
(require 'simple-httpd)

(defconst org-page-version "0.5")
Expand Down Expand Up @@ -327,6 +328,22 @@ When invoked without prefix argument then PATH defaults to
(httpd-serve-directory path)
(browse-url (format "http://%s:%d" system-name httpd-port)))

(defun op/do-publication-and-preview-watch (path)
"Do publication in PATH and preview the site in browser, then
automatically re-publish any changed .org file.

When invoked without prefix argument then PATH defaults to
`op/site-preview-directory'."
(interactive
(if current-prefix-arg
(list (read-directory-name "Path: "))
(list op/site-preview-directory)))

(op/do-publication-and-preview-site path)
(op/stop-all-watches)

(op/watch-files (op/git-all-files op/repository-directory)
(file-name-as-directory (expand-file-name path))))

(provide 'org-page)

Expand Down