Flesh out the borg a little

This commit is contained in:
Chris Jones 2009-10-09 12:25:06 +01:00
parent c1c81d3a91
commit b43695b23d
1 changed files with 31 additions and 2 deletions

View File

@ -6,9 +6,38 @@
# pylint: disable-msg=R0903
class Borg:
"""Definition of a class that can never be duplicated"""
"""Definition of a class that can never be duplicated. Correct usage is
thus:
from borg import Borg
class foo(Borg):
# All attributes on a borg class *must* = None
attribute = None
def __init__(self):
Borg.__init__(self)
def prepare_attributes(self):
if not self.attribute:
self.attribute = []
bar = foo()
bar.prepare_attributes()
The important thing to note is that all attributes of borg classes *must* be
declared as being None. If you attempt to use static class attributes you
will get unpredicted behaviour. Instead, prepare_attributes() must be called
which will then see the attributes in the shared state, and initialise them
if necessary."""
__shared_state = {}
def __init__(self):
"""Class initialiser. Overwrite our class dictionary with the shared
state. This makes us identical to every other instance of this class
type."""
self.__dict__ = self.__shared_state
# vim: set expandtab ts=4 sw=4:
def prepare_attributes(self):
"""This should be used to prepare any attributes of the borg class."""
raise NotImplementedError('prepare_attributes')