Created
July 19, 2016 18:39
-
-
Save thegeez/e67c29848f2f6c183ad3a1125c542099 to your computer and use it in GitHub Desktop.
match for spec
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 adt | |
(:require [clojure.spec :as s])) | |
(defmacro match [spec x & cases] | |
(let [fr (s/form spec) | |
[ffr & frcases] fr | |
_ (assert (= `s/or ffr) | |
"match only works on clojure.spec/or specs") | |
expected-cases (set (take-nth 2 frcases)) | |
found-cases (set (map first cases)) | |
_ (assert (= expected-cases found-cases) | |
(str "match missing case: expected: " expected-cases | |
" found: " found-cases)) | |
spec-name-s (gensym "spec-name") | |
spec-children-s (gensym "spec-children")] | |
`(let [[~spec-name-s ~spec-children-s] (s/conform ~spec ~x)] | |
(case ~spec-name-s | |
~@(reduce into | |
[] | |
(for [[kw# binding# body#] cases] | |
[kw# `(let [~binding# ~spec-children-s] | |
~body#)])))))) | |
(s/def ::body string?) | |
(s/def ::status number?) | |
(s/def ::reply (s/keys :req [::body | |
::status])) | |
(s/def ::error string?) | |
(s/def ::retry number?) | |
(s/def ::response (s/or :reply ::reply | |
:error ::error | |
:retry ::retry)) | |
(defn doit [a] | |
(match ::response a | |
(:reply {:keys [::body ::status]} | |
(println "reply" body status)) | |
(:error message | |
(println "error" message)) | |
(:retry n | |
(println "retry" n)))) | |
(def b {::body "Hello world" | |
::status 200}) | |
(def e "Error message") | |
(doit b) | |
;; => reply Hello world 200 | |
;; nil | |
(doit e) | |
;; => error Error message | |
;; nil | |
(doit 103) | |
;; => retry 103 | |
;; nil |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment