Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

defmethod catch all

I have a multimethod that specializes on two parameters:

(defmulti get-tag-type (fn [type tag] [type tag]))

Having the type allows me to group the different defmethod calls into sets:

(defmethod get-tag-type [::cat 0] [type tag] ::tiger)
(defmethod get-tag-type [::cat 1] [type tag] ::lion)
(defmethod get-tag-type [::cat 2] [type tag] ::jaguar)

(defmethod get-tag-type [::dog 0] [type tag] ::poodle)
(defmethod get-tag-type [::dog 1] [type tag] ::australian-shepherd)
(defmethod get-tag-type [::dog 2] [type tag] ::labrador-retriever)

However, sometimes, I want a catch all or default for one of the groups, which would be called if none of the others matched:

(defmethod get-tag-type [::dog :default] ::mutt)

However, this doesn't work unless tag is actually :default.

What is a good way to accomplish this?

like image 276
Brigham Avatar asked Feb 25 '12 01:02

Brigham


2 Answers

Multimethods support a fallback method, identified by using the (configurable) value :default , if none of the other methods match.

In your case, you'd simply add:

(defmethod get-tag-type :default [type tag]
  (do special behaviour here ...))

Given your example, it might be worth noting that you can establish hierarchies using Clojure keywords, and multimethod dispatch understands those hierarchies: http://clojure.org/multimethods

like image 107
Alex Taggart Avatar answered Nov 12 '22 22:11

Alex Taggart


Your dispatch function needs to know which mappings are already defined so that it can decide when to resort to a default. The methods function will return those mappings to you.

(defmulti get-tag-type (fn [type tag] 
                         (let [mlist (methods get-tag-type)]
                           (if-let [d (get mlist [type tag])] 
                             [type tag]
                             [type :default]))))
like image 7
user100464 Avatar answered Nov 12 '22 21:11

user100464