Skip to content

Instantly share code, notes, and snippets.

@michalmarczyk
Forked from Raynes/respond.clj
Created April 28, 2010 08:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michalmarczyk/381879 to your computer and use it in GitHub Desktop.
Save michalmarczyk/381879 to your computer and use it in GitHub Desktop.
(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