cryogen-core/src/cryogen_core/watcher.clj
J Irving efbe831261 Support :ignored-file config key
Prevent the compiler attempting to process files defined by a list of
regexps. By default ignore emacs and vi backup files.
2014-12-27 02:47:55 -05:00

26 lines
790 B
Clojure

(ns cryogen-core.watcher
(:require [clojure.java.io :refer [file]]
[cryogen-core.io :refer [ignore]]))
(defn get-assets [root ignored-files]
(->> root
file
file-seq
(filter #(not (.isDirectory %)))
(filter (ignore ignored-files))))
(defn sum-times [path ignored-files]
(->> (get-assets path ignored-files) (map #(.lastModified %)) (reduce +)))
(defn watch-assets [root ignored-files action]
(loop [times (sum-times root ignored-files)]
(Thread/sleep 300)
(let [new-times (sum-times root ignored-files)]
(when-not (= times new-times)
(action))
(recur new-times))))
(defn start-watcher! [root ignored-files action]
(doto (Thread. #(watch-assets root ignored-files action))
(.setDaemon true)
(.start)))