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

Add a polling fallback to filesystem watcher #254

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 12 additions & 2 deletions src/figwheel/main/watching.clj
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,23 @@

(def ^:dynamic *hawk-options* nil)

(defn watch-with-fallback!
"Wraps hawk/watch! to swap in a polling implementation if any of the native
OS file events interfaces fail."
[opts & groups]
(try
(apply hawk/watch! opts groups)
(catch Exception e
(prn e "WARN - no native fs events; falling back to polling filesystem")
(apply hawk/watch! (assoc opts :watcher :polling) groups))))

(defn alter-watches [{:keys [watcher watches]} f]
(when watcher (hawk/stop! watcher))
(let [watches (f watches)
watcher (when (not-empty watches)
(if *hawk-options*
(apply hawk/watch! *hawk-options* (map vector (vals watches)))
(apply hawk/watch! (map vector (vals watches)))))]
(apply watch-with-fallback! *hawk-options* (map vector (vals watches)))
(apply watch-with-fallback! (map vector (vals watches)))))]
{:watcher watcher
:watches watches}))

Expand Down