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