I\'ve been reading code and documentation to try to understand how class reloading works in clojure. According to many websites, such as http://tutorials.jenkov.com/java-reflect
Not all of these language features use the same technique.
The proxy
macro generates a class name based exclusively on the class and list of interfaces being inherited. The implementation of each method in this class delegates to a Clojure fn stored in the object instance. This allows Clojure to use the very same proxy class every time the same list of interfaces is inherited, whether the body of the macro is the same or not. No actual class reloading takes place.
For reify
, the method bodies are compiled directly into the class, so the trick proxy
uses won't work. Instead, a new class is generated when the form is compiled, so if you change the body of the form and reload it, you get a whole new class (with a new generated name). So again, no actual class reloading takes place.
With gen-class
you specify a name for the generated class, so neither of the techniques used for proxy
or reify
will work. A gen-class
macro contains only a sort of spec for a class, but none of the method bodies. The generated class, somewhat like proxy
, defers to Clojure functions for the method bodies. But because a name is tied to the spec, unlike proxy
it would not work to change the body of a gen-class
and reload it, so gen-class
is only available when compiling ahead-of-time (AOT compilation) and no reloading is allowed without restarting the JVM.
This is where real dynamic class reloading happens. I'm not deeply familiar with the internals of the JVM, but a little work with a debugger and the REPL makes one point clear: every time a class name needs to be resolved, such as when compiling code that uses the class or when the Class class's forName
method is called, Clojure's DynamicClassLoader/findClass
method is used. As you note this looks up the class name in in the DynamicClassLoader's cache, and this can be set to point to a new class by running deftype
again.
Note the caveats in the tutorial you mentioned about the reloaded class being a different class, despite having the same name, still apply to Clojure classes:
(deftype T [a b]) ; define an original class named T
(def x (T. 1 2)) ; create an instance of the original class
(deftype T [a b]) ; load a new class by the same name
(cast T x) ; cast the old instance to the new class -- fails
; ClassCastException java.lang.Class.cast (Class.java:2990)
Each top-level form in a Clojure program gets a fresh DynamicClassLoader which is used for any new classes defined within that form. This will include not only classes defined via deftype
and defrecord
but also reify
and fn
. This means that the classloader for x
above is different than the new T
. Note the numbers after the @
s are different -- each gets its own classloader:
(.getClassLoader (class x))
;=> #<DynamicClassLoader clojure.lang.DynamicClassLoader@337b4703>
(.getClassLoader (class (T. 3 4)))
;=> #<DynamicClassLoader clojure.lang.DynamicClassLoader@451c0d60>
But as long as we don't define a new T
class, new instances will have the same class with the same classloader. Note the number after the @
here is the same as the second one above:
(.getClassLoader (class (T. 4 5)))
;=> #<DynamicClassLoader clojure.lang.DynamicClassLoader@451c0d60>