I have a Java class that I'd like to use in Clojure. But, I want to use it as a Clojure map. What are the steps required to do so?

I've looked at the code for IPersistentMap -- should the Java class implement that? Or should there be some Clojure code which implements a protocol?

I know I could just write some mapping code, to explicitly convert the code from Java objects to maps, but that solution has a high effort/reward ratio. Also, I might encounter this same situation many more times.


Concrete example: I have a parser written in Java. I'd like to use that to parse some text, and then access the contents of the parsed data structure as though it were in Clojure maps:

(def parser (new MyParser))

(let [parse-tree (parser ... parse some text ...)]
  ((parse-tree :items) "itemid"))
link|improve this question

80% accept rate
feedback

4 Answers

up vote 8 down vote accepted

The function bean came to mind:

Takes a Java object and returns a read-only implementation of the map abstraction based upon its JavaBean properties.

Example taken from the site:

user=> (import java.util.Date)
java.util.Date

user=> (def *now* (Date.))
#'user/*now*

user=> (bean *now*)
{:seconds 57, :date 13, :class java.util.Date,
 :minutes 55, :hours 17, :year 110, :timezoneOffset -330,
 :month 6, :day 2, :time 1279023957492}
link|improve this answer
This looks promising, I will give it a try. I may have to do a recursive bean application. – Matt Fenwick Oct 27 '11 at 14:30
3  
Have a look at clojure.java.data. There is a function (from-java) that uses java.beans.Introspector recursively. Furthermore, you can refine the output of from-java by adding ...BeanInfo classes to a java library to control which get... methods are recognised, and to rename the keywords that are used in the clojure map. – James Petry Oct 27 '11 at 15:50
feedback

Clojure keywords can look up stuff in anything that implements the required (read-only) parts of the java.lang.Map interface. The problem is probably going to be that you're not actually using clojure keywords as keys so that might not help you.

As for IPersistentMap; your parser presumably doesn't implement anything relevant to the that interface.

Personally, I'd write a straight up conversion function. Clojure uses a lot of those (seq, for instance) and after converting, you know you're dealing with a real persistent map and not something that only acts like it some of the time (so you can actually call seq, keys, vals etc on it).

Alternatively;

  • just implement clojure.lang.ILookup, and leave out everything else.
  • convert using some generated/reflection code if you want something more generic. See https://github.com/joodie/clj-java-fields for an example.
link|improve this answer
I edited my example to show that I want to treat the parse result as a Clojure map. I have no problem making all the fields in the parse result final, if that helps any. – Matt Fenwick Oct 27 '11 at 13:45
feedback

What about just using a java.util.HashMap with (interned) strings as keys, and doing the conversion in a few lines of Clojure ?:

(into {} (java.util.HashMap. {"foo" "bar" "baz" "quux"})) ?

{"foo" "bar" "baz" "quux"}

or with keywords:

(into {}
  (map
    (juxt
      #(keyword (key %))
      #(val %))
    (java.util.HashMap. {"foo" "bar" "baz" "quux"})))

{:baz "quux", :foo "bar"}
link|improve this answer
I don't see how to use this ... I have a Java class already, and want to use it as though it were a Clojure object .... are you suggesting that I convert my java object to a HashMap? – Matt Fenwick Oct 27 '11 at 19:37
feedback
user=> (defn parser [text]
  "{ :items { \"itemid\" 55 }}");Mock
user=> (let [parse-tree (read-string (parser "Abracadabra"))]
((parse-tree :items) "itemid"))
55
link|improve this answer
Could you explain this? I don't understand how this solves my problem. – Matt Fenwick Oct 27 '11 at 14:28
if your Parser output clojure map format string , use read-string, you can convert. – BLUEPIXY Oct 27 '11 at 14:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.