Last active
September 29, 2016 21:46
-
-
Save arichiardi/45debef5d84934835555 to your computer and use it in GitHub Desktop.
Boot rebase task
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; https://github.com/boot-clj/boot/pull/398 | |
(defn filter-tmpfiles | |
"Filter TmpFiles that match (a least one in) metadata-preds. | |
Metadata-preds is a set of functions which will receive a TmpFile and | |
tried not in a specific order. If no predicate in the set returns | |
true-y, the file is filtered out from the returned TmpFiles. | |
If invert is specified, the behavior is reversed." | |
([tmpfiles metadata-preds] | |
(filter-tmpfiles tmpfiles metadata-preds false)) | |
([tmpfiles metadata-preds invert?] | |
(when (seq metadata-preds) | |
((if-not invert? filter remove) (apply some-fn metadata-preds) tmpfiles)))) | |
(core/deftask rebase | |
"A task for moving files with the given metadata from one dir to another" | |
[w with-meta KEY #{kw} "The set of metadata keys files must have for being rebased." | |
p path PATH str "The destination path to prepend to the filtered fileset" | |
v invert bool "Invert the sense of with-meta"] | |
(core/with-pre-wrap fileset | |
(let [files (filter-tmpfiles (core/ls fileset) with-meta invert) | |
paths (map (juxt :path #(str path (:path %))) files)] | |
(core/commit! (reduce (fn [acc [from-path to-path]] | |
(merge acc (core/mv acc from-path to-path))) fileset paths))))) | |
(comment | |
;; Usage | |
(comp (built-in/sift :add-meta {#".*" ::initial-fileset}) | |
(built-in/sift :add-jar {'org.clojure/tools.reader clj-one-regex-inclusions}) | |
(rebase :path dest-dir :with-meta #{::initial-fileset} :invert true) | |
(built-in/show :fileset true))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment