Dynamic classes

..topic: Why dynamic classes?

The short answer:

  • Multiple inheritance is a powerful tool for constructing new classes by combining preexisting building blocks.
  • There is a combinatorial explosion in the number of potentially useful classes that can be produced this way.
  • The implementation of standard mathematical constructions calls for producing such combinations automatically.
  • Dynamic classes, i.e. classes created on the fly by the Python interpreter, are a natural mean to achieve this.

The long answer:

Say we want to construct a new class MyPermutation for permutations in a given set S (in Sage, S will be modelled by a parent, but we won’t discuss this point here). First, we have to choose a data structure for the permutations, typically among the following:

  • Stored by cycle type
  • Stored by code
  • Stored in list notation - C arrays of short ints (for small permutations) - python lists of ints (for huge permutations) - ...
  • Stored by reduced word
  • Stored as a function
  • ...

Luckily, the Sage library provides (or will provide) classes implementing each of those data structures. Those classes all share a common interface (or possibly a common abstract base class). So we can just derive our class from the chosen one:

class MyPermutation(PermutationCycleType):
    ...

Then we may want to further choose a specific memory behavior (unique representation, copy-on-write) which (hopefuly) can again be achieved by inheritance.

class MyPermutation(UniqueRepresentation, PermutationCycleType):
...

Finaly, we may want to endow the permutations in S with further operations coming from the (algebraic) structure of S:

  • group operations
  • or just monoid operations (for a subset of permutations not stable by inverse)
  • poset operations (for left/right/Bruhat order)
  • word operations (searching for substrings, patterns, ...)

Or any combination thereof. Now, our class typically looks like:

class MyPermutation(UniqueRepresentation, PermutationCycleType, PosetElement, GroupElement):
     ...

Note the combinatorial explosion in the potential number of classes which can be created this way.

In practice, such classes will be used in mathematical constructions like:

SymmetricGroup(5).subset(... TODO: find a good example in the context above ...)

In such a construction, the structure of the result, and therefore the operations on its elements can only be determined at execution time. Let us take another standard construction:

A = cartesian_product( B, C )

Depending on the structure of B and C, and possibly on further options passed down by the user, A may be:

  • an enumerated set
  • a group
  • an algebra
  • a poset
  • ...

Or any combination thereof.

Hardcoding classes for all potential combinations would be at best tedious. Furthermore, this would require a cumbersome mechanism to lookup the appropriate class depending on the desired combination.

Instead, one may use the ability of Python to create new classes dynamicaly:

type(“class name”, tuple of base classes, dictionary of methods)

This paradigm is powerful, but there are some technicalities to address. The purpose of this library is to standardize its use within Sage, and in particular to ensure that the constructed classes are reused whenever possible (unique representation), and can be pickled.

..topic: combining dynamic classes and Cython classes

Cython classes cannot inherit from a dynamic class (there might be some partial support for this in the future). On the other hand, such an inheritance can be partially emulated using __getattr__(). See sage.categories.examples.semigroups_cython for an example.

class sage.structure.dynamic_class.DynamicClasscallMetaclass(*args)
Bases: sage.structure.dynamic_class.DynamicMetaclass, sage.misc.classcall_metaclass.ClasscallMetaclass
class sage.structure.dynamic_class.DynamicMetaclass

Bases: type

A metaclass implementing an appropriate reduce-by-construction method

class sage.structure.dynamic_class.TestClass

A class used for checking that introspection works

bla()
bla ...
sage.structure.dynamic_class.dynamic_class(name, bases, cls=None, reduction=None, doccls=None)
INPUT::
  • name: a string
  • bases: a tuple of classes
  • cls: a class or None
  • reduction: a tuple or None
  • doccls: a class or None

Constructs dynamically a new class C with name name, and bases bases. If cls is provided, then its methods will be inserted into C as well. The module of C is set from the module of cls or from the first base class (bases should be non empty if cls` is ``None).

Documentation and source instrospection is taken from doccls, or cls if doccls is None, or bases[0] if both are None.

The constructed class can safely be pickled (assuming the arguments themselves can).

The result is cached, ensuring unique representation of dynamic classes.

See sage.structure.dynamic_class? for a discussion of the dynamic classes paradigm, and its relevance to Sage.

EXAMPLES:

To setup the stage, we create a class Foo with some methods, cached methods, and lazy_attributes, and a class Bar:

sage: from sage.misc.lazy_attribute import lazy_attribute
sage: from sage.misc.cachefunc import cached_function
sage: from sage.structure.dynamic_class import dynamic_class
sage: class Foo(object):
...       "The Foo class"
...       def __init__(self, x):
...           self._x = x
...       @cached_method
...       def f(self):
...           return self._x^2
...       def g(self):
...           return self._x^2
...       @lazy_attribute
...       def x(self):
...           return self._x
...
sage: class Bar:
...       def bar(self):
...           return self._x^2
...

We now create a class FooBar which is a copy of Foo, except that it also inherits from Bar:

sage: FooBar = dynamic_class("FooBar", (Bar,), Foo)
sage: x = FooBar(3)
sage: x.f()
9
sage: x.f() is x.f()
True
sage: x.x
3
sage: x.bar()
9
sage: FooBar.__name__
'FooBar'
sage: FooBar.__module__
'__main__'

sage: Foo.__bases__
(<type 'object'>,)
sage: FooBar.__bases__
(<type 'object'>, <class __main__.Bar at ...>)
sage: Foo.mro()
[<class '__main__.Foo'>, <type 'object'>]
sage: FooBar.mro()
[<class '__main__.FooBar'>, <type 'object'>, <class __main__.Bar at ...>]

Dynamic classes are pickled by construction. Namely, upon unpickling, the class will be reconstructed by recalling dynamic_class with the same arguments:

sage: type(FooBar).__reduce__(FooBar)
(<function dynamic_class at ...>, ('FooBar', (<class __main__.Bar at ...>,), <class '__main__.Foo'>, None, None))

Technically, this is achieved by using a metaclass, since the Python pickling protocol for classes is to pickle by name:

sage: type(FooBar)
<class 'sage.structure.dynamic_class.DynamicMetaclass'>

The following (meaningless) example illustrates how to customize the result of the reduction:

sage: BarFoo = dynamic_class("BarFoo", (Foo,), Bar, reduction = (str, (3,)))
sage: type(BarFoo).__reduce__(BarFoo)
(<type 'str'>, (3,))
sage: loads(dumps(BarFoo))
'3'

TESTS:

sage: import __main__
sage: __main__.Foo = Foo
sage: __main__.Bar = Bar
sage: x = FooBar(3)
sage: x.__dict__      # Breaks without the __dict__ deletion in dynamic_class_internal
{'_x': 3}

sage: type(FooBar).__reduce__(FooBar)
(<function dynamic_class at ...>, ('FooBar', (<class __main__.Bar at ...>,), <class '__main__.Foo'>, None, None))
sage: import cPickle
sage: cPickle.loads(cPickle.dumps(FooBar)) == FooBar
True

We check that instrospection works reasonably:

sage: sage.misc.sageinspect.sage_getdoc(FooBar)
'The Foo class\n'

Finally, we check that classes derived from UniqueRepresentation are handled gracefuly (despite them also using a metaclass):

sage: FooUnique = dynamic_class("Foo", (Bar, UniqueRepresentation))
sage: loads(dumps(FooUnique)) is FooUnique
True

Previous topic

Unique Representation

Next topic

Mutability Cython Implementation

This Page