Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
(defprotocol IAnimal "IAnimal"
  (report [o]
    (println (type o) " reporting.\n")
    (inner-report o)
    (println (type o) " out.\n")))

(defrecord Dog [] IAnimal
  (inner-report [o]
    (println "Woof Woof.\n")))

(defrecord Cat [] IAnimal
  (inner-report [o]
    (println "Meow Meow.\n")))

(defrecord Vampire [] IAnimal
  (inner-report [o]
    (println "I don't sparkle.\n")))

Now, I would like it to output:

Dog reporting.
Woof Woof.
Dog out.
Cat reporting.
Meow Meow.
Cat out.
Vampire reporting.
I don't sparkle.
Vampire out.

Unfortuantely, this does not happen since the above code does not compile. What is the best way to achieve "this" ?

Where by "this", I mean I have some function that I want to be part of a protocol, I want to have one implementation of it for all records, and I want this functino to have access to specialized functions that records implement.

Thanks!

(What is the clojure way of doing this?)

share|improve this question
Any specific reason to use protocols, as this can be as simple as composing functions – Ankur Nov 18 '12 at 7:07
I'm implementing this drawing library in Clojure (with the display in SVG). There's boiler plate code that's popping up for every element (a defrecord) that I want to draw, and I'd prefer to stick it somewhere (the defprotocol seems like the least common multiple) – user1647794 Nov 18 '12 at 7:50

1 Answer

up vote 2 down vote accepted

Protocols are like Java interfaces, they cannot provide implementation for their methods. But this works:

(defn report [o]
  (println (type o) " reporting.\n")
  (inner-report o)
  (println (type o) " out.\n"))

(defprotocol IAnimal
  "the animal protocol"
  (inner-report [o] "a report"))

(defrecord Dog []
  IAnimal
  (inner-report [o]
    (println "Woof Woof.\n")))

(defrecord Cat []
  IAnimal
  (inner-report [o]
    (println "Meow Meow.\n")))

(defrecord Vampire []
  IAnimal
  (inner-report [o]
    (println "I don't sparkle.\n")))

(report (new Cat))
;; user.Cat reporting.
;; Meow Meow.
;; user.Cat out.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.