_scons_sets.py
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:19k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. """Classes to represent arbitrary sets (including sets of sets).
  2. This module implements sets using dictionaries whose values are
  3. ignored.  The usual operations (union, intersection, deletion, etc.)
  4. are provided as both methods and operators.
  5. Important: sets are not sequences!  While they support 'x in s',
  6. 'len(s)', and 'for x in s', none of those operations are unique for
  7. sequences; for example, mappings support all three as well.  The
  8. characteristic operation for sequences is subscripting with small
  9. integers: s[i], for i in range(len(s)).  Sets don't support
  10. subscripting at all.  Also, sequences allow multiple occurrences and
  11. their elements have a definite order; sets on the other hand don't
  12. record multiple occurrences and don't remember the order of element
  13. insertion (which is why they don't support s[i]).
  14. The following classes are provided:
  15. BaseSet -- All the operations common to both mutable and immutable
  16.     sets. This is an abstract class, not meant to be directly
  17.     instantiated.
  18. Set -- Mutable sets, subclass of BaseSet; not hashable.
  19. ImmutableSet -- Immutable sets, subclass of BaseSet; hashable.
  20.     An iterable argument is mandatory to create an ImmutableSet.
  21. _TemporarilyImmutableSet -- A wrapper around a Set, hashable,
  22.     giving the same hash value as the immutable set equivalent
  23.     would have.  Do not use this class directly.
  24. Only hashable objects can be added to a Set. In particular, you cannot
  25. really add a Set as an element to another Set; if you try, what is
  26. actually added is an ImmutableSet built from it (it compares equal to
  27. the one you tried adding).
  28. When you ask if `x in y' where x is a Set and y is a Set or
  29. ImmutableSet, x is wrapped into a _TemporarilyImmutableSet z, and
  30. what's tested is actually `z in y'.
  31. """
  32. # Code history:
  33. #
  34. # - Greg V. Wilson wrote the first version, using a different approach
  35. #   to the mutable/immutable problem, and inheriting from dict.
  36. #
  37. # - Alex Martelli modified Greg's version to implement the current
  38. #   Set/ImmutableSet approach, and make the data an attribute.
  39. #
  40. # - Guido van Rossum rewrote much of the code, made some API changes,
  41. #   and cleaned up the docstrings.
  42. #
  43. # - Raymond Hettinger added a number of speedups and other
  44. #   improvements.
  45. from __future__ import generators
  46. try:
  47.     from itertools import ifilter, ifilterfalse
  48. except ImportError:
  49.     # Code to make the module run under Py2.2
  50.     def ifilter(predicate, iterable):
  51.         if predicate is None:
  52.             def predicate(x):
  53.                 return x
  54.         for x in iterable:
  55.             if predicate(x):
  56.                 yield x
  57.     def ifilterfalse(predicate, iterable):
  58.         if predicate is None:
  59.             def predicate(x):
  60.                 return x
  61.         for x in iterable:
  62.             if not predicate(x):
  63.                 yield x
  64.     try:
  65.         True, False
  66.     except NameError:
  67.         True, False = (0==0, 0!=0)
  68. __all__ = ['BaseSet', 'Set', 'ImmutableSet']
  69. class BaseSet(object):
  70.     """Common base class for mutable and immutable sets."""
  71.     __slots__ = ['_data']
  72.     # Constructor
  73.     def __init__(self):
  74.         """This is an abstract class."""
  75.         # Don't call this from a concrete subclass!
  76.         if self.__class__ is BaseSet:
  77.             raise TypeError, ("BaseSet is an abstract class.  "
  78.                               "Use Set or ImmutableSet.")
  79.     # Standard protocols: __len__, __repr__, __str__, __iter__
  80.     def __len__(self):
  81.         """Return the number of elements of a set."""
  82.         return len(self._data)
  83.     def __repr__(self):
  84.         """Return string representation of a set.
  85.         This looks like 'Set([<list of elements>])'.
  86.         """
  87.         return self._repr()
  88.     # __str__ is the same as __repr__
  89.     __str__ = __repr__
  90.     def _repr(self, sorted=False):
  91.         elements = self._data.keys()
  92.         if sorted:
  93.             elements.sort()
  94.         return '%s(%r)' % (self.__class__.__name__, elements)
  95.     def __iter__(self):
  96.         """Return an iterator over the elements or a set.
  97.         This is the keys iterator for the underlying dict.
  98.         """
  99.         return self._data.iterkeys()
  100.     # Three-way comparison is not supported.  However, because __eq__ is
  101.     # tried before __cmp__, if Set x == Set y, x.__eq__(y) returns True and
  102.     # then cmp(x, y) returns 0 (Python doesn't actually call __cmp__ in this
  103.     # case).
  104.     def __cmp__(self, other):
  105.         raise TypeError, "can't compare sets using cmp()"
  106.     # Equality comparisons using the underlying dicts.  Mixed-type comparisons
  107.     # are allowed here, where Set == z for non-Set z always returns False,
  108.     # and Set != z always True.  This allows expressions like "x in y" to
  109.     # give the expected result when y is a sequence of mixed types, not
  110.     # raising a pointless TypeError just because y contains a Set, or x is
  111.     # a Set and y contain's a non-set ("in" invokes only __eq__).
  112.     # Subtle:  it would be nicer if __eq__ and __ne__ could return
  113.     # NotImplemented instead of True or False.  Then the other comparand
  114.     # would get a chance to determine the result, and if the other comparand
  115.     # also returned NotImplemented then it would fall back to object address
  116.     # comparison (which would always return False for __eq__ and always
  117.     # True for __ne__).  However, that doesn't work, because this type
  118.     # *also* implements __cmp__:  if, e.g., __eq__ returns NotImplemented,
  119.     # Python tries __cmp__ next, and the __cmp__ here then raises TypeError.
  120.     def __eq__(self, other):
  121.         if isinstance(other, BaseSet):
  122.             return self._data == other._data
  123.         else:
  124.             return False
  125.     def __ne__(self, other):
  126.         if isinstance(other, BaseSet):
  127.             return self._data != other._data
  128.         else:
  129.             return True
  130.     # Copying operations
  131.     def copy(self):
  132.         """Return a shallow copy of a set."""
  133.         result = self.__class__()
  134.         result._data.update(self._data)
  135.         return result
  136.     __copy__ = copy # For the copy module
  137.     def __deepcopy__(self, memo):
  138.         """Return a deep copy of a set; used by copy module."""
  139.         # This pre-creates the result and inserts it in the memo
  140.         # early, in case the deep copy recurses into another reference
  141.         # to this same set.  A set can't be an element of itself, but
  142.         # it can certainly contain an object that has a reference to
  143.         # itself.
  144.         from copy import deepcopy
  145.         result = self.__class__()
  146.         memo[id(self)] = result
  147.         data = result._data
  148.         value = True
  149.         for elt in self:
  150.             data[deepcopy(elt, memo)] = value
  151.         return result
  152.     # Standard set operations: union, intersection, both differences.
  153.     # Each has an operator version (e.g. __or__, invoked with |) and a
  154.     # method version (e.g. union).
  155.     # Subtle:  Each pair requires distinct code so that the outcome is
  156.     # correct when the type of other isn't suitable.  For example, if
  157.     # we did "union = __or__" instead, then Set().union(3) would return
  158.     # NotImplemented instead of raising TypeError (albeit that *why* it
  159.     # raises TypeError as-is is also a bit subtle).
  160.     def __or__(self, other):
  161.         """Return the union of two sets as a new set.
  162.         (I.e. all elements that are in either set.)
  163.         """
  164.         if not isinstance(other, BaseSet):
  165.             return NotImplemented
  166.         return self.union(other)
  167.     def union(self, other):
  168.         """Return the union of two sets as a new set.
  169.         (I.e. all elements that are in either set.)
  170.         """
  171.         result = self.__class__(self)
  172.         result._update(other)
  173.         return result
  174.     def __and__(self, other):
  175.         """Return the intersection of two sets as a new set.
  176.         (I.e. all elements that are in both sets.)
  177.         """
  178.         if not isinstance(other, BaseSet):
  179.             return NotImplemented
  180.         return self.intersection(other)
  181.     def intersection(self, other):
  182.         """Return the intersection of two sets as a new set.
  183.         (I.e. all elements that are in both sets.)
  184.         """
  185.         if not isinstance(other, BaseSet):
  186.             other = Set(other)
  187.         if len(self) <= len(other):
  188.             little, big = self, other
  189.         else:
  190.             little, big = other, self
  191.         common = ifilter(big._data.has_key, little)
  192.         return self.__class__(common)
  193.     def __xor__(self, other):
  194.         """Return the symmetric difference of two sets as a new set.
  195.         (I.e. all elements that are in exactly one of the sets.)
  196.         """
  197.         if not isinstance(other, BaseSet):
  198.             return NotImplemented
  199.         return self.symmetric_difference(other)
  200.     def symmetric_difference(self, other):
  201.         """Return the symmetric difference of two sets as a new set.
  202.         (I.e. all elements that are in exactly one of the sets.)
  203.         """
  204.         result = self.__class__()
  205.         data = result._data
  206.         value = True
  207.         selfdata = self._data
  208.         try:
  209.             otherdata = other._data
  210.         except AttributeError:
  211.             otherdata = Set(other)._data
  212.         for elt in ifilterfalse(otherdata.has_key, selfdata):
  213.             data[elt] = value
  214.         for elt in ifilterfalse(selfdata.has_key, otherdata):
  215.             data[elt] = value
  216.         return result
  217.     def  __sub__(self, other):
  218.         """Return the difference of two sets as a new Set.
  219.         (I.e. all elements that are in this set and not in the other.)
  220.         """
  221.         if not isinstance(other, BaseSet):
  222.             return NotImplemented
  223.         return self.difference(other)
  224.     def difference(self, other):
  225.         """Return the difference of two sets as a new Set.
  226.         (I.e. all elements that are in this set and not in the other.)
  227.         """
  228.         result = self.__class__()
  229.         data = result._data
  230.         try:
  231.             otherdata = other._data
  232.         except AttributeError:
  233.             otherdata = Set(other)._data
  234.         value = True
  235.         for elt in ifilterfalse(otherdata.has_key, self):
  236.             data[elt] = value
  237.         return result
  238.     # Membership test
  239.     def __contains__(self, element):
  240.         """Report whether an element is a member of a set.
  241.         (Called in response to the expression `element in self'.)
  242.         """
  243.         try:
  244.             return element in self._data
  245.         except TypeError:
  246.             transform = getattr(element, "__as_temporarily_immutable__", None)
  247.             if transform is None:
  248.                 raise # re-raise the TypeError exception we caught
  249.             return transform() in self._data
  250.     # Subset and superset test
  251.     def issubset(self, other):
  252.         """Report whether another set contains this set."""
  253.         self._binary_sanity_check(other)
  254.         if len(self) > len(other):  # Fast check for obvious cases
  255.             return False
  256.         for elt in ifilterfalse(other._data.has_key, self):
  257.             return False
  258.         return True
  259.     def issuperset(self, other):
  260.         """Report whether this set contains another set."""
  261.         self._binary_sanity_check(other)
  262.         if len(self) < len(other):  # Fast check for obvious cases
  263.             return False
  264.         for elt in ifilterfalse(self._data.has_key, other):
  265.             return False
  266.         return True
  267.     # Inequality comparisons using the is-subset relation.
  268.     __le__ = issubset
  269.     __ge__ = issuperset
  270.     def __lt__(self, other):
  271.         self._binary_sanity_check(other)
  272.         return len(self) < len(other) and self.issubset(other)
  273.     def __gt__(self, other):
  274.         self._binary_sanity_check(other)
  275.         return len(self) > len(other) and self.issuperset(other)
  276.     # Assorted helpers
  277.     def _binary_sanity_check(self, other):
  278.         # Check that the other argument to a binary operation is also
  279.         # a set, raising a TypeError otherwise.
  280.         if not isinstance(other, BaseSet):
  281.             raise TypeError, "Binary operation only permitted between sets"
  282.     def _compute_hash(self):
  283.         # Calculate hash code for a set by xor'ing the hash codes of
  284.         # the elements.  This ensures that the hash code does not depend
  285.         # on the order in which elements are added to the set.  This is
  286.         # not called __hash__ because a BaseSet should not be hashable;
  287.         # only an ImmutableSet is hashable.
  288.         result = 0
  289.         for elt in self:
  290.             result ^= hash(elt)
  291.         return result
  292.     def _update(self, iterable):
  293.         # The main loop for update() and the subclass __init__() methods.
  294.         data = self._data
  295.         # Use the fast update() method when a dictionary is available.
  296.         if isinstance(iterable, BaseSet):
  297.             data.update(iterable._data)
  298.             return
  299.         value = True
  300.         if type(iterable) in (list, tuple, xrange):
  301.             # Optimized: we know that __iter__() and next() can't
  302.             # raise TypeError, so we can move 'try:' out of the loop.
  303.             it = iter(iterable)
  304.             while True:
  305.                 try:
  306.                     for element in it:
  307.                         data[element] = value
  308.                     return
  309.                 except TypeError:
  310.                     transform = getattr(element, "__as_immutable__", None)
  311.                     if transform is None:
  312.                         raise # re-raise the TypeError exception we caught
  313.                     data[transform()] = value
  314.         else:
  315.             # Safe: only catch TypeError where intended
  316.             for element in iterable:
  317.                 try:
  318.                     data[element] = value
  319.                 except TypeError:
  320.                     transform = getattr(element, "__as_immutable__", None)
  321.                     if transform is None:
  322.                         raise # re-raise the TypeError exception we caught
  323.                     data[transform()] = value
  324. class ImmutableSet(BaseSet):
  325.     """Immutable set class."""
  326.     __slots__ = ['_hashcode']
  327.     # BaseSet + hashing
  328.     def __init__(self, iterable=None):
  329.         """Construct an immutable set from an optional iterable."""
  330.         self._hashcode = None
  331.         self._data = {}
  332.         if iterable is not None:
  333.             self._update(iterable)
  334.     def __hash__(self):
  335.         if self._hashcode is None:
  336.             self._hashcode = self._compute_hash()
  337.         return self._hashcode
  338.     def __getstate__(self):
  339.         return self._data, self._hashcode
  340.     def __setstate__(self, state):
  341.         self._data, self._hashcode = state
  342. class Set(BaseSet):
  343.     """ Mutable set class."""
  344.     __slots__ = []
  345.     # BaseSet + operations requiring mutability; no hashing
  346.     def __init__(self, iterable=None):
  347.         """Construct a set from an optional iterable."""
  348.         self._data = {}
  349.         if iterable is not None:
  350.             self._update(iterable)
  351.     def __getstate__(self):
  352.         # getstate's results are ignored if it is not
  353.         return self._data,
  354.     def __setstate__(self, data):
  355.         self._data, = data
  356.     def __hash__(self):
  357.         """A Set cannot be hashed."""
  358.         # We inherit object.__hash__, so we must deny this explicitly
  359.         raise TypeError, "Can't hash a Set, only an ImmutableSet."
  360.     # In-place union, intersection, differences.
  361.     # Subtle:  The xyz_update() functions deliberately return None,
  362.     # as do all mutating operations on built-in container types.
  363.     # The __xyz__ spellings have to return self, though.
  364.     def __ior__(self, other):
  365.         """Update a set with the union of itself and another."""
  366.         self._binary_sanity_check(other)
  367.         self._data.update(other._data)
  368.         return self
  369.     def union_update(self, other):
  370.         """Update a set with the union of itself and another."""
  371.         self._update(other)
  372.     def __iand__(self, other):
  373.         """Update a set with the intersection of itself and another."""
  374.         self._binary_sanity_check(other)
  375.         self._data = (self & other)._data
  376.         return self
  377.     def intersection_update(self, other):
  378.         """Update a set with the intersection of itself and another."""
  379.         if isinstance(other, BaseSet):
  380.             self &= other
  381.         else:
  382.             self._data = (self.intersection(other))._data
  383.     def __ixor__(self, other):
  384.         """Update a set with the symmetric difference of itself and another."""
  385.         self._binary_sanity_check(other)
  386.         self.symmetric_difference_update(other)
  387.         return self
  388.     def symmetric_difference_update(self, other):
  389.         """Update a set with the symmetric difference of itself and another."""
  390.         data = self._data
  391.         value = True
  392.         if not isinstance(other, BaseSet):
  393.             other = Set(other)
  394.         if self is other:
  395.             self.clear()
  396.         for elt in other:
  397.             if elt in data:
  398.                 del data[elt]
  399.             else:
  400.                 data[elt] = value
  401.     def __isub__(self, other):
  402.         """Remove all elements of another set from this set."""
  403.         self._binary_sanity_check(other)
  404.         self.difference_update(other)
  405.         return self
  406.     def difference_update(self, other):
  407.         """Remove all elements of another set from this set."""
  408.         data = self._data
  409.         if not isinstance(other, BaseSet):
  410.             other = Set(other)
  411.         if self is other:
  412.             self.clear()
  413.         for elt in ifilter(data.has_key, other):
  414.             del data[elt]
  415.     # Python dict-like mass mutations: update, clear
  416.     def update(self, iterable):
  417.         """Add all values from an iterable (such as a list or file)."""
  418.         self._update(iterable)
  419.     def clear(self):
  420.         """Remove all elements from this set."""
  421.         self._data.clear()
  422.     # Single-element mutations: add, remove, discard
  423.     def add(self, element):
  424.         """Add an element to a set.
  425.         This has no effect if the element is already present.
  426.         """
  427.         try:
  428.             self._data[element] = True
  429.         except TypeError:
  430.             transform = getattr(element, "__as_immutable__", None)
  431.             if transform is None:
  432.                 raise # re-raise the TypeError exception we caught
  433.             self._data[transform()] = True
  434.     def remove(self, element):
  435.         """Remove an element from a set; it must be a member.
  436.         If the element is not a member, raise a KeyError.
  437.         """
  438.         try:
  439.             del self._data[element]
  440.         except TypeError:
  441.             transform = getattr(element, "__as_temporarily_immutable__", None)
  442.             if transform is None:
  443.                 raise # re-raise the TypeError exception we caught
  444.             del self._data[transform()]
  445.     def discard(self, element):
  446.         """Remove an element from a set if it is a member.
  447.         If the element is not a member, do nothing.
  448.         """
  449.         try:
  450.             self.remove(element)
  451.         except KeyError:
  452.             pass
  453.     def pop(self):
  454.         """Remove and return an arbitrary set element."""
  455.         return self._data.popitem()[0]
  456.     def __as_immutable__(self):
  457.         # Return a copy of self as an immutable set
  458.         return ImmutableSet(self)
  459.     def __as_temporarily_immutable__(self):
  460.         # Return self wrapped in a temporarily immutable set
  461.         return _TemporarilyImmutableSet(self)
  462. class _TemporarilyImmutableSet(BaseSet):
  463.     # Wrap a mutable set as if it was temporarily immutable.
  464.     # This only supplies hashing and equality comparisons.
  465.     def __init__(self, set):
  466.         self._set = set
  467.         self._data = set._data  # Needed by ImmutableSet.__eq__()
  468.     def __hash__(self):
  469.         return self._set._compute_hash()