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 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602
|
# (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!
import copy
import copyreg
from itertools import chain
from weakref import ref
from traits.observation.i_observable import IObservable
from traits.trait_base import _validate_everything
from traits.trait_errors import TraitError
class TraitSetEvent(object):
""" An object reporting in-place changes to a traits sets.
Parameters
----------
removed : set, optional
Old values that were removed from the set.
added : set, optional
New values added to the set.
Attributes
----------
removed : set
Old values that were removed from the set.
added : set
New values added to the set.
"""
def __init__(self, *, removed=None, added=None):
if removed is None:
removed = set()
self.removed = removed
if added is None:
added = set()
self.added = added
def __repr__(self):
return (
f"{self.__class__.__name__}("
f"removed={self.removed!r}, "
f"added={self.added!r})"
)
@IObservable.register
class TraitSet(set):
""" A subclass of set that validates and notifies listeners of changes.
Parameters
----------
value : iterable, optional
Iterable providing the items for the set.
item_validator : callable, optional
Called to validate and/or transform items added to the set. The
callable should accept a single item and return the transformed
item, raising TraitError for invalid items. If not given, no
item validation is performed.
notifiers : list of callable, optional
A list of callables with the signature::
notifier(trait_set, removed, added)
Where 'added' is a set containing new values that have been added.
And 'removed' is a set containing old values that have been removed.
If this argument is not given, the list of notifiers is initially
empty.
Attributes
----------
item_validator : callable
Called to validate and/or transform items added to the set. The
callable should accept a single item and return the transformed
item, raising TraitError for invalid items.
notifiers : list of callable
A list of callables with the signature::
notifier(trait_set, removed, added)
where 'added' is a set containing new values that have been added
and 'removed' is a set containing old values that have been removed.
"""
def __new__(cls, *args, **kwargs):
self = super().__new__(cls)
self.item_validator = _validate_everything
self.notifiers = []
return self
def __init__(self, value=(), *, item_validator=None, notifiers=None):
if item_validator is not None:
self.item_validator = item_validator
super().__init__(self.item_validator(item) for item in value)
if notifiers is not None:
self.notifiers = notifiers
def notify(self, removed, added):
""" Call all notifiers.
This simply calls all notifiers provided by the class, if any.
The notifiers are expected to have the signature::
notifier(trait_set, removed, added)
Any return values are ignored. Any exceptions raised are not
handled. Notifiers are therefore expected not to raise any
exceptions under normal use.
Parameters
----------
removed : set
The items that have been removed.
added : set
The new items that have been added to the set.
"""
for notifier in self.notifiers:
notifier(self, removed, added)
# -- set interface -------------------------------------------------------
def __iand__(self, value):
""" Return self &= value.
Parameters
----------
value : set or frozenset
A value.
Returns
-------
self : TraitSet
The updated set.
"""
old_set = self.copy()
retval = super().__iand__(value)
removed = old_set.difference(self)
if len(removed) > 0:
self.notify(removed, set())
return retval
def __ior__(self, value):
""" Return self |= value.
Parameters
----------
value : set or frozenset
A value.
Returns
-------
self : TraitSet
The updated set.
"""
old_set = self.copy()
# Validate each item in value, only if value is a set or frozenset.
# We do not want to convert any other iterable type to a set
# so that super().__ior__ raises the appropriate error message
# for all other iterables.
if isinstance(value, (set, frozenset)):
value = {self.item_validator(item)
for item in value}
retval = super().__ior__(value)
added = self.difference(old_set)
if len(added) > 0:
self.notify(set(), added)
return retval
def __isub__(self, value):
""" Return self-=value.
Parameters
----------
value : set or frozenset
A value.
Returns
-------
self : TraitSet
The updated set.
"""
old_set = self.copy()
retval = super().__isub__(value)
removed = old_set.difference(self)
if len(removed) > 0:
self.notify(removed, set())
return retval
def __ixor__(self, value):
""" Return self ^= value.
Parameters
----------
value : set or frozenset
A value.
Returns
-------
self : TraitSet
The updated set.
"""
removed = set()
added = set()
# Validate each item in value, only if value is a set or frozenset.
# We do not want to convert any other iterable type to a set
# so that super().__ixor__ raises the appropriate error message
# for all other iterables.
if isinstance(value, (set, frozenset)):
values = set(value)
removed = self.intersection(values)
raw_added = values.difference(removed)
validated_added = {self.item_validator(item) for item in
raw_added}
added = validated_added.difference(self)
value = added | removed
retval = super().__ixor__(value)
if removed or added:
self.notify(removed, added)
return retval
def add(self, value):
""" Add an element to a set.
This has no effect if the element is already present.
Parameters
----------
value : any
The value to add to the set.
"""
value = self.item_validator(value)
value_in_self = value in self
super().add(value)
if not value_in_self:
self.notify(set(), {value})
def clear(self):
""" Remove all elements from this set. """
removed = set(self)
super().clear()
if removed:
self.notify(removed, set())
def discard(self, value):
""" Remove an element from the set if it is a member.
If the element is not a member, do nothing.
Parameters
----------
value : any
An item in the set
"""
value_in_self = value in self
super().discard(value)
if value_in_self:
self.notify({value}, set())
def difference_update(self, *args):
""" Remove all elements of another set from this set.
Parameters
----------
args : iterables
The other iterables.
"""
old_set = self.copy()
super().difference_update(*args)
removed = old_set.difference(self)
if len(removed) > 0:
self.notify(removed, set())
def intersection_update(self, *args):
""" Update the set with the intersection of itself and another set.
Parameters
----------
args : iterables
The other iterables.
"""
old_set = self.copy()
super().intersection_update(*args)
removed = old_set.difference(self)
if len(removed) > 0:
self.notify(removed, set())
def pop(self):
""" Remove and return an arbitrary set element.
Raises KeyError if the set is empty.
Returns
-------
item : any
An element from the set.
Raises
------
KeyError
If the set is empty.
"""
removed = super().pop()
self.notify({removed}, set())
return removed
def remove(self, value):
""" Remove an element that is a member of the set.
If the element is not a member, raise a KeyError.
Parameters
----------
value : any
An element in the set
Raises
------
KeyError
If the value is not found in the set.
"""
super().remove(value)
self.notify({value}, set())
def symmetric_difference_update(self, value):
""" Update the set with the symmetric difference of itself and another.
Parameters
----------
value : iterable
"""
values = set(value)
removed = self.intersection(values)
raw_result = values.difference(removed)
validated_result = {self.item_validator(item) for item in raw_result}
added = validated_result.difference(self)
super().symmetric_difference_update(removed | added)
if removed or added:
self.notify(removed, added)
def update(self, *args):
""" Update the set with the union of itself and others.
Parameters
----------
args : iterables
The other iterables.
"""
validated_values = {self.item_validator(item)
for item in chain.from_iterable(args)}
added = validated_values.difference(self)
super().update(added)
if len(added) > 0:
self.notify(set(), added)
# -- pickle and copy support ----------------------------------------------
def __deepcopy__(self, memo):
""" Perform a deepcopy operation.
Notifiers are transient and should not be copied.
"""
# notifiers are transient and should not be copied
result = TraitSet(
[copy.deepcopy(x, memo) for x in self],
item_validator=copy.deepcopy(self.validator, memo),
notifiers=[],
)
return result
def __getstate__(self):
""" Get the state of the object for serialization.
Notifiers are transient and should not be serialized.
"""
result = self.__dict__.copy()
# notifiers are transient and should not be serialized
del result["notifiers"]
return result
def __setstate__(self, state):
""" Restore the state of the object after serialization.
Notifiers are transient and are restored to the empty list.
"""
state['notifiers'] = []
self.__dict__.update(state)
# -- Implement IObservable ------------------------------------------------
def _notifiers(self, force_create):
""" Return a list of callables where each callable is a notifier.
The list is expected to be mutated for contributing or removing
notifiers from the object.
Parameters
----------
force_create: boolean
Not used here.
"""
return self.notifiers
class TraitSetObject(TraitSet):
""" A specialization of TraitSet with a default validator and notifier
for compatibility with Traits versions before 6.0.
Parameters
----------
trait : CTrait
The trait that the set has been assigned to.
object : HasTraits
The object this set belongs to. Can also be None in cases where the
set has been disconnected from its HasTraits parent.
name : str
The name of the trait on the object.
value : iterable
The initial value of the set.
Attributes
----------
trait : CTrait
The trait that the set has been assigned to.
object : callable
A callable that when called with no arguments returns the HasTraits
object that this set belongs to, or None if there is no such object.
name : str
The name of the trait on the object.
value : iterable
The initial value of the set.
"""
def __init__(self, trait, object, name, value):
self.trait = trait
self.object = (lambda: None) if object is None else ref(object)
self.name = name
self.name_items = None
if trait.has_items:
self.name_items = name + "_items"
super().__init__(value, item_validator=self._validator,
notifiers=[self.notifier])
def _validator(self, value):
""" Validates the value by calling the inner trait's validate method.
Parameters
----------
value : any
The value to be validated.
Returns
-------
value : any
The validated value.
Raises
------
TraitError
On validation failure for the inner trait.
"""
object_ref = getattr(self, 'object', None)
trait = getattr(self, 'trait', None)
if object_ref is None or trait is None:
return value
object = object_ref()
# validate the new value(s)
validate = trait.item_trait.validate
if validate is None:
return value
try:
return validate(object, self.name, value)
except TraitError as excp:
excp.set_prefix("Each element of the")
raise excp
def notifier(self, trait_set, removed, added):
""" Converts and consolidates the parameters to a TraitSetEvent and
then fires the event.
Parameters
----------
trait_set : set
The complete set
removed : set
Set of values that were removed.
added : set
Set of values that were added.
"""
if self.name_items is None:
return
object = self.object()
if object is None:
return
if getattr(object, self.name) is not self:
# Workaround having this set inside another container which
# also uses the name_items trait for notification.
# Similar to enthought/traits#25
return
event = TraitSetEvent(removed=removed, added=added)
items_event = self.trait.items_event()
object.trait_items_event(self.name_items, event, items_event)
# -- pickle and copy support ----------------------------------------------
def __deepcopy__(self, memo):
""" Perform a deepcopy operation.
Notifiers are transient and should not be copied.
"""
result = TraitSetObject(
self.trait,
None,
self.name,
{copy.deepcopy(x, memo) for x in self},
)
return result
def __getstate__(self):
""" Get the state of the object for serialization.
Notifiers are transient and should not be serialized.
"""
result = super().__getstate__()
del result["object"]
del result["trait"]
return result
def __setstate__(self, state):
""" Restore the state of the object after serialization.
Notifiers are transient and are restored to the empty list.
"""
state.setdefault("name", "")
state["notifiers"] = [self.notifier]
state["object"] = lambda: None
state["trait"] = None
self.__dict__.update(state)
def __reduce_ex__(self, protocol=None):
""" Overridden to make sure we call our custom __getstate__.
"""
return (
copyreg._reconstructor,
(type(self), set, list(self)),
self.__getstate__(),
)
|