active questions tagged metaclass - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T07:21:19Z http://stackoverflow.com/feeds/tag/metaclass http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/100003/what-is-a-metaclass-in-python 48 What is a metaclass in Python? e-satis 2008-09-19T06:10:46Z 2009-11-23T11:09:44Z <p>I´ve mastered almost all the Python concepts (well, let´s say there are just OO concepts :-)) but this one is tricky.</p> <p>I know it has something to do with introspection but it´s still unclear to me.</p> <p>So what are metaclasses? What do you use them for? </p> <p>Concrete examples, including snippets, much appreciated!</p> http://stackoverflow.com/questions/1779372/python-metaclasses-vs-class-decorators 3 python metaclasses vs class decorators gpilotino 2009-11-22T17:39:39Z 2009-11-22T18:08:35Z <p>what are the main differences ? is there something i can do with one method but not with the other one ?</p> http://stackoverflow.com/questions/1770712/metaclass-not-being-called-in-subclasses 3 Metaclass not being called in subclasses uswaretech 2009-11-20T14:18:55Z 2009-11-21T09:20:40Z <p>Here is a python session.</p> <pre><code>&gt;&gt;&gt; class Z(type): def __new__(cls, name, bases, attrs): print cls print name return type(name, bases, attrs) ... &gt;&gt;&gt; class Y(object): __metaclass__ = Z ... &lt;class '__main__.Z'&gt; Y &gt;&gt;&gt; class X(Y): ... pass ... &gt;&gt;&gt; class W(Y): ... __metaclass__ = Z ... &lt;class '__main__.Z'&gt; W &gt;&gt;&gt; </code></pre> <p>After I define class X I expect Z._new__ to be called for it, and to print the two line, which is not happening, (as <strong>metaclass</strong> are inherited?)</p> http://stackoverflow.com/questions/1761148/where-are-methods-defined-at-the-ruby-top-level 0 Where are methods defined at the ruby top level? banister 2009-11-19T05:47:19Z 2009-11-20T15:02:49Z <p>EDIT: <strong>this post only applies to Ruby 1.9</strong></p> <p>Hi,</p> <p>At the toplevel method definition should result in private methods on Object, and tests seem to bear this out:</p> <pre><code>def hello; "hello world"; end Object.private_instance_methods.include?(:hello) #=&gt; true Object.new.send(:hello) #=&gt; "hello world" </code></pre> <p>However, the following also works (at toplevel):</p> <pre><code>self.meta.private_instance_methods(false).include?(:hello) #=&gt; true </code></pre> <p>It appears that the 'hello' method is simultaneously defined on the metaclass of main as well as on Object? What's going on?</p> <p>EDIT: self.meta returns the metaclass of main</p> <p>EDIT: note that the 'false' parameter to private_instance_methods excludes superclass methods from the method list.</p> <p>thanks</p> http://stackoverflow.com/questions/1677468/how-does-a-classmethod-object-work 3 How does a classmethod object work? nikow 2009-11-04T23:46:36Z 2009-11-05T01:35:02Z <p>I'm having trouble to understand how a classmethod object works in Python, especially in the context of metaclasses and in <code>__new__</code>. In my special case I would like to get the name of a classmethod member, when I iterate through the <code>members</code> that were given to <code>__new__</code>.</p> <p>For normal methods the name is simply stored in a <code>__name__</code> attribute, but for a classmethod there is apparently no such attribute. I don't even see how the classmethod is invoked, as there is no <code>__call__</code> attribute either.</p> <p>Can someone explain to me how a classmethod works or point me to some documentation? Googling led me nowhere. Thanks!</p> http://stackoverflow.com/questions/1643292/how-to-add-a-new-closure-to-a-class-in-groovy 0 How to add a new closure to a class in groovy. jjchiw 2009-10-29T12:13:32Z 2009-10-29T15:52:10Z <p>From <a href="http://snipplr.com/view/11958/groovy-delegate-owner-this-references/" rel="nofollow">Snipplr</a></p> <p>Ok here is the script code, in the comments is the question and the exception thrown</p> <pre><code>class Class1 { def closure = { println this.class.name println delegate.class.name def nestedClos = { println owner.class.name } nestedClos() } } def clos = new Class1().closure clos.delegate = this clos() //Now I want to add a new closure to Class1 def newClosure = { println "new Closure" println this.class.name println delegate.class.name def nestedClos = { println owner.class.name } nestedClos() } //getAbc to create a property, not a method Class1.metaClass.getAbc = newClosure //What happens here is that the property abc is not used as a closure per se, it's used //as a property and when I execute it just run the closure and when I want to change //the delegate, a null pointer is thrown clos = new Class1().abc //abc executed instead of passing the reference closure clos.delegate = this //Exception!!!! clos() </code></pre> http://stackoverflow.com/questions/1614798/groovy-adding-methods-to-instances-and-classes-with-metaclass-doesnt-work 0 Groovy: adding methods to instances and classes with metaClass doesn't work? awyatt 2009-10-23T17:15:16Z 2009-10-25T14:55:44Z <p>See the code below. Old instances of a class created before a method is added to the class using metaClass should not understand the method right? The assert statement below the 'PROBLEMATIC LINE' comment is executed when I think it should not be, as the old parentDir instance should not understand the blech() message.</p> <pre><code>// derived from http://ssscripting.wordpress.com/2009/10/20/adding-methods-to-singular-objects-in-groovy/ // Adding a method to a single instance of a class def thisDir = new File('.') def parentDir = new File('..') thisDir.metaClass.bla = { -&gt; "bla: ${File.separator}" } assert thisDir.bla() == "bla: ${File.separator}" : 'thisDir should understand how to respond to bla() message' try { parentDir.bla() assert false : 'parentDir should NOT understand bla() message' } catch (MissingMethodException mmex) { // do nothing : this is expected } // Adding a method to all instances of a class File.metaClass.blech = { -&gt; "blech: ${File.separator}" } try { thisDir.blech() assert false : 'old instance thisDir should NOT understand blech() message' } catch (MissingMethodException mmex) { // do nothing : this is expected } try { parentDir.blech() // PROBLEMATIC LINE BELOW - THE LINE IS EXECUTED WHEN // I THINK AN EXCEPTION SHOULD HAVE BEEN THROWN assert false : 'old instance parentDir should NOT understand blech() message' } catch (MissingMethodException mmex) { // do nothing : this is expected } thisDir = new File('.') parentDir = new File('..') try { thisDir.bla() assert false : 'new instance thisDir should NOT understand bla() message' } catch (MissingMethodException mmex) { // do nothing : this is expected } assert "blech: ${File.separator}" == thisDir.blech() : 'new instance thisDir should understand blech() message' assert "blech: ${File.separator}" == parentDir.blech() : 'new instance parentDir should understand blech() message' </code></pre> http://stackoverflow.com/questions/1090303/grails-behavior-difference-between-run-app-and-run-war 0 Grails behavior difference between run-app and run-war thuktun 2009-07-07T04:05:58Z 2009-08-28T10:27:20Z <p>I'm relatively new to Groovy and Grails and am trying them out in my spare time. I've got a small test Grails application that I'm able to run fine using <code>grails run-app</code>, but <code>grails run-war</code> results in an error.</p> <p>In the <code>grails-app/conf/BootStrip.init</code> method, I'm adding some property getters onto the <code>DefaultGrailsControllerClass</code> and <code>DefaultGrailsApplication</code>:</p> <pre><code>DefaultGrailsControllerClass.metaClass.getMenuText = { -&gt; getPropertyOrStaticPropertyOrFieldValue('menuText', String.class) } DefaultGrailsControllerClass.metaClass.getMenuOrder = { -&gt; getPropertyOrStaticPropertyOrFieldValue('menuOrder', Integer.class) } DefaultGrailsApplication.metaClass.getMenuControllerClasses = { -&gt; controllerClasses.findAll { it.menuText != null }.sort { it.menuOrder } } </code></pre> <p>In my <code>grails-app/views/layouts/main.gsp</code>, I'm using this:</p> <pre><code>&lt;g:each var="c" in="${ grailsApplication.menuControllerClasses }"&gt; &lt;li&gt;&lt;g:link controller="${c.logicalPropertyName}"&gt;${c.menuText}&lt;/g:link&gt;&lt;/li&gt; &lt;/g:each&gt; </code></pre> <p>This works fine under <code>run-app</code>, but running it under <code>run-war</code>, I get the following:</p> <pre> groovy.lang.MissingPropertyException: No such property: menuControllerClasses for class: org.codehaus.groovy.grails.commons.DefaultGrailsApplication </pre> <p>I've tried this under Grails 1.1.1 and 1.2-M1 and get the same result. I've verified that the <code>BootStrap.init</code> method is being called (via a <code>println</code>), but the changes made to the <code>metaClass</code> don't appear to take under <code>run-war</code>.</p> <p>Any idea what I'm missing?</p> http://stackoverflow.com/questions/1263479/reverse-mapping-class-attributes-to-classes-in-python 0 Reverse mapping class attributes to classes in Python wxs 2009-08-11T23:11:58Z 2009-08-12T23:09:11Z <p>Hi all,</p> <p>I have some code in Python where I'll have a bunch of classes, each of which will have an attribute <code>_internal_attribute</code>. I would like to be able to generate a mapping of those attributes to the original class. Essentially I would like to be able to do this:</p> <pre><code>class A(object): _internal_attribute = 'A attribute' class B(object): _internal_attribute = 'B attribute' a_instance = magic_reverse_mapping['A attribute']() b_instance = magic_reverse_mapping['B attribute']() </code></pre> <p>What I'm missing here is how to generate <code>magic_reverse_mapping</code> dict. I have a gut feeling that having a metaclass generate A and B is the correct way to go about this; does that seem right?</p> http://stackoverflow.com/questions/618960/python-metaclasses 2 Python metaclasses interstar 2009-03-06T14:06:27Z 2009-05-27T06:40:19Z <p>I've been hacking classes in python like this :</p> <pre><code>def hack(f,aClass) : class MyClass(aClass) : def f(self) : f() return MyClass A = hack(afunc,A) </code></pre> <p>Which looks pretty clean to me. It takes a class A, creates a new class derived from it, that has an extra method, calling f, and then reassigns the new clas to A.</p> <p>How does this differ from metaclass hacking in Python. What are the advantages of using <strong>metaclass</strong> over this?</p> http://stackoverflow.com/questions/818483/shouldnt-metaclass-force-the-use-of-a-metaclass-in-python 0 Shouldn't __metaclass__ force the use of a metaclass in Python? allyourcode 2009-05-04T01:18:10Z 2009-05-05T05:46:32Z <p>I've been trying to learn about metaclasses in Python. I get the main idea, but I can't seem to activate the mechanism. As I understand it, you can specify M to be as the metaclass when constructing a class K by setting <code>__metaclass__</code> to M at the global or class level. To test this out, I wrote the following program:</p> <pre><code>p = print class M(type): def __init__(*args): type.__init__(*args) print("The rain in Spain") p(1) class ClassMeta: __metaclass__ = M p(2) __metaclass__ = M class GlobalMeta: pass p(3) M('NotMeta2', (), {}) p(4) </code></pre> <p>However, when I run it, I get the following output:</p> <pre> C:\Documents and Settings\Daniel Wong\Desktop>python --version Python 3.0.1 C:\Documents and Settings\Daniel Wong\Desktop>python meta.py 1 2 3 The rain in Spain 4 </pre> <p>Shouldn't I see "The rain in Spain" after 1 and 2? What's going on here?</p> http://stackoverflow.com/questions/815947/callable-as-instancemethod 1 callable as instancemethod? David Alan 2009-05-02T23:58:32Z 2009-05-03T19:37:57Z <p>Let's say we've got a metaclass <code>CallableWrappingMeta</code> which walks the body of a new class, wrapping its methods with a class, <code>InstanceMethodWrapper</code>:</p> <pre><code>import types class CallableWrappingMeta(type): def __new__(mcls, name, bases, cls_dict): for k, v in cls_dict.iteritems(): if isinstance(v, types.FunctionType): cls_dict[k] = InstanceMethodWrapper(v) return type.__new__(mcls, name, bases, cls_dict) class InstanceMethodWrapper(object): def __init__(self, method): self.method = method def __call__(self, *args, **kw): print "InstanceMethodWrapper.__call__( %s, *%r, **%r )" % (self, args, kw) return self.method(*args, **kw) class Bar(object): __metaclass__ = CallableWrappingMeta def __init__(self): print 'bar!' </code></pre> <p>Our dummy wrapper just prints the arguments as they come in. But you'll notice something conspicuous: the method isn't passed the instance-object receiver, because even though <code>InstanceMethodWrapper</code> is callable, it is not treated as a function for the purpose of being converted to an instance method during class creation (after our metaclass is done with it).</p> <p>A potential solution is to use a decorator instead of a class to wrap the methods -- that function will become an instance method. But in the real world, <code>InstanceMethodWrapper</code> is much more complex: it provides an API and publishes method-call events. A class is more convenient (and more performant, not that this matters much).</p> <p>I also tried some dead-ends. Subclassing <code>types.MethodType</code> and <code>types.UnboundMethodType</code> didn't go anywhere. A little introspection, and it appears they decend from <code>type</code>. So I tried using both as a metaclass, but no luck there either. It might be the case that they have special demands as a metaclass, but it seems we're in undocumented territory at this point.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/745819/how-can-i-implement-metaclasses-in-c 1 How can I implement metaclasses in C++? Álvaro 2009-04-13T23:45:14Z 2009-04-14T01:22:48Z <p>I've been reading a bit about what metaclasses are, but I would like to know if they can be achieved in C++.</p> <p>I know that Qt library is using MetaObjects, but it uses an extension of C++ to achieve it. I want to know if it is possible directly in C++.</p> <p>Thanks.</p> http://stackoverflow.com/questions/568973/uml-2-profiles-package-how-to-extend-operation 0 UML 2 Profiles Package: How to extend Operation? UmlNube 2009-02-20T10:02:48Z 2009-04-02T11:10:18Z <p>Hi, guys!</p> <p>I'm in a big trouble with uml profile implementation. The problem is I can't get how can I extend uml Operation class from Infrastructure::Core::Constructs using Profile?</p> <p>The Extension association from Profiles package allow metaclass only to be of type Core::Constructs::Class according to uml metamodel.</p> <p>Is Operation a metaclass? If it is how can I put it as a Core::Consructs::Class? As far as I see non of the uml metamodel Operation does specialize or implement Core::Constructs::Class.</p> <p>Please help me.</p> <p>I'm trying to make my uml profile implementation in C# using third party uml 2.* metamodel implementation in C#.</p> http://stackoverflow.com/questions/550165/how-do-i-reference-the-groovyobject-instance-from-metaclass-methods-in-groovy 1 How do I reference the GroovyObject instance from MetaClass methods in Groovy? Phil 2009-02-15T02:02:45Z 2009-02-15T10:21:47Z <p>This is a contrived example of what I want to do, but minimally expresses the behavior desired. I want to reference the instance of the object on which the property access is being invoked. I tried 'this' first, but that refers to the enclosing class rather than either the MetaClass or the String instance. </p> <pre><code>String.metaClass.propertyMissing = { String name -&gt; 'I do not exist, but my name is ' + &lt;the String instance&gt; + '.' + $name } </code></pre> http://stackoverflow.com/questions/543479/groovy-delegating-metaclass-for-an-interface 1 Groovy: Delegating metaclass for an Interface? slim 2009-02-12T21:46:34Z 2009-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/476586/is-anyone-using-meta-meta-classes-meta-meta-meta-classes-in-python-other-langu 2 Is anyone using meta-meta-classes / meta-meta-meta-classes in Python/ other languages? mike.amy 2009-01-24T20:10:48Z 2009-01-29T11:10:22Z <p>I recently discovered metaclasses in python. </p> <p>Basically a metaclass in python is a class that creates a class. There are many useful reasons why you would want to do this - any kind of class initialisation for example. Registering classes on factories, complex validation of attributes, altering how inheritance works, etc. All of this becomes not only possible but simple.</p> <p>But in python, metaclasses are also plain classes. So, I started wondering if the abstraction could usefully go higher, and it seems to me that it can and that:</p> <ul> <li>a metaclass corresponds to or implements a role in a pattern (as in GOF pattern languages). </li> <li>a meta-metaclass is the pattern itself (if we allow it to create tuples of classes representing abstract roles, rather than just a single class)</li> <li>a meta-meta-metaclass is a <em>pattern factory</em>, which corresponds to the GOF pattern groupings, e.g. Creational, Structural, Behavioural. A factory where you could describe a case of a certain type of problem and it would give you a set of classes that solved it.</li> <li>a meta-meta-meta-metaclass (as far as I could go), is a <em>pattern factory factory</em>, a factory to which you could perhaps describe the type of your problem and it would give you a pattern factory to ask.</li> </ul> <p>I have found some stuff about this online, but mostly not very useful. One problem is that different languages define metaclasses slightly differently.</p> <p>Has anyone else used metaclasses like this in python/elsewhere, or seen this used in the wild, or thought about it? What are the analogues in other languages? E.g. in C++ how deep can the template recursion go?</p> <p>I'd very much like to research it further.</p> http://stackoverflow.com/questions/395982/metaclass-new-cls-and-super-can-someone-explain-the-mechanism-exa 12 "MetaClass", "__new__", "cls" and "super" - can someone explain the mechanism exactly JV 2008-12-28T08:41:45Z 2009-01-12T19:45:39Z <p>I have read posts like these:</p> <ol> <li><a href="http://stackoverflow.com/questions/100003/what-is-a-metaclass-in-python">What is a metaclass in Python?</a> </li> <li><a href="http://stackoverflow.com/questions/392160/what-are-your-concrete-use-cases-for-metaclasses-in-python">What are your (concrete) use-cases for metaclasses in Python?</a></li> <li><a href="http://fuhm.net/super-harmful/" rel="nofollow">Python's Super is nifty, but you can't use it</a></li> </ol> <p>but somehow I got confused, many confusions like</p> <p>when and why i would have to do something like this </p> <pre><code>#refer link1 return super(MyType, cls).__new__(cls, name, bases, newattrs) </code></pre> <p>or</p> <pre><code>#refer link2 return super(MetaSingleton, cls).__call__(*args, **kw) </code></pre> <p>or</p> <pre><code>#refer link2 return type(self.__name__ + other.__name__, (self, other), {}) </code></pre> <p>how does super work exactly?</p> <p>what is class registry and unregistry in link1 and how it exactly works? (I thought it has something to do with singleton, I may be wrong, being from C background, my coding style is still a mix of functional and OO).</p> <p>Can someone explain the flow of class instantiation (subclass, metaclass, super, type) and method invocation (</p> <p><code>metaclass-&gt;__new__, metaclass-&gt;__init__, super-&gt;__new__, subclass-&gt;__init__ inherited from metaclass</code></p> <p>) with a well commented working code (though the first link is quite close, but does not talk about cls keyword and super(..) and registry). Preferably an example with multiple inheritance.</p> <p>P.S.: made the last part as code because SO formatting was converting the text <code>metaclass-&gt;__new__</code> to metaclass-><strong>new</strong></p> <p>For experts here: please feel free to correct the question if there is a snag.</p> http://stackoverflow.com/questions/392160/what-are-your-concrete-use-cases-for-metaclasses-in-python 6 What are your (concrete) use-cases for metaclasses in Python? Ali A 2008-12-24T20:13:06Z 2008-12-28T03:32:00Z <p>I have a friend who likes to use metaclasses, and regularly offers them as a solution.</p> <p>I am of the mind that you almost never need to use metaclasses. Why? because I figure if you are doing something like that to a class, you should probably be doing it to an object. And a small redesign/refactor is in order.</p> <p>Being able to use metaclasses has caused a lot of people in a lot of places to use classes as some kind of second rate object, which just seems disastrous to me. Is programming to be replaced by meta-programming? The addition of class decorators has unfortunately made it even more acceptable.</p> <p>So please, I am desperate to know your valid (concrete) use-cases for metaclasses in Python. Or to be enlightened as to why mutating classes is better than mutating objects, sometimes.</p> <p>I will start:</p> <blockquote> <p>Sometimes when using a third-party library it is useful to be able to mutate the class in a certain way.</p> </blockquote> <p>(this is the only case I can think of, and it's not concrete)</p> http://stackoverflow.com/questions/255157/how-to-override-http-request-verb-in-gae 0 How to override HTTP request verb in GAE toby 2008-10-31T22:37:00Z 2008-11-03T15:12:09Z <p>In the context of a Google App Engine Webapp framework application:</p> <p>I want to changed the request verb of a request in the case a parameter _method is provided, for example if a POST request comes in with a parameter _method=PUT, I need to change the request to call the put method of the handler. This is to cope with the way prototype.js works with verbs like PUT and DELETE(workaround for IE). Here is my first attempt:</p> <pre> class MyRequestHandler(webapp.RequestHandler): def initialize(self, request, response): m = request.get('_method') if m: request.method = m.upper() webapp.RequestHandler.initialize(self, request, response) </pre> <p>The problem is, for some reason whenever the redirect is done, the self.request.params are emptied by the time the handling method(put or delete) is called, even though they were populated when initialize was called. Anyone have a clue why this is? As a workaround I thought I could clone the params at initialize() time, but .copy() did not work, and I haven't found a way to do that either.</p> <p><em>Update: I received a very helpful response from Arachnid. The solution I ended up with uses a metaclass. It is found below.</em></p> http://stackoverflow.com/questions/71817/using-the-docstring-from-one-method-to-automatically-overwrite-that-of-another-me 0 Using the docstring from one method to automatically overwrite that of another method. nikow 2008-09-16T12:46:28Z 2008-09-16T15:19:05Z <p>The problem: I have a class which contains a template method "execute" which calls another method "_execute". Subclasses are supposed to overwrite "_execute" to implement some specific functionality. This functionality should naturally be documented in the docstring of "_execute". I also expect users to create their own subclasses to extend the library. However, another user dealing with such a subclass should only use "execute", so he won't see the correct docstring if he uses "help(...)" in the interpreter.</p> <p>Therefore it would be nice to modify the base class in such a way that in a subclass the docstring of "execute" is automatically replaced with that of "_execute". Any ideas how this might be done?</p> <p>I was thinking of metaclasses to do this, to make this completely transparent to the user. I guess this approach applies to many places where the template pattern is used in Python.</p> <p>Thanks!</p> http://stackoverflow.com/questions/65400/how-to-add-method-using-metaclass 4 How to add method using metaclass Knut Eldhuset 2008-09-15T18:24:14Z 2008-09-15T19:08:32Z <p>How do I add an instance method to a class using a metaclass (yes I do need to use a metaclass)? The following kind of works, but the func_name will still be "foo":</p> <pre><code>def bar(self): print "bar" class MetaFoo(type): __new__(cls, name, bases, dict): dict["foobar"] = bar return type(name, bases, dict) class Foo(object): __metaclass__ = MetaFoo &gt;&gt;&gt; f = Foo() &gt;&gt;&gt; f.foobar() bar &gt;&gt;&gt; f.foobar.func_name 'bar' </code></pre> <p>My problem is that some library code actually uses the func_name and later fails to find the 'bar' method of the Foo instance. I could do:</p> <pre><code>dict["foobar"] = types.FunctionType(bar.func_code, {}, "foobar") </code></pre> <p>There is also types.MethodType, but I need an instance that does'nt exist yet to use that. Am I missing someting here?</p>