"""
Generic support for objects with full-featured Parameters and
messaging.
"""
import copy
import re
from operator import itemgetter,attrgetter
from types import FunctionType
from functools import partial, wraps
import logging
from logging import DEBUG, INFO, WARNING, ERROR, CRITICAL # pyflakes:ignore (API import)
VERBOSE = INFO - 1
logging.addLevelName(VERBOSE, "VERBOSE")
# Logger instance to use for param; if "logger" is set to None, the root logger
# will be used.
logger = None
def get_logger():
if logger is None:
# If it was not configured before, do default initialization
if not logging.getLogger().handlers:
logging.basicConfig(level=INFO)
return logging.getLogger()
else:
return logger
# Indicates whether warnings should be raised as errors, stopping
# processing.
warnings_as_exceptions = False
object_count = 0
warning_count = 0
import inspect
[docs]def classlist(class_):
"""
Return a list of the class hierarchy above (and including) the given class.
Same as inspect.getmro(class_)[::-1]
"""
return inspect.getmro(class_)[::-1]
[docs]def descendents(class_):
"""
Return a list of the class hierarchy below (and including) the given class.
The list is ordered from least- to most-specific. Can be useful for
printing the contents of an entire class hierarchy.
"""
assert isinstance(class_,type)
q = [class_]
out = []
while len(q):
x = q.pop(0)
out.insert(0,x)
for b in x.__subclasses__():
if b not in q and b not in out:
q.append(b)
return out[::-1]
[docs]def get_all_slots(class_):
"""
Return a list of slot names for slots defined in class_ and its
superclasses.
"""
# A subclass's __slots__ attribute does not contain slots defined
# in its superclass (the superclass' __slots__ end up as
# attributes of the subclass).
all_slots = []
parent_param_classes = [c for c in classlist(class_)[1::]]
for c in parent_param_classes:
if hasattr(c,'__slots__'):
all_slots+=c.__slots__
return all_slots
[docs]def get_occupied_slots(instance):
"""
Return a list of slots for which values have been set.
(While a slot might be defined, if a value for that slot hasn't
been set, then it's an AttributeError to request the slot's
value.)
"""
return [slot for slot in get_all_slots(type(instance))
if hasattr(instance,slot)]
[docs]def all_equal(arg1,arg2):
"""
Return a single boolean for arg1==arg2, even for numpy arrays
using element-wise comparison.
Uses all(arg1==arg2) for sequences, and arg1==arg2 otherwise.
If both objects have an '_infinitely_iterable' attribute, they are
not be zipped together and are compared directly instead.
"""
if all(hasattr(el, '_infinitely_iterable') for el in [arg1,arg2]):
return arg1==arg2
try:
return all(a1 == a2 for a1, a2 in zip(arg1, arg2))
except TypeError:
return arg1==arg2
# For Python 2 compatibility.
#
# The syntax to use a metaclass changed incompatibly between 2 and
# 3. The add_metaclass() class decorator below creates a class using a
# specified metaclass in a way that works on both 2 and 3. For 3, can
# remove this decorator and specify metaclasses in a simpler way
# (https://docs.python.org/3/reference/datamodel.html#customizing-class-creation)
#
# Code from six (https://bitbucket.org/gutworth/six; version 1.4.1).
[docs]class bothmethod(object): # pylint: disable-msg=R0903
"""
'optional @classmethod'
A decorator that allows a method to receive either the class
object (if called on the class) or the instance object
(if called on the instance) as its first argument.
Code (but not documentation) copied from:
http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/523033.
"""
# pylint: disable-msg=R0903
def __init__(self, func):
self.func = func
# i.e. this is also a non-data descriptor
def __get__(self, obj, type_=None):
if obj is None:
return wraps(self.func)(partial(self.func, type_))
else:
return wraps(self.func)(partial(self.func, obj))
@add_metaclass(ParameterMetaclass)
[docs]class Parameter(object):
"""
An attribute descriptor for declaring parameters.
Parameters are a special kind of class attribute. Setting a
Parameterized class attribute to be a Parameter instance causes
that attribute of the class (and the class's instances) to be
treated as a Parameter. This allows special behavior, including
dynamically generated parameter values, documentation strings,
constant and read-only parameters, and type or range checking at
assignment time.
For example, suppose someone wants to define two new kinds of
objects Foo and Bar, such that Bar has a parameter delta, Foo is a
subclass of Bar, and Foo has parameters alpha, sigma, and gamma
(and delta inherited from Bar). She would begin her class
definitions with something like this:
class Bar(Parameterized):
delta = Parameter(default=0.6, doc='The difference between steps.')
...
class Foo(Bar):
alpha = Parameter(default=0.1, doc='The starting value.')
sigma = Parameter(default=0.5, doc='The standard deviation.',
constant=True)
gamma = Parameter(default=1.0, doc='The ending value.')
...
Class Foo would then have four parameters, with delta defaulting
to 0.6.
Parameters have several advantages over plain attributes:
1. Parameters can be set automatically when an instance is
constructed: The default constructor for Foo (and Bar) will
accept arbitrary keyword arguments, each of which can be used
to specify the value of a Parameter of Foo (or any of Foo's
superclasses). E.g., if a script does this:
myfoo = Foo(alpha=0.5)
myfoo.alpha will return 0.5, without the Foo constructor
needing special code to set alpha.
If Foo implements its own constructor, keyword arguments will
still be accepted if the constructor accepts a dictionary of
keyword arguments (as in ``def __init__(self,**params):``), and
then each class calls its superclass (as in
``super(Foo,self).__init__(**params)``) so that the
Parameterized constructor will process the keywords.
2. A Parameterized class need specify only the attributes of a
Parameter whose values differ from those declared in
superclasses; the other values will be inherited. E.g. if Foo
declares
delta = Parameter(default=0.2)
the default value of 0.2 will override the 0.6 inherited from
Bar, but the doc will be inherited from Bar.
3. The Parameter descriptor class can be subclassed to provide
more complex behavior, allowing special types of parameters
that, for example, require their values to be numbers in
certain ranges, generate their values dynamically from a random
distribution, or read their values from a file or other
external source.
4. The attributes associated with Parameters provide enough
information for automatically generating property sheets in
graphical user interfaces, allowing Parameterized instances to
be edited by users.
Note that Parameters can only be used when set as class attributes
of Parameterized classes. Parameters used as standalone objects,
or as class attributes of non-Parameterized classes, will not have
the behavior described here.
"""
# Because they implement __get__ and __set__, Parameters are known
# as 'descriptors' in Python; see "Implementing Descriptors" and
# "Invoking Descriptors" in the 'Customizing attribute access'
# section of the Python reference manual:
# http://docs.python.org/ref/attribute-access.html
#
# Overview of Parameters for programmers
# ======================================
#
# Consider the following code:
#
#
# class A(Parameterized):
# p = Parameter(default=1)
#
# a1 = A()
# a2 = A()
#
#
# * a1 and a2 share one Parameter object (A.__dict__['p']).
#
# * The default (class) value of p is stored in this Parameter
# object (A.__dict__['p'].default).
#
# * If the value of p is set on a1 (e.g. a1.p=2), a1's value of p
# is stored in a1 itself (a1.__dict__['_p_param_value'])
#
# * When a1.p is requested, a1.__dict__['_p_param_value'] is
# returned. When a2.p is requested, '_p_param_value' is not
# found in a2.__dict__, so A.__dict__['p'].default (i.e. A.p) is
# returned instead.
#
#
# Be careful when referring to the 'name' of a Parameter:
#
# * A Parameterized class has a name for the attribute which is
# being represented by the Parameter ('p' in the example above);
# in the code, this is called the 'attrib_name'.
#
# * When a Parameterized instance has its own local value for a
# parameter, it is stored as '_X_param_value' (where X is the
# attrib_name for the Parameter); in the code, this is called
# the internal_name.
# So that the extra features of Parameters do not require a lot of
# overhead, Parameters are implemented using __slots__ (see
# http://www.python.org/doc/2.4/ref/slots.html). Instead of having
# a full Python dictionary associated with each Parameter instance,
# Parameter instances have an enumerated list (named __slots__) of
# attributes, and reserve just enough space to store these
# attributes. Using __slots__ requires special support for
# operations to copy and restore Parameters (e.g. for Python
# persistent storage pickling); see __getstate__ and __setstate__.
__slots__ = ['_attrib_name','_internal_name','default','doc',
'precedence','instantiate','constant','readonly',
'pickle_default_value']
# When created, a Parameter does not know which
# Parameterized class owns it. If a Parameter subclass needs
# to know the owning class, it can declare an 'objtype' slot
# (which will be filled in by ParameterizedMetaclass)
def __init__(self,default=None,doc=None,precedence=None, # pylint: disable-msg=R0913
instantiate=False,constant=False,readonly=False,
pickle_default_value=True):
"""
Initialize a new Parameter object: store the supplied attributes.
default: the owning class's value for the attribute
represented by this Parameter.
precedence is a value, usually in the range 0.0 to 1.0, that
allows the order of Parameters in a class to be defined (for
e.g. in GUI menus). A negative precedence indicates a
parameter that should be hidden in e.g. GUI menus.
default, doc, and precedence default to None. This is to allow
inheritance of Parameter slots (attributes) from the owning-class'
class hierarchy (see ParameterizedMetaclass).
In rare cases where the default value should not be pickled,
set pickle_default_value=False (e.g. for file search paths).
"""
self._attrib_name = None
self._internal_name = None
self.precedence = precedence
self.default = default
self.doc = doc
self.constant = constant or readonly # readonly => constant
self.readonly = readonly
self._set_instantiate(instantiate)
self.pickle_default_value = pickle_default_value
def _set_instantiate(self,instantiate):
"""Constant parameters must be instantiated."""
# CB: instantiate doesn't actually matter for read-only
# parameters, since they can't be set even on a class. But
# this avoids needless instantiation.
if self.readonly:
self.instantiate = False
else:
self.instantiate = instantiate or self.constant # pylint: disable-msg=W0201
def __get__(self,obj,objtype): # pylint: disable-msg=W0613
"""
Return the value for this Parameter.
If called for a Parameterized class, produce that
class's value (i.e. this Parameter object's 'default'
attribute).
If called for a Parameterized instance, produce that
instance's value, if one has been set - otherwise produce the
class's value (default).
"""
# NB: obj can be None (when __get__ called for a
# Parameterized class); objtype is never None
if obj is None:
result = self.default
else:
result = obj.__dict__.get(self._internal_name,self.default)
return result
def __set__(self,obj,val):
"""
Set the value for this Parameter.
If called for a Parameterized class, set that class's
value (i.e. set this Parameter object's 'default' attribute).
If called for a Parameterized instance, set the value of
this Parameter on that instance (i.e. in the instance's
__dict__, under the parameter's internal_name).
If the Parameter's constant attribute is True, only allows
the value to be set for a Parameterized class or on
uninitialized Parameterized instances.
If the Parameter's readonly attribute is True, only allows the
value to be specified in the Parameter declaration inside the
Parameterized source code. A read-only parameter also
cannot be set on a Parameterized class.
Note that until we support some form of read-only
object, it is still possible to change the attributes of the
object stored in a constant or read-only Parameter (e.g. the
left bound of a BoundingBox).
"""
# NB: obj can be None (when __set__ called for a
# Parameterized class)
if self.constant or self.readonly:
if self.readonly:
raise TypeError("Read-only parameter '%s' cannot be modified"%self._attrib_name)
elif obj is None: #not obj
self.default = val
elif not obj.initialized:
obj.__dict__[self._internal_name] = val
else:
raise TypeError("Constant parameter '%s' cannot be modified"%self._attrib_name)
else:
if obj is None:
self.default = val
else:
obj.__dict__[self._internal_name] = val
def __delete__(self,obj):
raise TypeError("Cannot delete '%s': Parameters deletion not allowed."%self._attrib_name)
def _set_names(self,attrib_name):
self._attrib_name = attrib_name
self._internal_name = "_%s_param_value"%attrib_name
def __getstate__(self):
"""
All Parameters have slots, not a dict, so we have to support
pickle and deepcopy ourselves.
"""
state = {}
for slot in get_occupied_slots(self):
state[slot] = getattr(self,slot)
return state
def __setstate__(self,state):
# set values of __slots__ (instead of in non-existent __dict__)
for (k,v) in state.items():
setattr(self,k,v)
# Define one particular type of Parameter that is used in this file
[docs]class String(Parameter):
__slots__ = ['allow_None']
def __init__(self,default="",allow_None=False,**params):
"""Initialize a string parameter."""
Parameter.__init__(self,default=default,**params)
self.allow_None = (default is None or allow_None)
def __set__(self,obj,val):
if not isinstance(val,str) and not (self.allow_None and val is None):
raise ValueError("String '%s' only takes a string value."%self._attrib_name)
super(String,self).__set__(obj,val)
script_repr_suppress_defaults=True
# CEBALERT: How about some defaults?
# Also, do we need an option to return repr without path, if desired?
# E.g. to get 'pre_plot_hooks()' instead of
# 'topo.command.analysis.pre_plot_hooks()' in the gui?
[docs]def script_repr(val,imports,prefix,settings):
"""
Variant of repr() designed for generating a runnable script.
Instances of types that require special handling can use the
script_repr_reg dictionary. Using the type as a key, add a
function that returns a suitable representation of instances of
that type, and adds the required import statement.
"""
# CB: doc prefix & settings or realize they don't need to be
# passed around, etc.
if isinstance(val,type):
rep = type_script_repr(val,imports,prefix,settings)
elif type(val) in script_repr_reg:
rep = script_repr_reg[type(val)](val,imports,prefix,settings)
elif hasattr(val,'script_repr'):
rep=val.script_repr(imports=imports,prefix=prefix+" ")
else:
rep=repr(val)
return rep
#: see script_repr()
script_repr_reg = {}
# currently only handles list and tuple
def container_script_repr(container,imports,prefix,settings):
result=[]
for i in container:
result.append(script_repr(i,imports,prefix,settings))
## (hack to get container brackets)
if isinstance(container,list):
d1,d2='[',']'
elif isinstance(container,tuple):
d1,d2='(',')'
else:
raise NotImplementedError
rep=d1+','.join(result)+d2
# no imports to add for built-in types
return rep
# why I have to type prefix and settings?
def function_script_repr(fn,imports,prefix,settings):
name = fn.__name__
module = fn.__module__
imports.append('import %s'%module)
return module+'.'+name
def type_script_repr(type_,imports,prefix,settings):
module = type_.__module__
if module!='__builtin__':
imports.append('import %s'%module)
return module+'.'+type_.__name__
script_repr_reg[list]=container_script_repr
script_repr_reg[tuple]=container_script_repr
script_repr_reg[FunctionType]=function_script_repr
#: If not None, the value of this Parameter will be called (using '()')
#: before every call to __db_print, and is expected to evaluate to a
#: string that is suitable for prefixing messages and warnings (such
#: as some indicator of the global state).
dbprint_prefix=None
[docs]def as_uninitialized(fn):
"""
Decorator: call fn with the parameterized_instance's
initialization flag set to False, then revert the flag.
(Used to decorate Parameterized methods that must alter
a constant Parameter.)
"""
@wraps(fn)
def override_initialization(parameterized_instance,*args,**kw):
original_initialized=parameterized_instance.initialized
parameterized_instance.initialized=False
fn(parameterized_instance,*args,**kw)
parameterized_instance.initialized=original_initialized
return override_initialization
@add_metaclass(ParameterizedMetaclass)
[docs]class Parameterized(object):
"""
Base class for named objects that support Parameters and message
formatting.
Automatic object naming: Every Parameterized instance has a name
parameter. If the user doesn't designate a name=<str> argument
when constructing the object, the object will be given a name
consisting of its class name followed by a unique 5-digit number.
Automatic parameter setting: The Parameterized __init__ method
will automatically read the list of keyword parameters. If any
keyword matches the name of a Parameter (see Parameter class)
defined in the object's class or any of its superclasses, that
parameter in the instance will get the value given as a keyword
argument. For example:
class Foo(Parameterized):
xx = Parameter(default=1)
foo = Foo(xx=20)
in this case foo.xx gets the value 20.
Message formatting: Each Parameterized instance has several
methods for optionally printing output. This functionality is
based on the standard Python 'logging' module; using the methods
provided here, wraps calls to the 'logging' module's root logger
and prepends each message with information about the instance
from which the call was made. For more information on how to set
the global logging level and change the default message prefix,
see documentation for the 'logging' module.
"""
name = String(default=None,constant=True,doc="""
String identifier for this object.""")
def __init__(self,**params):
"""
Initialize this Parameterized instance.
The values of parameters can be supplied as keyword arguments
to the constructor (using parametername=parametervalue); these
values will override the class default values for this one
instance.
If no 'name' parameter is supplied, self.name defaults to the
object's class name with a unique number appended to it.
"""
global object_count
# Flag that can be tested to see if e.g. constant Parameters
# can still be set
self.initialized=False
self.__generate_name()
self._setup_params(**params)
object_count += 1
self.debug('Initialized',self)
self.initialized=True
@classmethod
def _add_parameter(cls, param_name,param_obj):
"""
Add a new Parameter object into this object's class.
Supposed to result in a Parameter equivalent to one declared
in the class's source code.
"""
# CEBALERT: can't we just do
# setattr(cls,param_name,param_obj)? The metaclass's
# __setattr__ is actually written to handle that. (Would also
# need to do something about the params() cache. That cache
# is a pain, but it definitely improved the startup time; it
# would be worthwhile making sure no method except for one
# "add_param()" method has to deal with it (plus any future
# remove_param() method.)
type.__setattr__(cls,param_name,param_obj)
ParameterizedMetaclass._initialize_parameter(cls,param_name,param_obj)
# delete cached params()
try:
delattr(cls,'_%s__params'%cls.__name__)
except AttributeError:
pass
@bothmethod
[docs] def set_param(self_or_cls,param_name,val):
"""
Sets the value of param_name to val, after checking that param_name
is a parameter of this object.
(I.e., same as setattr(obj,param_name,val), except the
param_name's existence as a parameter is first checked.)
"""
if param_name not in self_or_cls.params():
raise ValueError("'%s' is not a parameter of %s"%(param_name,self_or_cls))
setattr(self_or_cls,param_name,val)
# CEBALERT: I think I've noted elsewhere the fact that we
# sometimes have a method on Parameter that requires passing the
# owning Parameterized instance or class, and other times we have
# the method on Parameterized itself. In case I haven't written
# that down elsewhere, here it is again. We should clean that up
# (at least we should be consistent).
# cebalert: it's really time to stop and clean up this bothmethod
# stuff and repeated code in methods using it.
# CEBALERT: note there's no state_push method on the class, so
# dynamic parameters set on a class can't have state saved. This
# is because, to do this, state_push() would need to be a
# @bothmethod, but that complicates inheritance in cases where we
# already have a state_push() method. I need to decide what to do
# about that. (isinstance(g,Parameterized) below is used to exclude classes.)
[docs] def state_push(self):
"""
Save this instance's state.
For Parameterized instances, this includes the state of
dynamically generated values.
Subclasses that maintain short-term state should additionally
save and restore that state using state_push() and
state_pop().
Generally, this method is used by operations that need to test
something without permanently altering the objects' state.
"""
for pname,p in self.params().items():
g = self.get_value_generator(pname)
if hasattr(g,'_Dynamic_last'):
g._saved_Dynamic_last.append(g._Dynamic_last)
g._saved_Dynamic_time.append(g._Dynamic_time)
# CB: not storing the time_fn: assuming that doesn't
# change.
elif hasattr(g,'state_push') and isinstance(g,Parameterized):
g.state_push()
[docs] def state_pop(self):
"""
Restore the most recently saved state.
See state_push() for more details.
"""
for pname,p in self.params().items():
g = self.get_value_generator(pname)
if hasattr(g,'_Dynamic_last'):
g._Dynamic_last = g._saved_Dynamic_last.pop()
g._Dynamic_time = g._saved_Dynamic_time.pop()
elif hasattr(g,'state_pop') and isinstance(g,Parameterized):
g.state_pop()
@classmethod
[docs] def set_default(cls,param_name,value):
"""
Set the default value of param_name.
Equivalent to setting param_name on the class.
"""
setattr(cls,param_name,value)
@bothmethod
[docs] def set_dynamic_time_fn(self_or_cls,time_fn,sublistattr=None):
"""
Set time_fn for all Dynamic Parameters of this class or
instance object that are currently being dynamically
generated.
Additionally, sets _Dynamic_time_fn=time_fn on this class or
instance object, so that any future changes to Dynamic
Parmeters can inherit time_fn (e.g. if a Number is changed
from a float to a number generator, the number generator will
inherit time_fn).
If specified, sublistattr is the name of an attribute of this
class or instance that contains an iterable collection of
subobjects on which set_dynamic_time_fn should be called. If
the attribute sublistattr is present on any of the subobjects,
set_dynamic_time_fn() will be called for those, too.
"""
self_or_cls._Dynamic_time_fn = time_fn
if isinstance(self_or_cls,type):
a = (None,self_or_cls)
else:
a = (self_or_cls,)
for n,p in self_or_cls.params().items():
if hasattr(p,'_value_is_dynamic'):
if p._value_is_dynamic(*a):
g = self_or_cls.get_value_generator(n)
g._Dynamic_time_fn = time_fn
if sublistattr:
try:
sublist = getattr(self_or_cls,sublistattr)
except AttributeError:
sublist = []
for obj in sublist:
obj.set_dynamic_time_fn(time_fn,sublistattr)
@as_uninitialized
def _set_name(self,name):
self.name=name
@as_uninitialized
def __generate_name(self):
"""
Set name to a gensym formed from the object's type name and
the object_count.
"""
self._set_name('%s%05d' % (self.__class__.__name__ ,object_count))
# CB: __repr__ is called often; methods it uses should not be too slow
def __repr__(self):
"""
Provide a nearly valid Python representation that could be used to recreate
the item with its parameters, if executed in the appropriate environment.
Returns 'classname(parameter1=x,parameter2=y,...)', listing
all the parameters of this object.
"""
settings = ['%s=%s' % (name,repr(val))
for name,val in self.get_param_values()]
return self.__class__.__name__ + "(" + ", ".join(settings) + ")"
[docs] def script_repr(self,imports=[],prefix=" "):
"""
Variant of __repr__ designed for generating a runnable script.
"""
# Suppresses automatically generated names.
settings=[]
for name,val in self.get_param_values(onlychanged=script_repr_suppress_defaults):
if name == 'name' and (val is not None and
re.match('^'+self.__class__.__name__+'[0-9]+$',val)):
rep=None
else:
rep=script_repr(val,imports,prefix,settings)
if rep is not None:
settings.append('%s=%s' % (name,rep))
# Generate import statement
mod = self.__module__
bits = mod.split('.')
imports.append("import %s"%mod)
imports.append("import %s"%bits[0])
# CB: Doesn't give a nice repr, but I don't see what to do
# otherwise that will work in all cases. Also I haven't
# updated this code in other places (e.g. simulation).
return mod+'.'+self.__class__.__name__ + "(" + (",\n"+prefix).join(settings) + ")"
def __str__(self):
"""Return a short representation of the name and class of this object."""
return "<%s %s>" % (self.__class__.__name__,self.name)
# CEBALERT: designed to avoid any processing unless the print
# level is high enough (e.g. to avoid expensive str(Parameterized
# instance) calls). Not all callers are taking advantage of this
# (either calling str() themselves, resulting in potentially
# expensive operations for things that might never be printed, or
# redundantly using lambda functions to avoid the
# processing. Should fix that.
#
# Note that Python's logging module would simplify print
# statements still further (see "topographica's debug printing"
# emails between CB&JB).
def __db_print(self,level=INFO,*args):
"""
Any of args may be functions, in which case they will be
called. This allows delayed execution, preventing
time-consuming code from being called unless the print level
requires it. (The time-consuming code is usually that used to
build the repr().)
"""
if get_logger().isEnabledFor(level):
# call any args that are functions
args = list(args)
for a in args:
if isinstance(a,FunctionType): args[args.index(a)]=a()
s = ' '.join(str(x) for x in args)
if dbprint_prefix and callable(dbprint_prefix):
prefix=dbprint_prefix() # pylint: disable-msg=E1102
else:
prefix=""
get_logger().log(level, "%s%s: %s" % (prefix,self.name,s))
[docs] def warning(self,*args):
"""
Print the arguments as a warning, unless module variable
warnings_as_exceptions is True, then raise an Exception
containing the arguments.
"""
if not warnings_as_exceptions:
global warning_count
warning_count+=1
self.__db_print(WARNING,*args)
else:
raise Exception(' '.join(["Warning:",]+[str(x) for x in args]))
[docs] def message(self,*args):
"""Print the arguments as a message."""
self.__db_print(INFO,*args)
[docs] def verbose(self,*args):
"""Print the arguments as a verbose message."""
self.__db_print(VERBOSE,*args)
[docs] def debug(self,*args):
"""Print the arguments as a debugging statement."""
self.__db_print(DEBUG,*args)
# CEBALERT: this is a bit ugly
def _instantiate_param(self,param_obj,dict_=None,key=None):
# deepcopy param_obj.default into self.__dict__ (or dict_ if supplied)
# under the parameter's _internal_name (or key if supplied)
dict_ = dict_ or self.__dict__
key = key or param_obj._internal_name
new_object = copy.deepcopy(param_obj.default)
dict_[key]=new_object
if isinstance(new_object,Parameterized):
global object_count
object_count+=1
# CB: writes over name given to the original object;
# should it instead keep the same name?
new_object.__generate_name()
@as_uninitialized
def _setup_params(self,**params):
"""
Initialize default and keyword parameter values.
First, ensures that all Parameters with 'instantiate=True'
(typically used for mutable Parameters) are copied directly
into each object, to ensure that there is an independent copy
(to avoid suprising aliasing errors). Then sets each of the
keyword arguments, warning when any of them are not defined as
parameters.
Constant Parameters can be set during calls to this method.
"""
## Deepcopy all 'instantiate=True' parameters
# (build a set of names first to avoid redundantly instantiating
# a later-overridden parent class's parameter)
params_to_instantiate = {}
for class_ in classlist(type(self)):
for (k,v) in class_.__dict__.items():
# (avoid replacing name with the default of None)
if isinstance(v,Parameter) and v.instantiate and k!="name":
params_to_instantiate[k]=v
for p in params_to_instantiate.values():
self._instantiate_param(p)
## keyword arg setting
for name,val in params.items():
desc = self.__class__.get_param_descriptor(name)[0] # pylint: disable-msg=E1101
if desc:
self.debug("Setting param %s=%s"% (name, val))
else:
self.warning("Setting non-parameter attribute %s=%s using a mechanism intended only for parameters" % (name, val))
# i.e. if not desc it's setting an attribute in __dict__, not a Parameter
setattr(self,name,val)
[docs] def get_param_values(self,onlychanged=False):
"""
Return a list of name,value pairs for all Parameters of this
object.
If onlychanged is True, will only return values that are not
equal to the default value.
"""
# CEB: we'd actually like to know whether a value has been
# explicitly set on the instance, but I'm not sure that's easy
# (would need to distinguish instantiation of default from
# user setting of value).
vals = []
for name,val in self.params().items():
value = self.get_value_generator(name)
if not onlychanged or not all_equal(value,val.default):
vals.append((name,value))
vals.sort(key=itemgetter(0))
return vals
# CB: is there a more obvious solution than making these
# 'bothmethod's?
# An alternative would be to lose these methods completely and
# make users do things via the Parameter object directly.
# CB: is there a performance hit for doing this decoration? It
# would show up in lissom_oo_or because separated composite uses
# this method.
@bothmethod
[docs] def force_new_dynamic_value(cls_or_slf,name): # pylint: disable-msg=E0213
"""
Force a new value to be generated for the dynamic attribute
name, and return it.
If name is not dynamic, its current value is returned
(i.e. equivalent to getattr(name).
"""
param_obj = cls_or_slf.params().get(name)
if not param_obj:
return getattr(cls_or_slf,name)
cls,slf=None,None
if isinstance(cls_or_slf,type):
cls = cls_or_slf
else:
slf = cls_or_slf
if not hasattr(param_obj,'_force'):
return param_obj.__get__(slf,cls)
else:
return param_obj._force(slf,cls)
@bothmethod
[docs] def get_value_generator(cls_or_slf,name): # pylint: disable-msg=E0213
"""
Return the value or value-generating object of the named
attribute.
For most parameters, this is simply the parameter's value
(i.e. the same as getattr()), but Dynamic parameters have
their value-generating object returned.
"""
param_obj = cls_or_slf.params().get(name)
if not param_obj:
value = getattr(cls_or_slf,name)
# CompositeParameter detected by being a Parameter and having 'attribs'
elif hasattr(param_obj,'attribs'):
value = [cls_or_slf.get_value_generator(a) for a in param_obj.attribs]
# not a Dynamic Parameter
elif not hasattr(param_obj,'_value_is_dynamic'):
value = getattr(cls_or_slf,name)
# Dynamic Parameter...
else:
internal_name = "_%s_param_value"%name
if hasattr(cls_or_slf,internal_name):
# dealing with object and it's been set on this object
value = getattr(cls_or_slf,internal_name)
else:
# dealing with class or isn't set on the object
value = param_obj.default
return value
@bothmethod
[docs] def inspect_value(cls_or_slf,name): # pylint: disable-msg=E0213
"""
Return the current value of the named attribute without modifying it.
Same as getattr() except for Dynamic parameters, which have their
last generated value returned.
"""
param_obj = cls_or_slf.params().get(name)
if not param_obj:
value = getattr(cls_or_slf,name)
elif hasattr(param_obj,'attribs'):
value = [cls_or_slf.inspect_value(a) for a in param_obj.attribs]
elif not hasattr(param_obj,'_inspect'):
value = getattr(cls_or_slf,name)
else:
if isinstance(cls_or_slf,type):
value = param_obj._inspect(None,cls_or_slf)
else:
value = param_obj._inspect(cls_or_slf,None)
return value
[docs] def print_param_values(self):
"""Print the values of all this object's Parameters."""
for name,val in self.get_param_values():
print('%s.%s = %s' % (self.name,name,val))
def __getstate__(self):
"""
Save the object's state: return a dictionary that is a shallow
copy of the object's __dict__ and that also includes the
object's __slots__ (if it has any).
"""
# remind me, why is it a copy? why not just state.update(self.__dict__)?
state = self.__dict__.copy()
for slot in get_occupied_slots(self):
state[slot] = getattr(self,slot)
# Note that Parameterized object pickling assumes that
# attributes to be saved are only in __dict__ or __slots__
# (the standard Python places to store attributes, so that's a
# reasonable assumption). (Additionally, class attributes that
# are Parameters are also handled, even when they haven't been
# instantiated - see PickleableClassAttributes.)
return state
def __setstate__(self,state):
"""
Restore objects from the state dictionary to this object.
During this process the object is considered uninitialized.
"""
self.initialized=False
for name,value in state.items():
setattr(self,name,value)
self.initialized=True
@classmethod
[docs] def params(cls,parameter_name=None):
"""
Return the Parameters of this class as the
dictionary {name: parameter_object}
Includes Parameters from this class and its
superclasses.
"""
# CB: we cache the parameters because this method is called often,
# and parameters are rarely added (and cannot be deleted)
try:
pdict=getattr(cls,'_%s__params'%cls.__name__)
except AttributeError:
paramdict = {}
for class_ in classlist(cls):
for name,val in class_.__dict__.items():
if isinstance(val,Parameter):
paramdict[name] = val
# We only want the cache to be visible to the cls on which
# params() is called, so we mangle the name ourselves at
# runtime (if we were to mangle it now, it would be
# _Parameterized.__params for all classes).
setattr(cls,'_%s__params'%cls.__name__,paramdict)
pdict= paramdict
if parameter_name is None:
return pdict
else:
return pdict[parameter_name]
@classmethod
[docs] def print_param_defaults(cls):
"""Print the default values of all cls's Parameters."""
for key,val in cls.__dict__.items():
if isinstance(val,Parameter):
print(cls.__name__+'.'+key, '=', repr(val.default))
[docs] def defaults(self):
"""
Return {parameter_name:parameter.default} for all non-constant
Parameters.
Note that a Parameter for which instantiate==True has its default
instantiated.
"""
d = {}
for param_name,param in self.params().items():
if param.constant:
pass
elif param.instantiate:
self._instantiate_param(param,dict_=d,key=param_name)
else:
d[param_name]=param.default
return d
# CB: seems to work, but conflicts with (hides)
# Simulation(OptionalSingleton)'s __deepcopy__ method. Guess it's
# finally time to clean up that inheritance mess...
## def __deepcopy__(self,memo=None):
## # Deepcopy all attributes in __slots__ and __dict__, except
## # for attributes which are ObjectSelector parameters (which
## # are not copied at all).
## #
## # Should be equivalent to copy.deepcopy(self), but without copying
## # ObjectSelector parameters.
## if memo is None:
## memo = {}
## class_ = self.__class__
## new_instance = class_.__new__(class_)
## memo[id(self)]=new_instance
## ## attributes are in __dict__ and __slots__
## all_attributes = []
## if hasattr(self,'__dict__'):
## all_attributes+=self.__dict__.keys()
## if hasattr(self,'__slots__'):
## all_attributes+=self.__slots__
## attributes_to_copy = all_attributes[:]
## ## remove ObjectSelector parameters from list to be copied
## for param_name,param_obj in self.params().items():
## internal_param_name = "_%s_param_value"%param_name
## # (if param_obj has 'objects' slot, it's assumed to be an ObjectSelector)
## if hasattr(param_obj,'objects') and internal_param_name in attributes_to_copy:
## attributes_to_copy.remove(internal_param_name)
## for attr in all_attributes:
## if attr in attributes_to_copy:
## obj = copy.deepcopy(getattr(self,attr),memo)
## else:
## obj = getattr(self,attr)
## setattr(new_instance,attr,obj)
## return new_instance
[docs]def print_all_param_defaults():
"""Print the default values for all imported Parameters."""
print("_______________________________________________________________________________")
print("")
print(" Parameter Default Values")
print("")
classes = descendents(Parameterized)
classes.sort(key=lambda x:x.__name__)
for c in classes:
c.print_param_defaults()
print("_______________________________________________________________________________")
# Note that with Python 2.6, a fn's **args no longer has to be a
# dictionary. This might allow us to use a decorator to simplify using
# ParamOverrides (if that does indeed make them simpler to use).
# http://docs.python.org/whatsnew/2.6.html
[docs]class ParamOverrides(dict):
"""
A dictionary that returns the attribute of a specified object if
that attribute is not present in itself.
Used to override the parameters of an object.
"""
# NOTE: Attribute names of this object block parameters of the
# same name, so all attributes of this object should have names
# starting with an underscore (_).
def __init__(self,overridden,dict_,allow_extra_keywords=False):
"""
If allow_extra_keywords is False, then all keys in the
supplied dict_ must match parameter names on the overridden
object (otherwise a warning will be printed).
If allow_extra_keywords is True, then any items in the
supplied dict_ that are not also parameters of the overridden
object will be available via the extra_keywords() method.
"""
# we'd like __init__ to be fast because it's going to be
# called a lot. What's the fastest way to move the existing
# params dictionary into this one? Would
# def __init__(self,overridden,**kw):
# ...
# dict.__init__(self,**kw)
# be faster/easier to use?
self._overridden = overridden
dict.__init__(self,dict_)
if allow_extra_keywords:
self._extra_keywords=self._extract_extra_keywords(dict_)
else:
self._check_params(dict_)
def __missing__(self,name):
# Return 'name' from the overridden object
return getattr(self._overridden,name)
def __repr__(self):
# As dict.__repr__, but indicate the overridden object
return dict.__repr__(self)+" overriding params from %s"%repr(self._overridden)
def __getattr__(self,name):
# Provide 'dot' access to entries in the dictionary.
# (This __getattr__ method is called only if 'name' isn't an
# attribute of self.)
return self.__getitem__(name)
def __setattr__(self,name,val):
# Attributes whose name starts with _ are set on self (as
# normal), but all other attributes are inserted into the
# dictionary.
if not name.startswith('_'):
self.__setitem__(name,val)
else:
dict.__setattr__(self,name,val)
def _check_params(self,params):
"""
Print a warning if params contains something that is not a
Parameter of the overridden object.
"""
overridden_object_params = list(self._overridden.params().keys())
for item in params:
if item not in overridden_object_params:
self.warning("'%s' will be ignored (not a Parameter)."%item)
def _extract_extra_keywords(self,params):
"""
Return any items in params that are not also
parameters of the overridden object.
"""
extra_keywords = {}
overridden_object_params = self._overridden.params()
for name,val in params.items():
if name not in overridden_object_params:
extra_keywords[name]=val
# CEBALERT: should we remove name from params
# (i.e. del params[name]) so that it's only available
# via extra_keywords()?
return extra_keywords
# Helper function required by ParameterizedFunction.__reduce__
def _new_parameterized(cls):
return Parameterized.__new__(cls)
[docs]class ParameterizedFunction(Parameterized):
"""
Acts like a Python function, but with arguments that are Parameters.
Implemented as a subclass of Parameterized that, when instantiated,
automatically invokes __call__ and returns the result, instead of
returning an instance of the class.
To obtain an instance of this class, call instance().
"""
__abstract = True
# CEBALERT: shouldn't this have come from a parent class
# somewhere?
def __str__(self):
return self.__class__.__name__+"()"
@bothmethod
[docs] def instance(self_or_cls,**params):
"""
Return an instance of this class, copying parameters from any
existing instance provided.
"""
if isinstance (self_or_cls,ParameterizedMetaclass):
cls = self_or_cls
else:
p = params
params = dict(self_or_cls.get_param_values())
params.update(p)
params.pop('name')
cls = self_or_cls.__class__
inst=Parameterized.__new__(cls)
Parameterized.__init__(inst,**params)
return inst
def __new__(class_,*args,**params):
# Create and __call__() an instance of this class.
inst = class_.instance()
inst._set_name(class_.__name__)
return inst.__call__(*args,**params)
def __call__(self,*args,**kw):
raise NotImplementedError("Subclasses must implement __call__.")
def __reduce__(self):
# Control reconstruction (during unpickling and copying):
# ensure that ParameterizedFunction.__new__ is skipped
state = ParameterizedFunction.__getstate__(self)
# CB: here it's necessary to use a function defined at the
# module level rather than Parameterized.__new__ directly
# because otherwise pickle will find .__new__'s module to be
# __main__. Pretty obscure aspect of pickle.py, or a bug?
return (_new_parameterized,(self.__class__,),state)
[docs] def script_repr(self,imports=[],prefix=" "):
"""
Same as Parameterized.script_repr, except that X.classname(Y
is replaced with X.classname.instance(Y
"""
r = Parameterized.script_repr(self,imports,prefix)
classname=self.__class__.__name__
return r.replace(".%s("%classname,".%s.instance("%classname)
# CBENHANCEMENT: should be able to remove overridable_property when we
# switch to Python 2.6:
# "Properties now have three attributes, getter, setter and deleter,
# that are decorators providing useful shortcuts for adding a getter,
# setter or deleter function to an existing property."
# http://docs.python.org/whatsnew/2.6.html
# Renamed & documented version of OProperty from
# infinitesque.net/articles/2005/enhancing%20Python's%20property.xhtml
[docs]class overridable_property(object):
"""
The same as Python's "property" attribute, but allows the accessor
methods to be overridden in subclasses.
"""
# Delays looking up the accessors until they're needed, rather
# than finding them when the class is first created.
# Based on the emulation of PyProperty_Type() in Objects/descrobject.c
def __init__(self, fget=None, fset=None, fdel=None, doc=None):
self.fget = fget
self.fset = fset
self.fdel = fdel
self.__doc__ = doc
def __get__(self, obj, objtype=None):
if obj is None:
return self
if self.fget is None:
raise AttributeError("unreadable attribute")
if self.fget.__name__ == '<lambda>' or not self.fget.__name__:
return self.fget(obj)
else:
return getattr(obj, self.fget.__name__)()
def __set__(self, obj, value):
if self.fset is None:
raise AttributeError("can't set attribute")
if self.fset.__name__ == '<lambda>' or not self.fset.__name__:
self.fset(obj, value)
else:
getattr(obj, self.fset.__name__)(value)
def __delete__(self, obj):
if self.fdel is None:
raise AttributeError("can't delete attribute")
if self.fdel.__name__ == '<lambda>' or not self.fdel.__name__:
self.fdel(obj)
else:
getattr(obj, self.fdel.__name__)()