Is anyone using meta-meta-classes / meta-meta-meta-classes in Python/ other languages? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T13:42:30Z http://stackoverflow.com/feeds/question/476586 http://www.creativecommons.org/licenses/by-nc/2.5/rdf 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/476586/is-anyone-using-meta-meta-classes-meta-meta-meta-classes-in-python-other-langu/476633#476633 5 Answer by S.Lott for Is anyone using meta-meta-classes / meta-meta-meta-classes in Python/ other languages? S.Lott 2009-01-24T20:49:28Z 2009-01-29T11:10:22Z <p>To answer your question: no.</p> <p>Feel free to research it further. </p> <p>Note, however, that you've conflated design patterns (which are just ideas) with code (which is an implementation.)</p> <p>Good code often reflects a number of interlocking design patterns. There's no easy way for formalize this. The best you can do is a nice picture, well-written docstrings, and method names that reflect the various design patterns.</p> <p>Also note that a meta-class is a class. That's a loop. There's no higher level of abstractions. At that point, it's just intent. The idea of meta-meta-class doesn't mean much -- it's a meta-class for meta-classes, which is silly but technically possible. It's all just a class, however.</p> <p><hr /></p> <p><strong>Edit</strong></p> <p>"Are classes that create metaclasses really so silly? How does their utility suddenly run out?"</p> <p>A class that creates a class is fine. That's pretty much it. The fact that the target class is a meta class or an abstract superclass or a concrete class doesn't matter. Metaclasses make classes. They might make other metaclasses, which is weird, but they're still just metaclasses making classes.</p> <p>The utility "suddenly" runs out because there's no actual thing you need (or can even write) in a metaclass that makes another metaclass. It isn't that it "suddenly" becomes silly. It's that there's nothing useful there.</p> <p>As I seed, feel free to research it. For example, actually write a metaclass that builds another metaclass. Have fun. There might be something useful there.</p> <p>The point of OO is to write class definitions that model real-world entities. As such, a metaclass is sometimes handy to define cross-cutting aspects of several related classes. (It's a way to do some Aspect-Oriented Programming.) That's all a metaclass can really do; it's a place to hold a few functions, like <code>__new__()</code>, that aren't proper parts of the class itself.</p> http://stackoverflow.com/questions/476586/is-anyone-using-meta-meta-classes-meta-meta-meta-classes-in-python-other-langu/476641#476641 6 Answer by Bill Karwin for Is anyone using meta-meta-classes / meta-meta-meta-classes in Python/ other languages? Bill Karwin 2009-01-24T21:00:00Z 2009-01-24T21:00:00Z <p>This reminds me of the eternal quest some people seem to be on to make a "generic implementation of a pattern." Like a factory that can create any object (<a href="http://discuss.joelonsoftware.com/default.asp?joel.3.219431.12" rel="nofollow">including another factory</a>), or a general-purpose dependency injection framework that is far more complex to manage than simply writing code that actually <em>does</em> something.</p> <p>I had to deal with people intent on abstraction to the point of navel-gazing when I was managing the Zend Framework project. I turned down a bunch of proposals to create components that didn't do anything, they were just magical implementations of GoF patterns, as though the pattern were a goal in itself, instead of a means to a goal.</p> <p>There's a point of diminishing returns for abstraction. Some abstraction is great, but eventually you need to write code that does something useful.</p> <p>Otherwise it's just <a href="http://en.wikipedia.org/wiki/Turtles_all_the_way_down" rel="nofollow">turtles all the way down</a>.</p> http://stackoverflow.com/questions/476586/is-anyone-using-meta-meta-classes-meta-meta-meta-classes-in-python-other-langu/476743#476743 1 Answer by Rafał Dowgird for Is anyone using meta-meta-classes / meta-meta-meta-classes in Python/ other languages? Rafał Dowgird 2009-01-24T22:08:59Z 2009-01-24T22:08:59Z <p>The class system in Smalltalk is an interesting one to study. In Smalltalk, everything is an object and every object has a class. This doesn't imply that the hierarchy goes to infinity. If I remember correctly, it goes something like:</p> <p>5 -> Integer -> Integer class -> Metaclass -> Metaclass class -> Metaclass -> ... (it loops)</p> <p>Where '->' denotes "is an instance of".</p>