A metaclass is a class that contains information about class definitions. Each function in a class has a metaclass that defines the attributes for that function. Each attribute corresponds to a property in the metaclass. The values of each property in the metaclass correspond to the values of each ...
0
votes
1answer
19 views
Metaclass - cannot replace class dict
Running this (Python 3.3.1):
from collections import OrderedDict
class MyType(type):
@classmethod
def __prepare__(*args):
return OrderedDict()
class MyClass2(metaclass=MyType):
...
0
votes
1answer
38 views
Python 2 and 3 metaclass compatibility when kwargs are used
I am making a metaclass where I customize the __new__ method to customize how the new class will be created according to the provided values in kwargs. This probably makes more sense in an example:
...
1
vote
0answers
21 views
+50
UML metamodel: derived, derived union and subsetting
If you have ever worked with the metamodel of UML, you propably know the concepts of unions and subsets - As far as I understand it:
Attributes and associations of an element/class marked as ...
0
votes
0answers
20 views
Populating Factory using Metaclasses in Python
Obviously, registering classes in Python is a major use-case for metaclasses. In this case, I've got a serialization module that currently uses dynamic imports to create classes and I'd prefer to ...
0
votes
1answer
16 views
How can I fix this metaclass-borne TypeError?
I'm trying to create a simple dynamic plugin system in which plugins inheriting from class Bot automatically register themselves on import.
Below is my code thus far. Please note that I am working ...
2
votes
3answers
56 views
How to get attributes in the order they are declared in a Python class?
As described in PEP435, an enum can be defined this way:
class Color(Enum):
red = 1
green = 2
blue = 3
And the resulting enum members of Color can be iterated in definition order: ...
0
votes
1answer
21 views
Groovy respondsTo no argument method
I have an object, MyObject, that I need to check if it contains a method, say format. I need to check if this method signature has no arguments, or if it has an argument of MyType. I don't see a way ...
4
votes
1answer
89 views
What is << in this context?
I'm working on this tutorial here:
http://rubymonk.com/learning/books/4-ruby-primer-ascent/chapters/39-ruby-s-object-model/lessons/131-singleton-methods-and-metaclasses
The lesson is on ...
6
votes
4answers
101 views
Randomizing integer behavior
After seeing this question, I started wondering: is it possible to write a class that behaves like a random integer?
I managed to find some overridable methods with dir():
class RandomInt(int):
...
2
votes
1answer
48 views
Django models inheritance and Meta class
I have a problem with django models inheritance. This is what I have :
class Room(models.Model):
name = models.CharField(max_length=32)
class Container(models.Model):
size = ...
3
votes
1answer
29 views
Python: Setting the metaclass for all files in a folder
I wrote a metaclass that I'm using for logging purposes in my python project. It makes every class automatically log all activity. The only issue is that I don't want to go into every file and have to ...
4
votes
1answer
41 views
Why Groovy's map does not have metaClass?
Why does Groovy's literal map does not have a metaClass?
// lists work as expected:
aList = []
println aList.class // class java.util.ArrayList
println aList.metaClass // gives the full blown ...
4
votes
2answers
69 views
Interception messages in Squeak
I am trying to understand better reflection in Smalltalk. I am using the latest version of Squeak (v4.3). I want to intercept every message sent to instances of one of my classes. I assumed that I ...
0
votes
1answer
94 views
UnitTest (groovy + grails) - Cannot teardown metaclass
I'm having a problem when I try to clean the class.
void testFileExists() {
FileObject file = EasyMock.createMock(FileObject.class)
VfsFileSystemManager.metaClass.getFile = {String s, String a ...
0
votes
1answer
28 views
Python IRC 8.1.1 Invalid Syntax Error with class Connection(object, metaclass=abc.ABCmeta)?
In Python, when trying to use irc-8.1.1's example program irccat2.py, I get this error. I can't find it documented anywhere online. Does anyone know what this means, and how I can fix it? Thank you.
...
0
votes
1answer
14 views
Creating a simple metaclass
I asked a question earlier on today, where I only wanted a solution for my problem.
I was expecting the use of metaclasses, but got something different and it worked.
However, now I'm interested in ...
3
votes
2answers
46 views
How do I create a simple metaclass?
I've been doing python for some time now, and I've always somewhat understood the meaning of metaclasses, but I've never needed one.
Now I think the best solution for my problem is a metaclass ...
0
votes
1answer
63 views
Groovy Dynamic Object - How to properly reset properties?
Based on this question I created a Groovy class that will have dynamic properties.
class MyDynamic {
def propertyMissing( String name, value ) {
this.metaClass."$name" = value
value
}
}
...
1
vote
2answers
60 views
validating argument types for different functions using a single interface (without using inspect)
I wish to check the types of the arguments for each function in the module (without making use of inspect module).
The easiest solution I have done myself is to implement the check in each function ...
2
votes
1answer
69 views
Get attributes for class and instance in python
In python work next code:
class MyClass(object):
field = 1
>>> MyClass.field
1
>>> MyClass().field
1
When I want return value for custom fields I use next code:
class ...
0
votes
1answer
30 views
Can a model manager access its models' Meta attribute (`Meta.unique_together`)?
Here's my attempt at a generalized natural key model manager. It's like the docs except it tries (unsuccessfully) to determine the natural key field names from the Meta.unique_together attribute.
...
0
votes
0answers
60 views
How to debug errors in Groovy metaclass additions?
I have a grails application that fails during save. An exception is thrown from within the domain object save method.
Is it possible to debug and step through a metaclass method implementation? ...
0
votes
2answers
124 views
Are there metaclasses or class reference in D?
Are there any system of classe reference in D? To be more accurate I look for the equivalent of the Delphi
TMyClassRef = class of TMyClass;
This would be used for a factory (just like in the Object ...
7
votes
2answers
338 views
Overriding the default type() metaclass before Python runs
Here be dragons. You've been warned.
I'm thinking about creating a new library that will attempt to help write a better test suite.
In order to do that one of the features is a feature that ...
2
votes
1answer
78 views
Use groovy categories to add dynamic properties
Expanding on this blog post, I am trying to use a category to create a simple DSL for use with the javax.measure (JSR-275) classes (similar to TimeCategory for time intervals)
However, I do not want ...
0
votes
0answers
28 views
Is utilizing simple metaclasses to allow subclasses to overload __init__ without having to call anything additional a good idea?
Some context:
I'm creating a very simple component-entity 2d game engine
Vast majority of classes will have flat subclass hierarchies
Pretty much all base classes don't require any arguments
I'm ...
1
vote
1answer
55 views
Is there a way to make every class in a project implement an interface (without doing a bulk find and replace)
Is there any way to do something like this: In Groovy Is there a way to decorate every class to add tracing? but in C#. Since C# doesn't support metaClass I'm stuck as to how to do it. If I could get ...
2
votes
1answer
59 views
Is a class or instance in the meta class?
from time import ctime
import inspect
class MetaC(type):
def __init__(cls,name,bases,attrd):
print isinstance(cls,MetaC)
print inspect.isclass(cls)
...
0
votes
0answers
65 views
How to override GORM count
I am trying to override GORM's count() method for one domain class in grails 1.3.7 (since the default version results in a sequential scan of the whole table of 20m odd records - not particularly ...
2
votes
1answer
54 views
Why does adding a second attribute to a metaclass-property-closure mix change the first attribute?
I want to understand python metaclasses. For practice I'm implementing a declarative way for writing classes (similar to sqlalchemy.ext.declarative). This looks promising as long as I only have one ...
0
votes
2answers
70 views
Python: In class Foo: x = MyClass() can MyClass know the name of the variable it is assigned to?
I'd like to be able to do the following:
class PrintName:
def __init__( self, obj ):
print obj._name
class SetName:
def __init__( self, name = None ): # Default name is None
...
0
votes
1answer
52 views
Correct way to define a ModelForm metaclass
What I'm trying to do is create a dynamic ModelForm that generates extra fields based on one of its class-attributes to use in a ModelAdmin. Something like:
class MyModelForm(forms.ModelForm):
...
1
vote
2answers
86 views
Adding product() method to Collection with metaClass
I would like to add a method product() to all collections and use it like I can use sum().
I can already get the product of a list by going x.inject { a, b -> a * b }, but I would like to be able ...
2
votes
1answer
46 views
Does a metaclass instantiate the class's attributes first?
From this answer to "what is a metaclass?" I got this:
You write class Foo(object) first, but the class object Foo is not created in memory yet.
Python will look for metaclass in the class ...
0
votes
3answers
145 views
How does Inheritance work in Ruby?
According to Dave Thomas in his talk about the Ruby Object Model, there are no "class methods" in Ruby. There is only difference between whether the receiver of the method is a "class object" or an ...
1
vote
1answer
139 views
Custom metaclass to create hybrid properties in SQLAlchemy
I want to create a custom interface on top of SQLAlchemy so that some pre-defined hybrid properties are supported transparently.
Specifically, I want to create a class SpecialColumn and a metaclass ...
1
vote
3answers
72 views
Why is my metaclass not behaving as expected
Okay so Im starting to mess around with voodoo and the darker side of Python with metaclasses, I wanted to get a simple example working before I modified it further, why is it not printing the print ...
0
votes
1answer
93 views
Django __getitem__ on model: metaclass conflict
In Django, I'd like to implement __getitem__ on a class level (so in the below example, I want to do Alpha['a']). I've found that I need a metaclass for this: just like it this needs to be implemented ...
7
votes
2answers
164 views
Dynamically adding methods with or without metaclass in Python
Update - 2012/12/13
Just to clarify - I'm not so much interested in ways how to add methods to classes - as you can see below in my question and in people's answers, there is more than one way to do ...
1
vote
2answers
72 views
metaclass conflict with single inhertance
I'm doing a single inheritance subclass for a django admin class like so:
from django.contrib.auth import admin as auth_admin
class UserAdmin(auth_admin.UserAdmin):
pass
And I'm getting the ...
2
votes
1answer
103 views
Python metaclass arguments
I'm trying to dynamically generate classes in python 2.7, and am wondering if you can easily pass arguments to the metaclass from the class object.
I've read this post, which is awesome, but doesn't ...
1
vote
1answer
110 views
python dynamically create class with inner class
I'm using django-tastypie and I need to create classes like this from my django models:
class MyModelResource(ModelResource):
class Meta:
queryset = MyModel.objects.all()
...
1
vote
1answer
73 views
Does IronPython support metaclasses?
Are Python metaclasses, and class factories fully supported by IronPython? If I have a functional code (in CPython 2.7) full with these thing will just work in IronPython?
1
vote
2answers
142 views
Python override a function/method without retyping function arguments
For example I have
class A:
def f(self, x, y, z):
# do something with x, y, z
Is it possible to override f without retyping "self, x, y, z". Basically I have a class with function with ...
3
votes
1answer
65 views
Can Groovy objects be invoked like functions with parameters?
In Groovy, I can make an object invokable like a function by monkey-patching the metaclass' call method:
myObject.metaClass.call = { "hello world" }
println myObject() // prints "hello world"
...
0
votes
1answer
48 views
Different strategies in python for defining plugins that can also run outside of their defining framework
The scenario is as follows:
I'm building a framework that will use external scripts as plugins. People will be able to create "adapters" to the scripts that conform to some interface. These adapters ...
-1
votes
1answer
168 views
How to implement MVC like this in Python?
For example, I have a config file named rule1.conf like this:
[Basis]
user = "sunhf"
time = "2012-12-31"
[Bowtie]
path = "/usr/bin/bowtie"
index = "/mnt/Storage/sync/hg19"
And a models.py like ...
0
votes
0answers
60 views
Grails Plugin - Dynamic Method for Controller in Scaffolded doesn't work
I have my own Grails plugin where I add a dynamic method using doWithDynamicMethods closure:
def doWithDynamicMethods = {ctx ->
['controller'].each {
...
2
votes
1answer
41 views
Why do some languages have metaclasses?
I see Java has only one metaclass (the Class class), but other languages, say Smalltalk, have one metaclass for each Class.
Why is that? What's the need for metaclasses? What difference does it make ...
0
votes
0answers
115 views
Python design pattern for ORM
Consider the following architecture:
[API server] <--- XML over HTTP ---> [WSGI app server] <--- HTML,JSON over HTTP ---> [Browser]
The WSGI app server needs to communicate with the API server ...

