1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
# (C) Copyright 2005-2023 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!
""" Utility routines that convert objects to CTrait instances
Most of these functions depend on objects having an informal ``as_ctrait``
interface if they know how to turn themselves into a CTrait instance.
We need to special-case ``TraitType`` subclasses so that we can use them
in trait definitions without needing to call them, eg.::
x = Float
rather than::
x = Float()
To handle this, there is another informal interface with the deliberately
unwieldy classmethod name ``instantiate_and_get_ctrait``.
"""
from functools import partial
from .constants import DefaultValue
def trait_cast(obj):
""" Convert to a CTrait if the object knows how, else return None.
"""
try:
return as_ctrait(obj)
except TypeError:
return None
def as_ctrait(obj):
""" Convert to CTrait if the object knows how, else raise TraitError.
Parameters
----------
obj
An object that supports conversion to `CTrait`. Refer
documentation for when the object supports this conversion.
Returns
-------
ctrait.CTrait
A CTrait object.
Raises
------
TypeError
If the object does not support conversion to CTrait.
"""
if isinstance(obj, type) and hasattr(obj, 'instantiate_and_get_ctrait'):
return obj.instantiate_and_get_ctrait()
elif not isinstance(obj, type) and hasattr(obj, 'as_ctrait'):
return obj.as_ctrait()
else:
raise TypeError(
"Object {!r} does not support conversion to CTrait".format(obj))
def check_trait(trait):
""" Returns either the original value or a valid CTrait if the value can be
converted to a CTrait.
"""
try:
return as_ctrait(trait)
except TypeError:
return trait
#: alias for check_trait
try_trait_cast = check_trait
def trait_from(obj):
""" Returns a trait derived from its input.
"""
from .trait_types import Any
from .traits import Trait
# special-case None
if obj is None:
return Any().as_ctrait()
try:
return as_ctrait(obj)
except TypeError:
return Trait(obj)
def trait_for(trait):
""" Returns the trait corresponding to a specified value.
"""
# XXX this is the same as trait_from except that None is treated
# differently and returns Trait(None) (which is the same as
# Instance(NoneType))
from .traits import Trait
try:
return as_ctrait(trait)
except TypeError:
return Trait(trait)
def _mapped_trait_default(trait, name, instance):
""" Callable providing default for a shadow trait of a mapped trait pair.
Parameters
----------
trait : CTrait
The principal trait of the mapped trait pair.
name : str
The name of the trait on the relevant HasTraits object.
instance : HasTraits
The HasTraits object on which the mapped trait lives.
Returns
-------
default : object
The default value for the shadow trait.
"""
value = getattr(instance, name)
return trait.handler.mapped_value(value)
def mapped_trait_for(trait, name):
""" Returns the 'mapped trait' definition for a mapped trait, the default
value of which is a callable that maps the value of the original trait.
Parameters
----------
trait : ctrait.CTrait
A trait for which the 'mapped trait' definition is being created.
name : str
The name of the trait for which the 'mapped trait' definition is
being created.
Returns
-------
trait_types.Any
A definition of the 'mapped trait'
"""
from .trait_types import Any
mapped_trait = Any(
is_base=False, transient=True, editable=False
).as_ctrait()
mapped_trait.set_default_value(
DefaultValue.callable,
partial(_mapped_trait_default, trait, name)
)
return mapped_trait
|