-
-
Save michalmarczyk/381879 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
(use '[clojure.contrib.macro-utils :only [macrolet]]) | |
(defmacro defplugin [& body] | |
(let [g (gensym)] | |
(macrolet [(defcommand [docs words cmdkey & method-stuff] | |
`(do (dosync (doseq [word# ~words] | |
(assoc ~g word# {:cmd ~cmdkey :doc ~docs}))) | |
(defmethod respond ~cmdkey ~@method-stuff)))] | |
`(let [~g (ref [])] | |
~@body | |
`(dosync | |
(let [m-name# (keyword (last (.split (str *ns*) "\\.")))] | |
(alter modules merge | |
{m-name# | |
{:load #(dosync (alter commands assoc m-name# ~g)) | |
:unload #(dosync (alter commands dissoc m-name#))}}))))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment