Created
March 13, 2017 09:42
-
-
Save 5alamander/8167f82d93536b58d622a8c74813d2fa to your computer and use it in GitHub Desktop.
A cool template in clojure
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
(ns console-demo.template) | |
(def delimiters ["<%" "%>"]) | |
(def parser-regex | |
(re-pattern | |
(str "(?s)\\A" | |
"(?:" | |
"(.*?)" (first delimiters) "(.*?)" (last delimiters) | |
")?" | |
"(.*)\\z"))) | |
(defn emit-string [s] | |
(print "(print " (pr-str s) ")")) | |
(defn emit-expr [expr] | |
(if (.startsWith expr "=") | |
(print "(print " (subs expr 1) ")") | |
(print expr))) | |
(defn- parse-string [src] | |
(with-out-str | |
(print "(do ") | |
(loop [src src] | |
(let [[_ before expr after] (re-matches parser-regex src)] | |
(if expr | |
(do (emit-string before) | |
(emit-expr expr) | |
(recur after)) | |
(do (emit-string after) | |
(print ")"))))))) | |
(defn compile-fn [args src] | |
(core/eval | |
`(core/fn ~args | |
(with-out-str | |
~(-> src parse-string read-string))))) | |
(defmacro template-fn | |
"Compile a template into a function that takes the supplied arguments." | |
[args source] | |
`(compile-fn '~args ~source)) | |
(defn template | |
"Evaluate a template using the supplied bindings." | |
([source] | |
(template source {})) | |
([source bindings] | |
(let [keys (map (comp symbol name) (keys bindings)) | |
func (compile-fn [{:keys keys}] source)] | |
(func bindings)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment