Groovy: Delegating metaclass for an Interface? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T10:21:28Zhttp://stackoverflow.com/feeds/question/543479http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/543479/groovy-delegating-metaclass-for-an-interface1Groovy: Delegating metaclass for an Interface?slim2009-02-12T21:46:34Z2009-02-14T21:42:25Z
<p>Using Groovy's package name convention, I can intercept Groovy method calls to a Java method like so:</p>
<pre><code>package groovy.runtime.metaclass.org.myGang.myPackage
class FooMetaClass extends groovy.lang.DelegatingMetaClass
{
StringMetaClass(MetaClass delegate)
{
super(delegate);
}
public Object getProperty(Object a, String key)
{
return a.someMethod(key)
}
}
</code></pre>
<p>This works fine if I really create an object of class Foo:</p>
<pre><code>def myFoo = new Foo()
def fooProperty = myFoo.bar // metaclass invokes myFoo.someMethod("bar")
</code></pre>
<p>However what if Foo is an interface, and I want to intercept method calls to any implementation of it?</p>
<pre><code>def myFoo = FooFactory.create() // I don't know what class this will be
fooProperty = myFoo.bar
</code></pre>
<p>Is there a way to achieve this without having a DelegatingMetaClass for every known implementation of the Interface?</p>
http://stackoverflow.com/questions/543479/groovy-delegating-metaclass-for-an-interface/549858#5498581Answer by chanwit for Groovy: Delegating metaclass for an Interface?chanwit2009-02-14T21:42:25Z2009-02-14T21:42:25Z<p>You can create a class named "groovy.runtime.metaclass.CustomMetaClassCreationHandle" to globally handle metaclass creation process.</p>
<p>Inside this class, you can override this method:</p>
<pre><code>protected MetaClass createNormalMetaClass(Class theClass, MetaClassRegistry registry) {
// if theClass instanceof Foo, return your special metaclass
// else return super.createNormalMetaClass(theClass, registry)
}
</code></pre>