Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 1 | import sys |
Ethan Furman | e03ea37 | 2013-09-25 07:14:41 -0700 | [diff] [blame] | 2 | from types import MappingProxyType, DynamicClassAttribute |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 3 | |
Ethan Furman | e5754ab | 2015-09-17 22:03:52 -0700 | [diff] [blame] | 4 | |
Ethan Furman | c16595e | 2016-09-10 23:36:59 -0700 | [diff] [blame] | 5 | __all__ = [ |
| 6 | 'EnumMeta', |
| 7 | 'Enum', 'IntEnum', 'Flag', 'IntFlag', |
| 8 | 'auto', 'unique', |
| 9 | ] |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 10 | |
| 11 | |
Ethan Furman | 101e074 | 2013-09-15 12:34:36 -0700 | [diff] [blame] | 12 | def _is_descriptor(obj): |
| 13 | """Returns True if obj is a descriptor, False otherwise.""" |
| 14 | return ( |
| 15 | hasattr(obj, '__get__') or |
| 16 | hasattr(obj, '__set__') or |
| 17 | hasattr(obj, '__delete__')) |
| 18 | |
| 19 | |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 20 | def _is_dunder(name): |
| 21 | """Returns True if a __dunder__ name, False otherwise.""" |
| 22 | return (name[:2] == name[-2:] == '__' and |
| 23 | name[2:3] != '_' and |
Ethan Furman | 648f860 | 2013-10-06 17:19:54 -0700 | [diff] [blame] | 24 | name[-3:-2] != '_' and |
| 25 | len(name) > 4) |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 26 | |
| 27 | |
| 28 | def _is_sunder(name): |
| 29 | """Returns True if a _sunder_ name, False otherwise.""" |
| 30 | return (name[0] == name[-1] == '_' and |
| 31 | name[1:2] != '_' and |
Ethan Furman | 648f860 | 2013-10-06 17:19:54 -0700 | [diff] [blame] | 32 | name[-2:-1] != '_' and |
| 33 | len(name) > 2) |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 34 | |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 35 | def _make_class_unpicklable(cls): |
| 36 | """Make the given class un-picklable.""" |
Ethan Furman | ca1b794 | 2014-02-08 11:36:27 -0800 | [diff] [blame] | 37 | def _break_on_call_reduce(self, proto): |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 38 | raise TypeError('%r cannot be pickled' % self) |
Ethan Furman | ca1b794 | 2014-02-08 11:36:27 -0800 | [diff] [blame] | 39 | cls.__reduce_ex__ = _break_on_call_reduce |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 40 | cls.__module__ = '<unknown>' |
| 41 | |
Ethan Furman | 3515dcc | 2016-09-18 13:15:41 -0700 | [diff] [blame] | 42 | _auto_null = object() |
Ethan Furman | c16595e | 2016-09-10 23:36:59 -0700 | [diff] [blame] | 43 | class auto: |
| 44 | """ |
| 45 | Instances are replaced with an appropriate value in Enum class suites. |
| 46 | """ |
Ethan Furman | 3515dcc | 2016-09-18 13:15:41 -0700 | [diff] [blame] | 47 | value = _auto_null |
Ethan Furman | c16595e | 2016-09-10 23:36:59 -0700 | [diff] [blame] | 48 | |
Ethan Furman | 101e074 | 2013-09-15 12:34:36 -0700 | [diff] [blame] | 49 | |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 50 | class _EnumDict(dict): |
Ethan Furman | 101e074 | 2013-09-15 12:34:36 -0700 | [diff] [blame] | 51 | """Track enum member order and ensure member names are not reused. |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 52 | |
| 53 | EnumMeta will use the names found in self._member_names as the |
| 54 | enumeration member names. |
| 55 | |
| 56 | """ |
| 57 | def __init__(self): |
| 58 | super().__init__() |
| 59 | self._member_names = [] |
Ethan Furman | c16595e | 2016-09-10 23:36:59 -0700 | [diff] [blame] | 60 | self._last_values = [] |
Ethan Furman | a4b1bb4 | 2018-01-22 07:56:37 -0800 | [diff] [blame] | 61 | self._ignore = [] |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 62 | |
| 63 | def __setitem__(self, key, value): |
Ethan Furman | 101e074 | 2013-09-15 12:34:36 -0700 | [diff] [blame] | 64 | """Changes anything not dundered or not a descriptor. |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 65 | |
| 66 | If an enum member name is used twice, an error is raised; duplicate |
| 67 | values are not checked for. |
| 68 | |
| 69 | Single underscore (sunder) names are reserved. |
| 70 | |
| 71 | """ |
| 72 | if _is_sunder(key): |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 73 | if key not in ( |
Ethan Furman | 3515dcc | 2016-09-18 13:15:41 -0700 | [diff] [blame] | 74 | '_order_', '_create_pseudo_member_', |
Ethan Furman | a4b1bb4 | 2018-01-22 07:56:37 -0800 | [diff] [blame] | 75 | '_generate_next_value_', '_missing_', '_ignore_', |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 76 | ): |
Ethan Furman | e8e6127 | 2016-08-20 07:19:31 -0700 | [diff] [blame] | 77 | raise ValueError('_names_ are reserved for future Enum use') |
Ethan Furman | c16595e | 2016-09-10 23:36:59 -0700 | [diff] [blame] | 78 | if key == '_generate_next_value_': |
| 79 | setattr(self, '_generate_next_value', value) |
Ethan Furman | a4b1bb4 | 2018-01-22 07:56:37 -0800 | [diff] [blame] | 80 | elif key == '_ignore_': |
| 81 | if isinstance(value, str): |
| 82 | value = value.replace(',',' ').split() |
| 83 | else: |
| 84 | value = list(value) |
| 85 | self._ignore = value |
| 86 | already = set(value) & set(self._member_names) |
| 87 | if already: |
| 88 | raise ValueError('_ignore_ cannot specify already set names: %r' % (already, )) |
Ethan Furman | 101e074 | 2013-09-15 12:34:36 -0700 | [diff] [blame] | 89 | elif _is_dunder(key): |
Ethan Furman | e8e6127 | 2016-08-20 07:19:31 -0700 | [diff] [blame] | 90 | if key == '__order__': |
| 91 | key = '_order_' |
Ethan Furman | 101e074 | 2013-09-15 12:34:36 -0700 | [diff] [blame] | 92 | elif key in self._member_names: |
| 93 | # descriptor overwriting an enum? |
| 94 | raise TypeError('Attempted to reuse key: %r' % key) |
Ethan Furman | a4b1bb4 | 2018-01-22 07:56:37 -0800 | [diff] [blame] | 95 | elif key in self._ignore: |
| 96 | pass |
Ethan Furman | 101e074 | 2013-09-15 12:34:36 -0700 | [diff] [blame] | 97 | elif not _is_descriptor(value): |
| 98 | if key in self: |
| 99 | # enum overwriting a descriptor? |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 100 | raise TypeError('%r already defined as: %r' % (key, self[key])) |
Ethan Furman | c16595e | 2016-09-10 23:36:59 -0700 | [diff] [blame] | 101 | if isinstance(value, auto): |
Ethan Furman | 3515dcc | 2016-09-18 13:15:41 -0700 | [diff] [blame] | 102 | if value.value == _auto_null: |
| 103 | value.value = self._generate_next_value(key, 1, len(self._member_names), self._last_values[:]) |
| 104 | value = value.value |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 105 | self._member_names.append(key) |
Ethan Furman | c16595e | 2016-09-10 23:36:59 -0700 | [diff] [blame] | 106 | self._last_values.append(value) |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 107 | super().__setitem__(key, value) |
| 108 | |
| 109 | |
Ezio Melotti | 9a3777e | 2013-08-17 15:53:55 +0300 | [diff] [blame] | 110 | # Dummy value for Enum as EnumMeta explicitly checks for it, but of course |
| 111 | # until EnumMeta finishes running the first time the Enum class doesn't exist. |
| 112 | # This is also why there are checks in EnumMeta like `if Enum is not None` |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 113 | Enum = None |
| 114 | |
Ethan Furman | 332dbc7 | 2016-08-20 00:00:52 -0700 | [diff] [blame] | 115 | |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 116 | class EnumMeta(type): |
| 117 | """Metaclass for Enum""" |
| 118 | @classmethod |
Ethan Furman | 332dbc7 | 2016-08-20 00:00:52 -0700 | [diff] [blame] | 119 | def __prepare__(metacls, cls, bases): |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 120 | # create the namespace dict |
| 121 | enum_dict = _EnumDict() |
| 122 | # inherit previous flags and _generate_next_value_ function |
| 123 | member_type, first_enum = metacls._get_mixins_(bases) |
| 124 | if first_enum is not None: |
| 125 | enum_dict['_generate_next_value_'] = getattr(first_enum, '_generate_next_value_', None) |
| 126 | return enum_dict |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 127 | |
Ethan Furman | 65a5a47 | 2016-09-01 23:55:19 -0700 | [diff] [blame] | 128 | def __new__(metacls, cls, bases, classdict): |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 129 | # an Enum class is final once enumeration items have been defined; it |
| 130 | # cannot be mixed with other types (int, float, etc.) if it has an |
| 131 | # inherited __new__ unless a new __new__ is defined (or the resulting |
| 132 | # class will fail). |
Ethan Furman | a4b1bb4 | 2018-01-22 07:56:37 -0800 | [diff] [blame] | 133 | # |
| 134 | # remove any keys listed in _ignore_ |
| 135 | classdict.setdefault('_ignore_', []).append('_ignore_') |
| 136 | ignore = classdict['_ignore_'] |
| 137 | for key in ignore: |
| 138 | classdict.pop(key, None) |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 139 | member_type, first_enum = metacls._get_mixins_(bases) |
| 140 | __new__, save_new, use_args = metacls._find_new_(classdict, member_type, |
| 141 | first_enum) |
| 142 | |
| 143 | # save enum items into separate mapping so they don't get baked into |
| 144 | # the new class |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 145 | enum_members = {k: classdict[k] for k in classdict._member_names} |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 146 | for name in classdict._member_names: |
| 147 | del classdict[name] |
| 148 | |
Ethan Furman | e8e6127 | 2016-08-20 07:19:31 -0700 | [diff] [blame] | 149 | # adjust the sunders |
| 150 | _order_ = classdict.pop('_order_', None) |
| 151 | |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 152 | # check for illegal enum names (any others?) |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 153 | invalid_names = set(enum_members) & {'mro', } |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 154 | if invalid_names: |
| 155 | raise ValueError('Invalid enum member name: {0}'.format( |
| 156 | ','.join(invalid_names))) |
| 157 | |
Ethan Furman | 48a724f | 2015-04-11 23:23:06 -0700 | [diff] [blame] | 158 | # create a default docstring if one has not been provided |
| 159 | if '__doc__' not in classdict: |
| 160 | classdict['__doc__'] = 'An enumeration.' |
| 161 | |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 162 | # create our new Enum type |
| 163 | enum_class = super().__new__(metacls, cls, bases, classdict) |
Ethan Furman | 520ad57 | 2013-07-19 19:47:21 -0700 | [diff] [blame] | 164 | enum_class._member_names_ = [] # names in definition order |
INADA Naoki | e57f91a | 2018-06-19 01:14:26 +0900 | [diff] [blame] | 165 | enum_class._member_map_ = {} # name->value map |
Ethan Furman | 5e5a823 | 2013-08-04 08:42:23 -0700 | [diff] [blame] | 166 | enum_class._member_type_ = member_type |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 167 | |
orlnub123 | 0fb9fad | 2018-09-12 20:28:53 +0300 | [diff] [blame] | 168 | # save DynamicClassAttribute attributes from super classes so we know |
| 169 | # if we can take the shortcut of storing members in the class dict |
| 170 | dynamic_attributes = {k for c in enum_class.mro() |
| 171 | for k, v in c.__dict__.items() |
| 172 | if isinstance(v, DynamicClassAttribute)} |
Ethan Furman | 354ecf1 | 2015-03-11 08:43:12 -0700 | [diff] [blame] | 173 | |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 174 | # Reverse value->name map for hashable values. |
Ethan Furman | 520ad57 | 2013-07-19 19:47:21 -0700 | [diff] [blame] | 175 | enum_class._value2member_map_ = {} |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 176 | |
Ethan Furman | 2da9504 | 2014-03-03 12:42:52 -0800 | [diff] [blame] | 177 | # If a custom type is mixed into the Enum, and it does not know how |
| 178 | # to pickle itself, pickle.dumps will succeed but pickle.loads will |
| 179 | # fail. Rather than have the error show up later and possibly far |
| 180 | # from the source, sabotage the pickle protocol for this class so |
| 181 | # that pickle.dumps also fails. |
| 182 | # |
| 183 | # However, if the new class implements its own __reduce_ex__, do not |
| 184 | # sabotage -- it's on them to make sure it works correctly. We use |
| 185 | # __reduce_ex__ instead of any of the others as it is preferred by |
| 186 | # pickle over __reduce__, and it handles all pickle protocols. |
| 187 | if '__reduce_ex__' not in classdict: |
Ethan Furman | dc87052 | 2014-02-18 12:37:12 -0800 | [diff] [blame] | 188 | if member_type is not object: |
| 189 | methods = ('__getnewargs_ex__', '__getnewargs__', |
| 190 | '__reduce_ex__', '__reduce__') |
Ethan Furman | 2da9504 | 2014-03-03 12:42:52 -0800 | [diff] [blame] | 191 | if not any(m in member_type.__dict__ for m in methods): |
Ethan Furman | dc87052 | 2014-02-18 12:37:12 -0800 | [diff] [blame] | 192 | _make_class_unpicklable(enum_class) |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 193 | |
| 194 | # instantiate them, checking for duplicates as we go |
| 195 | # we instantiate first instead of checking for duplicates first in case |
| 196 | # a custom __new__ is doing something funky with the values -- such as |
| 197 | # auto-numbering ;) |
| 198 | for member_name in classdict._member_names: |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 199 | value = enum_members[member_name] |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 200 | if not isinstance(value, tuple): |
| 201 | args = (value, ) |
| 202 | else: |
| 203 | args = value |
| 204 | if member_type is tuple: # special case for tuple enums |
| 205 | args = (args, ) # wrap it one more time |
| 206 | if not use_args: |
| 207 | enum_member = __new__(enum_class) |
Ethan Furman | b41803e | 2013-07-25 13:50:45 -0700 | [diff] [blame] | 208 | if not hasattr(enum_member, '_value_'): |
| 209 | enum_member._value_ = value |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 210 | else: |
| 211 | enum_member = __new__(enum_class, *args) |
Ethan Furman | b41803e | 2013-07-25 13:50:45 -0700 | [diff] [blame] | 212 | if not hasattr(enum_member, '_value_'): |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 213 | if member_type is object: |
| 214 | enum_member._value_ = value |
| 215 | else: |
| 216 | enum_member._value_ = member_type(*args) |
Ethan Furman | 520ad57 | 2013-07-19 19:47:21 -0700 | [diff] [blame] | 217 | value = enum_member._value_ |
Ethan Furman | 520ad57 | 2013-07-19 19:47:21 -0700 | [diff] [blame] | 218 | enum_member._name_ = member_name |
Ethan Furman | c850f34 | 2013-09-15 16:59:35 -0700 | [diff] [blame] | 219 | enum_member.__objclass__ = enum_class |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 220 | enum_member.__init__(*args) |
| 221 | # If another member with the same value was already defined, the |
| 222 | # new member becomes an alias to the existing one. |
Ethan Furman | 520ad57 | 2013-07-19 19:47:21 -0700 | [diff] [blame] | 223 | for name, canonical_member in enum_class._member_map_.items(): |
Ethan Furman | 0081f23 | 2014-09-16 17:31:23 -0700 | [diff] [blame] | 224 | if canonical_member._value_ == enum_member._value_: |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 225 | enum_member = canonical_member |
| 226 | break |
| 227 | else: |
| 228 | # Aliases don't appear in member names (only in __members__). |
Ethan Furman | 520ad57 | 2013-07-19 19:47:21 -0700 | [diff] [blame] | 229 | enum_class._member_names_.append(member_name) |
Ethan Furman | 354ecf1 | 2015-03-11 08:43:12 -0700 | [diff] [blame] | 230 | # performance boost for any member that would not shadow |
| 231 | # a DynamicClassAttribute |
orlnub123 | 0fb9fad | 2018-09-12 20:28:53 +0300 | [diff] [blame] | 232 | if member_name not in dynamic_attributes: |
Ethan Furman | 354ecf1 | 2015-03-11 08:43:12 -0700 | [diff] [blame] | 233 | setattr(enum_class, member_name, enum_member) |
| 234 | # now add to _member_map_ |
Ethan Furman | 520ad57 | 2013-07-19 19:47:21 -0700 | [diff] [blame] | 235 | enum_class._member_map_[member_name] = enum_member |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 236 | try: |
| 237 | # This may fail if value is not hashable. We can't add the value |
| 238 | # to the map, and by-value lookups for this value will be |
| 239 | # linear. |
Ethan Furman | 520ad57 | 2013-07-19 19:47:21 -0700 | [diff] [blame] | 240 | enum_class._value2member_map_[value] = enum_member |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 241 | except TypeError: |
| 242 | pass |
| 243 | |
| 244 | # double check that repr and friends are not the mixin's or various |
| 245 | # things break (such as pickle) |
Ethan Furman | dc87052 | 2014-02-18 12:37:12 -0800 | [diff] [blame] | 246 | for name in ('__repr__', '__str__', '__format__', '__reduce_ex__'): |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 247 | class_method = getattr(enum_class, name) |
| 248 | obj_method = getattr(member_type, name, None) |
| 249 | enum_method = getattr(first_enum, name, None) |
| 250 | if obj_method is not None and obj_method is class_method: |
| 251 | setattr(enum_class, name, enum_method) |
| 252 | |
| 253 | # replace any other __new__ with our own (as long as Enum is not None, |
| 254 | # anyway) -- again, this is to support pickle |
| 255 | if Enum is not None: |
| 256 | # if the user defined their own __new__, save it before it gets |
| 257 | # clobbered in case they subclass later |
| 258 | if save_new: |
| 259 | enum_class.__new_member__ = __new__ |
| 260 | enum_class.__new__ = Enum.__new__ |
Ethan Furman | e8e6127 | 2016-08-20 07:19:31 -0700 | [diff] [blame] | 261 | |
| 262 | # py3 support for definition order (helps keep py2/py3 code in sync) |
| 263 | if _order_ is not None: |
| 264 | if isinstance(_order_, str): |
| 265 | _order_ = _order_.replace(',', ' ').split() |
| 266 | if _order_ != enum_class._member_names_: |
| 267 | raise TypeError('member order does not match _order_') |
| 268 | |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 269 | return enum_class |
| 270 | |
Ethan Furman | 5de67b1 | 2016-04-13 23:52:09 -0700 | [diff] [blame] | 271 | def __bool__(self): |
| 272 | """ |
| 273 | classes/types should always be True. |
| 274 | """ |
| 275 | return True |
| 276 | |
Ethan Furman | d9925a1 | 2014-09-16 20:35:55 -0700 | [diff] [blame] | 277 | def __call__(cls, value, names=None, *, module=None, qualname=None, type=None, start=1): |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 278 | """Either returns an existing member, or creates a new enum class. |
| 279 | |
| 280 | This method is used both when an enum class is given a value to match |
| 281 | to an enumeration member (i.e. Color(3)) and for the functional API |
Ethan Furman | 23bb6f4 | 2016-11-21 09:22:05 -0800 | [diff] [blame] | 282 | (i.e. Color = Enum('Color', names='RED GREEN BLUE')). |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 283 | |
Ethan Furman | 2da9504 | 2014-03-03 12:42:52 -0800 | [diff] [blame] | 284 | When used for the functional API: |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 285 | |
Ethan Furman | 2da9504 | 2014-03-03 12:42:52 -0800 | [diff] [blame] | 286 | `value` will be the name of the new class. |
| 287 | |
| 288 | `names` should be either a string of white-space/comma delimited names |
Ethan Furman | d9925a1 | 2014-09-16 20:35:55 -0700 | [diff] [blame] | 289 | (values will start at `start`), or an iterator/mapping of name, value pairs. |
Ethan Furman | 2da9504 | 2014-03-03 12:42:52 -0800 | [diff] [blame] | 290 | |
| 291 | `module` should be set to the module this class is being created in; |
| 292 | if it is not set, an attempt to find that module will be made, but if |
| 293 | it fails the class will not be picklable. |
| 294 | |
| 295 | `qualname` should be set to the actual location this class can be found |
| 296 | at in its module; by default it is set to the global scope. If this is |
| 297 | not correct, unpickling will fail in some circumstances. |
| 298 | |
| 299 | `type`, if set, will be mixed in as the first base class. |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 300 | |
| 301 | """ |
| 302 | if names is None: # simple value lookup |
| 303 | return cls.__new__(cls, value) |
| 304 | # otherwise, functional API: we're creating a new Enum type |
Ethan Furman | d9925a1 | 2014-09-16 20:35:55 -0700 | [diff] [blame] | 305 | return cls._create_(value, names, module=module, qualname=qualname, type=type, start=start) |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 306 | |
| 307 | def __contains__(cls, member): |
Rahul Jha | 9430652 | 2018-09-10 23:51:04 +0530 | [diff] [blame] | 308 | if not isinstance(member, Enum): |
| 309 | raise TypeError( |
| 310 | "unsupported operand type(s) for 'in': '%s' and '%s'" % ( |
| 311 | type(member).__qualname__, cls.__class__.__qualname__)) |
Ethan Furman | 0081f23 | 2014-09-16 17:31:23 -0700 | [diff] [blame] | 312 | return isinstance(member, cls) and member._name_ in cls._member_map_ |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 313 | |
Ethan Furman | 64a9972 | 2013-09-22 16:18:19 -0700 | [diff] [blame] | 314 | def __delattr__(cls, attr): |
| 315 | # nicer error message when someone tries to delete an attribute |
| 316 | # (see issue19025). |
| 317 | if attr in cls._member_map_: |
| 318 | raise AttributeError( |
| 319 | "%s: cannot delete Enum member." % cls.__name__) |
| 320 | super().__delattr__(attr) |
| 321 | |
Ethan Furman | 388a392 | 2013-08-12 06:51:41 -0700 | [diff] [blame] | 322 | def __dir__(self): |
Ethan Furman | 64a9972 | 2013-09-22 16:18:19 -0700 | [diff] [blame] | 323 | return (['__class__', '__doc__', '__members__', '__module__'] + |
| 324 | self._member_names_) |
Ethan Furman | 388a392 | 2013-08-12 06:51:41 -0700 | [diff] [blame] | 325 | |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 326 | def __getattr__(cls, name): |
| 327 | """Return the enum member matching `name` |
| 328 | |
| 329 | We use __getattr__ instead of descriptors or inserting into the enum |
| 330 | class' __dict__ in order to support `name` and `value` being both |
| 331 | properties for enum members (which live in the class' __dict__) and |
| 332 | enum members themselves. |
| 333 | |
| 334 | """ |
| 335 | if _is_dunder(name): |
| 336 | raise AttributeError(name) |
| 337 | try: |
Ethan Furman | 520ad57 | 2013-07-19 19:47:21 -0700 | [diff] [blame] | 338 | return cls._member_map_[name] |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 339 | except KeyError: |
| 340 | raise AttributeError(name) from None |
| 341 | |
| 342 | def __getitem__(cls, name): |
Ethan Furman | 520ad57 | 2013-07-19 19:47:21 -0700 | [diff] [blame] | 343 | return cls._member_map_[name] |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 344 | |
| 345 | def __iter__(cls): |
Ethan Furman | 520ad57 | 2013-07-19 19:47:21 -0700 | [diff] [blame] | 346 | return (cls._member_map_[name] for name in cls._member_names_) |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 347 | |
| 348 | def __len__(cls): |
Ethan Furman | 520ad57 | 2013-07-19 19:47:21 -0700 | [diff] [blame] | 349 | return len(cls._member_names_) |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 350 | |
Ethan Furman | 2131a4a | 2013-09-14 18:11:24 -0700 | [diff] [blame] | 351 | @property |
| 352 | def __members__(cls): |
| 353 | """Returns a mapping of member name->value. |
| 354 | |
| 355 | This mapping lists all enum members, including aliases. Note that this |
| 356 | is a read-only view of the internal mapping. |
| 357 | |
| 358 | """ |
| 359 | return MappingProxyType(cls._member_map_) |
| 360 | |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 361 | def __repr__(cls): |
| 362 | return "<enum %r>" % cls.__name__ |
| 363 | |
Ethan Furman | 2131a4a | 2013-09-14 18:11:24 -0700 | [diff] [blame] | 364 | def __reversed__(cls): |
| 365 | return (cls._member_map_[name] for name in reversed(cls._member_names_)) |
| 366 | |
Ethan Furman | f203f2d | 2013-09-06 07:16:48 -0700 | [diff] [blame] | 367 | def __setattr__(cls, name, value): |
| 368 | """Block attempts to reassign Enum members. |
| 369 | |
| 370 | A simple assignment to the class namespace only changes one of the |
| 371 | several possible ways to get an Enum member from the Enum class, |
| 372 | resulting in an inconsistent Enumeration. |
| 373 | |
| 374 | """ |
| 375 | member_map = cls.__dict__.get('_member_map_', {}) |
| 376 | if name in member_map: |
| 377 | raise AttributeError('Cannot reassign members.') |
| 378 | super().__setattr__(name, value) |
| 379 | |
anentropic | b8e21f1 | 2018-04-16 04:40:35 +0100 | [diff] [blame] | 380 | def _create_(cls, class_name, names, *, module=None, qualname=None, type=None, start=1): |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 381 | """Convenience method to create a new Enum class. |
| 382 | |
| 383 | `names` can be: |
| 384 | |
| 385 | * A string containing member names, separated either with spaces or |
Ethan Furman | d9925a1 | 2014-09-16 20:35:55 -0700 | [diff] [blame] | 386 | commas. Values are incremented by 1 from `start`. |
| 387 | * An iterable of member names. Values are incremented by 1 from `start`. |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 388 | * An iterable of (member name, value) pairs. |
Ethan Furman | d9925a1 | 2014-09-16 20:35:55 -0700 | [diff] [blame] | 389 | * A mapping of member name -> value pairs. |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 390 | |
| 391 | """ |
| 392 | metacls = cls.__class__ |
| 393 | bases = (cls, ) if type is None else (type, cls) |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 394 | _, first_enum = cls._get_mixins_(bases) |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 395 | classdict = metacls.__prepare__(class_name, bases) |
| 396 | |
| 397 | # special processing needed for names? |
| 398 | if isinstance(names, str): |
| 399 | names = names.replace(',', ' ').split() |
Dong-hee Na | dcc8ce4 | 2017-06-22 01:52:32 +0900 | [diff] [blame] | 400 | if isinstance(names, (tuple, list)) and names and isinstance(names[0], str): |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 401 | original_names, names = names, [] |
Ethan Furman | c16595e | 2016-09-10 23:36:59 -0700 | [diff] [blame] | 402 | last_values = [] |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 403 | for count, name in enumerate(original_names): |
Ethan Furman | c16595e | 2016-09-10 23:36:59 -0700 | [diff] [blame] | 404 | value = first_enum._generate_next_value_(name, start, count, last_values[:]) |
| 405 | last_values.append(value) |
| 406 | names.append((name, value)) |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 407 | |
| 408 | # Here, names is either an iterable of (name, value) or a mapping. |
| 409 | for item in names: |
| 410 | if isinstance(item, str): |
| 411 | member_name, member_value = item, names[item] |
| 412 | else: |
| 413 | member_name, member_value = item |
| 414 | classdict[member_name] = member_value |
| 415 | enum_class = metacls.__new__(metacls, class_name, bases, classdict) |
| 416 | |
| 417 | # TODO: replace the frame hack if a blessed way to know the calling |
| 418 | # module is ever developed |
| 419 | if module is None: |
| 420 | try: |
| 421 | module = sys._getframe(2).f_globals['__name__'] |
| 422 | except (AttributeError, ValueError) as exc: |
| 423 | pass |
| 424 | if module is None: |
| 425 | _make_class_unpicklable(enum_class) |
| 426 | else: |
| 427 | enum_class.__module__ = module |
Ethan Furman | ca1b794 | 2014-02-08 11:36:27 -0800 | [diff] [blame] | 428 | if qualname is not None: |
| 429 | enum_class.__qualname__ = qualname |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 430 | |
| 431 | return enum_class |
| 432 | |
orlnub123 | 0fb9fad | 2018-09-12 20:28:53 +0300 | [diff] [blame] | 433 | def _convert_(cls, name, module, filter, source=None): |
| 434 | """ |
| 435 | Create a new Enum subclass that replaces a collection of global constants |
| 436 | """ |
| 437 | # convert all constants from source (or module) that pass filter() to |
| 438 | # a new Enum called name, and export the enum and its members back to |
| 439 | # module; |
| 440 | # also, replace the __reduce_ex__ method so unpickling works in |
| 441 | # previous Python versions |
| 442 | module_globals = vars(sys.modules[module]) |
| 443 | if source: |
| 444 | source = vars(source) |
| 445 | else: |
| 446 | source = module_globals |
| 447 | # _value2member_map_ is populated in the same order every time |
| 448 | # for a consistent reverse mapping of number to name when there |
| 449 | # are multiple names for the same number. |
| 450 | members = [ |
| 451 | (name, value) |
| 452 | for name, value in source.items() |
| 453 | if filter(name)] |
| 454 | try: |
| 455 | # sort by value |
| 456 | members.sort(key=lambda t: (t[1], t[0])) |
| 457 | except TypeError: |
| 458 | # unless some values aren't comparable, in which case sort by name |
| 459 | members.sort(key=lambda t: t[0]) |
| 460 | cls = cls(name, members, module=module) |
| 461 | cls.__reduce_ex__ = _reduce_ex_by_name |
| 462 | module_globals.update(cls.__members__) |
| 463 | module_globals[name] = cls |
| 464 | return cls |
| 465 | |
| 466 | def _convert(cls, *args, **kwargs): |
| 467 | import warnings |
| 468 | warnings.warn("_convert is deprecated and will be removed in 3.9, use " |
| 469 | "_convert_ instead.", DeprecationWarning, stacklevel=2) |
| 470 | return cls._convert_(*args, **kwargs) |
| 471 | |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 472 | @staticmethod |
| 473 | def _get_mixins_(bases): |
| 474 | """Returns the type for creating enum members, and the first inherited |
| 475 | enum class. |
| 476 | |
| 477 | bases: the tuple of bases that was given to __new__ |
| 478 | |
| 479 | """ |
| 480 | if not bases: |
| 481 | return object, Enum |
| 482 | |
Ethan Furman | 5bdab64 | 2018-09-21 19:03:09 -0700 | [diff] [blame] | 483 | def _find_data_type(bases): |
| 484 | for chain in bases: |
| 485 | for base in chain.__mro__: |
| 486 | if base is object: |
| 487 | continue |
| 488 | elif '__new__' in base.__dict__: |
Ethan Furman | cd45385 | 2018-10-05 23:29:36 -0700 | [diff] [blame] | 489 | if issubclass(base, Enum): |
Ethan Furman | 5bdab64 | 2018-09-21 19:03:09 -0700 | [diff] [blame] | 490 | continue |
| 491 | return base |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 492 | |
Ethan Furman | 5bdab64 | 2018-09-21 19:03:09 -0700 | [diff] [blame] | 493 | # ensure final parent class is an Enum derivative, find any concrete |
| 494 | # data type, and check that Enum has no members |
| 495 | first_enum = bases[-1] |
| 496 | if not issubclass(first_enum, Enum): |
| 497 | raise TypeError("new enumerations should be created as " |
| 498 | "`EnumName([mixin_type, ...] [data_type,] enum_type)`") |
| 499 | member_type = _find_data_type(bases) or object |
| 500 | if first_enum._member_names_: |
| 501 | raise TypeError("Cannot extend enumerations") |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 502 | return member_type, first_enum |
| 503 | |
| 504 | @staticmethod |
| 505 | def _find_new_(classdict, member_type, first_enum): |
| 506 | """Returns the __new__ to be used for creating the enum members. |
| 507 | |
| 508 | classdict: the class dictionary given to __new__ |
| 509 | member_type: the data type whose __new__ will be used by default |
| 510 | first_enum: enumeration to check for an overriding __new__ |
| 511 | |
| 512 | """ |
| 513 | # now find the correct __new__, checking to see of one was defined |
| 514 | # by the user; also check earlier enum classes in case a __new__ was |
| 515 | # saved as __new_member__ |
| 516 | __new__ = classdict.get('__new__', None) |
| 517 | |
| 518 | # should __new__ be saved as __new_member__ later? |
| 519 | save_new = __new__ is not None |
| 520 | |
| 521 | if __new__ is None: |
| 522 | # check all possibles for __new_member__ before falling back to |
| 523 | # __new__ |
| 524 | for method in ('__new_member__', '__new__'): |
| 525 | for possible in (member_type, first_enum): |
| 526 | target = getattr(possible, method, None) |
| 527 | if target not in { |
| 528 | None, |
| 529 | None.__new__, |
| 530 | object.__new__, |
| 531 | Enum.__new__, |
| 532 | }: |
| 533 | __new__ = target |
| 534 | break |
| 535 | if __new__ is not None: |
| 536 | break |
| 537 | else: |
| 538 | __new__ = object.__new__ |
| 539 | |
| 540 | # if a non-object.__new__ is used then whatever value/tuple was |
| 541 | # assigned to the enum member name will be passed to __new__ and to the |
| 542 | # new enum member's __init__ |
| 543 | if __new__ is object.__new__: |
| 544 | use_args = False |
| 545 | else: |
| 546 | use_args = True |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 547 | return __new__, save_new, use_args |
| 548 | |
| 549 | |
| 550 | class Enum(metaclass=EnumMeta): |
| 551 | """Generic enumeration. |
| 552 | |
| 553 | Derive from this class to define new enumerations. |
| 554 | |
| 555 | """ |
| 556 | def __new__(cls, value): |
| 557 | # all enum instances are actually created during class construction |
| 558 | # without calling this method; this method is called by the metaclass' |
| 559 | # __call__ (i.e. Color(3) ), and by pickle |
| 560 | if type(value) is cls: |
Ethan Furman | 23bb6f4 | 2016-11-21 09:22:05 -0800 | [diff] [blame] | 561 | # For lookups like Color(Color.RED) |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 562 | return value |
| 563 | # by-value search for a matching enum member |
| 564 | # see if it's in the reverse mapping (for hashable values) |
Ethan Furman | 2aa2732 | 2013-07-19 19:35:56 -0700 | [diff] [blame] | 565 | try: |
Ethan Furman | 520ad57 | 2013-07-19 19:47:21 -0700 | [diff] [blame] | 566 | if value in cls._value2member_map_: |
| 567 | return cls._value2member_map_[value] |
Ethan Furman | 2aa2732 | 2013-07-19 19:35:56 -0700 | [diff] [blame] | 568 | except TypeError: |
| 569 | # not there, now do long search -- O(n) behavior |
Ethan Furman | 520ad57 | 2013-07-19 19:47:21 -0700 | [diff] [blame] | 570 | for member in cls._member_map_.values(): |
Ethan Furman | 0081f23 | 2014-09-16 17:31:23 -0700 | [diff] [blame] | 571 | if member._value_ == value: |
Ethan Furman | 2aa2732 | 2013-07-19 19:35:56 -0700 | [diff] [blame] | 572 | return member |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 573 | # still not found -- try _missing_ hook |
Ethan Furman | 019f0a0 | 2018-09-12 11:43:34 -0700 | [diff] [blame] | 574 | try: |
| 575 | exc = None |
| 576 | result = cls._missing_(value) |
| 577 | except Exception as e: |
| 578 | exc = e |
| 579 | result = None |
| 580 | if isinstance(result, cls): |
| 581 | return result |
| 582 | else: |
| 583 | ve_exc = ValueError("%r is not a valid %s" % (value, cls.__name__)) |
| 584 | if result is None and exc is None: |
| 585 | raise ve_exc |
| 586 | elif exc is None: |
| 587 | exc = TypeError( |
| 588 | 'error in %s._missing_: returned %r instead of None or a valid member' |
| 589 | % (cls.__name__, result) |
| 590 | ) |
| 591 | exc.__context__ = ve_exc |
| 592 | raise exc |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 593 | |
Ethan Furman | c16595e | 2016-09-10 23:36:59 -0700 | [diff] [blame] | 594 | def _generate_next_value_(name, start, count, last_values): |
| 595 | for last_value in reversed(last_values): |
| 596 | try: |
| 597 | return last_value + 1 |
| 598 | except TypeError: |
| 599 | pass |
| 600 | else: |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 601 | return start |
Ethan Furman | c16595e | 2016-09-10 23:36:59 -0700 | [diff] [blame] | 602 | |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 603 | @classmethod |
| 604 | def _missing_(cls, value): |
Ethan Furman | 0081f23 | 2014-09-16 17:31:23 -0700 | [diff] [blame] | 605 | raise ValueError("%r is not a valid %s" % (value, cls.__name__)) |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 606 | |
| 607 | def __repr__(self): |
| 608 | return "<%s.%s: %r>" % ( |
Ethan Furman | 520ad57 | 2013-07-19 19:47:21 -0700 | [diff] [blame] | 609 | self.__class__.__name__, self._name_, self._value_) |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 610 | |
| 611 | def __str__(self): |
Ethan Furman | 520ad57 | 2013-07-19 19:47:21 -0700 | [diff] [blame] | 612 | return "%s.%s" % (self.__class__.__name__, self._name_) |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 613 | |
Ethan Furman | 388a392 | 2013-08-12 06:51:41 -0700 | [diff] [blame] | 614 | def __dir__(self): |
Ethan Furman | 0ae550b | 2014-10-14 08:58:32 -0700 | [diff] [blame] | 615 | added_behavior = [ |
| 616 | m |
| 617 | for cls in self.__class__.mro() |
| 618 | for m in cls.__dict__ |
Ethan Furman | 354ecf1 | 2015-03-11 08:43:12 -0700 | [diff] [blame] | 619 | if m[0] != '_' and m not in self._member_map_ |
Ethan Furman | 0ae550b | 2014-10-14 08:58:32 -0700 | [diff] [blame] | 620 | ] |
Ethan Furman | ec5f8eb | 2014-10-21 13:40:35 -0700 | [diff] [blame] | 621 | return (['__class__', '__doc__', '__module__'] + added_behavior) |
Ethan Furman | 388a392 | 2013-08-12 06:51:41 -0700 | [diff] [blame] | 622 | |
Ethan Furman | ec15a82 | 2013-08-31 19:17:41 -0700 | [diff] [blame] | 623 | def __format__(self, format_spec): |
| 624 | # mixed-in Enums should use the mixed-in type's __format__, otherwise |
| 625 | # we can get strange results with the Enum name showing up instead of |
| 626 | # the value |
| 627 | |
| 628 | # pure Enum branch |
| 629 | if self._member_type_ is object: |
| 630 | cls = str |
| 631 | val = str(self) |
| 632 | # mix-in branch |
| 633 | else: |
| 634 | cls = self._member_type_ |
Ethan Furman | 0081f23 | 2014-09-16 17:31:23 -0700 | [diff] [blame] | 635 | val = self._value_ |
Ethan Furman | ec15a82 | 2013-08-31 19:17:41 -0700 | [diff] [blame] | 636 | return cls.__format__(val, format_spec) |
| 637 | |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 638 | def __hash__(self): |
Ethan Furman | 520ad57 | 2013-07-19 19:47:21 -0700 | [diff] [blame] | 639 | return hash(self._name_) |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 640 | |
Ethan Furman | ca1b794 | 2014-02-08 11:36:27 -0800 | [diff] [blame] | 641 | def __reduce_ex__(self, proto): |
Ethan Furman | dc87052 | 2014-02-18 12:37:12 -0800 | [diff] [blame] | 642 | return self.__class__, (self._value_, ) |
Ethan Furman | ca1b794 | 2014-02-08 11:36:27 -0800 | [diff] [blame] | 643 | |
Ethan Furman | 33918c1 | 2013-09-27 23:02:02 -0700 | [diff] [blame] | 644 | # DynamicClassAttribute is used to provide access to the `name` and |
| 645 | # `value` properties of enum members while keeping some measure of |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 646 | # protection from modification, while still allowing for an enumeration |
| 647 | # to have members named `name` and `value`. This works because enumeration |
| 648 | # members are not set directly on the enum class -- __getattr__ is |
| 649 | # used to look them up. |
| 650 | |
Ethan Furman | e03ea37 | 2013-09-25 07:14:41 -0700 | [diff] [blame] | 651 | @DynamicClassAttribute |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 652 | def name(self): |
Ethan Furman | c850f34 | 2013-09-15 16:59:35 -0700 | [diff] [blame] | 653 | """The name of the Enum member.""" |
Ethan Furman | 520ad57 | 2013-07-19 19:47:21 -0700 | [diff] [blame] | 654 | return self._name_ |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 655 | |
Ethan Furman | e03ea37 | 2013-09-25 07:14:41 -0700 | [diff] [blame] | 656 | @DynamicClassAttribute |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 657 | def value(self): |
Ethan Furman | c850f34 | 2013-09-15 16:59:35 -0700 | [diff] [blame] | 658 | """The value of the Enum member.""" |
Ethan Furman | 520ad57 | 2013-07-19 19:47:21 -0700 | [diff] [blame] | 659 | return self._value_ |
Ethan Furman | 6b3d64a | 2013-06-14 16:55:46 -0700 | [diff] [blame] | 660 | |
| 661 | |
| 662 | class IntEnum(int, Enum): |
| 663 | """Enum where members are also (and must be) ints""" |
Ethan Furman | f24bb35 | 2013-07-18 17:05:39 -0700 | [diff] [blame] | 664 | |
| 665 | |
Ethan Furman | 24e837f | 2015-03-18 17:27:57 -0700 | [diff] [blame] | 666 | def _reduce_ex_by_name(self, proto): |
| 667 | return self.name |
| 668 | |
Ethan Furman | 65a5a47 | 2016-09-01 23:55:19 -0700 | [diff] [blame] | 669 | class Flag(Enum): |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 670 | """Support for flags""" |
Ethan Furman | c16595e | 2016-09-10 23:36:59 -0700 | [diff] [blame] | 671 | |
| 672 | def _generate_next_value_(name, start, count, last_values): |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 673 | """ |
| 674 | Generate the next value when not given. |
| 675 | |
| 676 | name: the name of the member |
| 677 | start: the initital start value or None |
| 678 | count: the number of existing members |
| 679 | last_value: the last value assigned or None |
| 680 | """ |
| 681 | if not count: |
| 682 | return start if start is not None else 1 |
Ethan Furman | c16595e | 2016-09-10 23:36:59 -0700 | [diff] [blame] | 683 | for last_value in reversed(last_values): |
| 684 | try: |
| 685 | high_bit = _high_bit(last_value) |
| 686 | break |
Ethan Furman | 3515dcc | 2016-09-18 13:15:41 -0700 | [diff] [blame] | 687 | except Exception: |
Ethan Furman | c16595e | 2016-09-10 23:36:59 -0700 | [diff] [blame] | 688 | raise TypeError('Invalid Flag value: %r' % last_value) from None |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 689 | return 2 ** (high_bit+1) |
| 690 | |
| 691 | @classmethod |
| 692 | def _missing_(cls, value): |
| 693 | original_value = value |
| 694 | if value < 0: |
| 695 | value = ~value |
| 696 | possible_member = cls._create_pseudo_member_(value) |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 697 | if original_value < 0: |
| 698 | possible_member = ~possible_member |
| 699 | return possible_member |
| 700 | |
| 701 | @classmethod |
| 702 | def _create_pseudo_member_(cls, value): |
Ethan Furman | 3515dcc | 2016-09-18 13:15:41 -0700 | [diff] [blame] | 703 | """ |
| 704 | Create a composite member iff value contains only members. |
| 705 | """ |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 706 | pseudo_member = cls._value2member_map_.get(value, None) |
| 707 | if pseudo_member is None: |
Ethan Furman | 3515dcc | 2016-09-18 13:15:41 -0700 | [diff] [blame] | 708 | # verify all bits are accounted for |
| 709 | _, extra_flags = _decompose(cls, value) |
| 710 | if extra_flags: |
| 711 | raise ValueError("%r is not a valid %s" % (value, cls.__name__)) |
| 712 | # construct a singleton enum pseudo-member |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 713 | pseudo_member = object.__new__(cls) |
| 714 | pseudo_member._name_ = None |
| 715 | pseudo_member._value_ = value |
Ethan Furman | 28cf663 | 2017-01-24 12:12:06 -0800 | [diff] [blame] | 716 | # use setdefault in case another thread already created a composite |
| 717 | # with this value |
| 718 | pseudo_member = cls._value2member_map_.setdefault(value, pseudo_member) |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 719 | return pseudo_member |
| 720 | |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 721 | def __contains__(self, other): |
| 722 | if not isinstance(other, self.__class__): |
Rahul Jha | 9430652 | 2018-09-10 23:51:04 +0530 | [diff] [blame] | 723 | raise TypeError( |
| 724 | "unsupported operand type(s) for 'in': '%s' and '%s'" % ( |
| 725 | type(other).__qualname__, self.__class__.__qualname__)) |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 726 | return other._value_ & self._value_ == other._value_ |
| 727 | |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 728 | def __repr__(self): |
| 729 | cls = self.__class__ |
| 730 | if self._name_ is not None: |
| 731 | return '<%s.%s: %r>' % (cls.__name__, self._name_, self._value_) |
Ethan Furman | 3515dcc | 2016-09-18 13:15:41 -0700 | [diff] [blame] | 732 | members, uncovered = _decompose(cls, self._value_) |
Ethan Furman | 27682d2 | 2016-09-04 11:39:01 -0700 | [diff] [blame] | 733 | return '<%s.%s: %r>' % ( |
| 734 | cls.__name__, |
| 735 | '|'.join([str(m._name_ or m._value_) for m in members]), |
| 736 | self._value_, |
| 737 | ) |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 738 | |
| 739 | def __str__(self): |
| 740 | cls = self.__class__ |
| 741 | if self._name_ is not None: |
| 742 | return '%s.%s' % (cls.__name__, self._name_) |
Ethan Furman | 3515dcc | 2016-09-18 13:15:41 -0700 | [diff] [blame] | 743 | members, uncovered = _decompose(cls, self._value_) |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 744 | if len(members) == 1 and members[0]._name_ is None: |
| 745 | return '%s.%r' % (cls.__name__, members[0]._value_) |
| 746 | else: |
| 747 | return '%s.%s' % ( |
| 748 | cls.__name__, |
| 749 | '|'.join([str(m._name_ or m._value_) for m in members]), |
| 750 | ) |
| 751 | |
Ethan Furman | 25d94bb | 2016-09-02 16:32:32 -0700 | [diff] [blame] | 752 | def __bool__(self): |
| 753 | return bool(self._value_) |
| 754 | |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 755 | def __or__(self, other): |
| 756 | if not isinstance(other, self.__class__): |
| 757 | return NotImplemented |
| 758 | return self.__class__(self._value_ | other._value_) |
| 759 | |
| 760 | def __and__(self, other): |
| 761 | if not isinstance(other, self.__class__): |
| 762 | return NotImplemented |
| 763 | return self.__class__(self._value_ & other._value_) |
| 764 | |
| 765 | def __xor__(self, other): |
| 766 | if not isinstance(other, self.__class__): |
| 767 | return NotImplemented |
| 768 | return self.__class__(self._value_ ^ other._value_) |
| 769 | |
| 770 | def __invert__(self): |
Ethan Furman | 3515dcc | 2016-09-18 13:15:41 -0700 | [diff] [blame] | 771 | members, uncovered = _decompose(self.__class__, self._value_) |
Serhiy Storchaka | 8110837 | 2017-09-26 00:55:55 +0300 | [diff] [blame] | 772 | inverted = self.__class__(0) |
| 773 | for m in self.__class__: |
| 774 | if m not in members and not (m._value_ & self._value_): |
| 775 | inverted = inverted | m |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 776 | return self.__class__(inverted) |
| 777 | |
| 778 | |
Ethan Furman | 65a5a47 | 2016-09-01 23:55:19 -0700 | [diff] [blame] | 779 | class IntFlag(int, Flag): |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 780 | """Support for integer-based Flags""" |
| 781 | |
| 782 | @classmethod |
Ethan Furman | 3515dcc | 2016-09-18 13:15:41 -0700 | [diff] [blame] | 783 | def _missing_(cls, value): |
| 784 | if not isinstance(value, int): |
| 785 | raise ValueError("%r is not a valid %s" % (value, cls.__name__)) |
| 786 | new_member = cls._create_pseudo_member_(value) |
| 787 | return new_member |
| 788 | |
| 789 | @classmethod |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 790 | def _create_pseudo_member_(cls, value): |
| 791 | pseudo_member = cls._value2member_map_.get(value, None) |
| 792 | if pseudo_member is None: |
Ethan Furman | 3515dcc | 2016-09-18 13:15:41 -0700 | [diff] [blame] | 793 | need_to_create = [value] |
| 794 | # get unaccounted for bits |
| 795 | _, extra_flags = _decompose(cls, value) |
| 796 | # timer = 10 |
| 797 | while extra_flags: |
| 798 | # timer -= 1 |
| 799 | bit = _high_bit(extra_flags) |
| 800 | flag_value = 2 ** bit |
| 801 | if (flag_value not in cls._value2member_map_ and |
| 802 | flag_value not in need_to_create |
| 803 | ): |
| 804 | need_to_create.append(flag_value) |
| 805 | if extra_flags == -flag_value: |
| 806 | extra_flags = 0 |
| 807 | else: |
| 808 | extra_flags ^= flag_value |
| 809 | for value in reversed(need_to_create): |
| 810 | # construct singleton pseudo-members |
| 811 | pseudo_member = int.__new__(cls, value) |
| 812 | pseudo_member._name_ = None |
| 813 | pseudo_member._value_ = value |
Ethan Furman | 28cf663 | 2017-01-24 12:12:06 -0800 | [diff] [blame] | 814 | # use setdefault in case another thread already created a composite |
| 815 | # with this value |
| 816 | pseudo_member = cls._value2member_map_.setdefault(value, pseudo_member) |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 817 | return pseudo_member |
| 818 | |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 819 | def __or__(self, other): |
| 820 | if not isinstance(other, (self.__class__, int)): |
| 821 | return NotImplemented |
Ethan Furman | 3515dcc | 2016-09-18 13:15:41 -0700 | [diff] [blame] | 822 | result = self.__class__(self._value_ | self.__class__(other)._value_) |
| 823 | return result |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 824 | |
| 825 | def __and__(self, other): |
| 826 | if not isinstance(other, (self.__class__, int)): |
| 827 | return NotImplemented |
| 828 | return self.__class__(self._value_ & self.__class__(other)._value_) |
| 829 | |
| 830 | def __xor__(self, other): |
| 831 | if not isinstance(other, (self.__class__, int)): |
| 832 | return NotImplemented |
| 833 | return self.__class__(self._value_ ^ self.__class__(other)._value_) |
| 834 | |
| 835 | __ror__ = __or__ |
| 836 | __rand__ = __and__ |
| 837 | __rxor__ = __xor__ |
| 838 | |
| 839 | def __invert__(self): |
Ethan Furman | 3515dcc | 2016-09-18 13:15:41 -0700 | [diff] [blame] | 840 | result = self.__class__(~self._value_) |
| 841 | return result |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 842 | |
| 843 | |
| 844 | def _high_bit(value): |
Ethan Furman | 0443953 | 2016-09-02 15:50:21 -0700 | [diff] [blame] | 845 | """returns index of highest bit, or -1 if value is zero or negative""" |
Ethan Furman | 3515dcc | 2016-09-18 13:15:41 -0700 | [diff] [blame] | 846 | return value.bit_length() - 1 |
Ethan Furman | ee47e5c | 2016-08-31 00:12:15 -0700 | [diff] [blame] | 847 | |
Ethan Furman | f24bb35 | 2013-07-18 17:05:39 -0700 | [diff] [blame] | 848 | def unique(enumeration): |
| 849 | """Class decorator for enumerations ensuring unique member values.""" |
| 850 | duplicates = [] |
| 851 | for name, member in enumeration.__members__.items(): |
| 852 | if name != member.name: |
| 853 | duplicates.append((name, member.name)) |
| 854 | if duplicates: |
| 855 | alias_details = ', '.join( |
| 856 | ["%s -> %s" % (alias, name) for (alias, name) in duplicates]) |
| 857 | raise ValueError('duplicate values found in %r: %s' % |
| 858 | (enumeration, alias_details)) |
| 859 | return enumeration |
Ethan Furman | 3515dcc | 2016-09-18 13:15:41 -0700 | [diff] [blame] | 860 | |
| 861 | def _decompose(flag, value): |
| 862 | """Extract all members from the value.""" |
| 863 | # _decompose is only called if the value is not named |
| 864 | not_covered = value |
| 865 | negative = value < 0 |
Ethan Furman | 28cf663 | 2017-01-24 12:12:06 -0800 | [diff] [blame] | 866 | # issue29167: wrap accesses to _value2member_map_ in a list to avoid race |
Ville Skyttä | 49b2734 | 2017-08-03 09:00:59 +0300 | [diff] [blame] | 867 | # conditions between iterating over it and having more pseudo- |
Ethan Furman | 28cf663 | 2017-01-24 12:12:06 -0800 | [diff] [blame] | 868 | # members added to it |
Ethan Furman | 3515dcc | 2016-09-18 13:15:41 -0700 | [diff] [blame] | 869 | if negative: |
| 870 | # only check for named flags |
| 871 | flags_to_check = [ |
| 872 | (m, v) |
Ethan Furman | 28cf663 | 2017-01-24 12:12:06 -0800 | [diff] [blame] | 873 | for v, m in list(flag._value2member_map_.items()) |
Ethan Furman | 3515dcc | 2016-09-18 13:15:41 -0700 | [diff] [blame] | 874 | if m.name is not None |
| 875 | ] |
| 876 | else: |
| 877 | # check for named flags and powers-of-two flags |
| 878 | flags_to_check = [ |
| 879 | (m, v) |
Ethan Furman | 28cf663 | 2017-01-24 12:12:06 -0800 | [diff] [blame] | 880 | for v, m in list(flag._value2member_map_.items()) |
Ethan Furman | 3515dcc | 2016-09-18 13:15:41 -0700 | [diff] [blame] | 881 | if m.name is not None or _power_of_two(v) |
| 882 | ] |
| 883 | members = [] |
| 884 | for member, member_value in flags_to_check: |
| 885 | if member_value and member_value & value == member_value: |
| 886 | members.append(member) |
| 887 | not_covered &= ~member_value |
| 888 | if not members and value in flag._value2member_map_: |
| 889 | members.append(flag._value2member_map_[value]) |
| 890 | members.sort(key=lambda m: m._value_, reverse=True) |
| 891 | if len(members) > 1 and members[0].value == value: |
| 892 | # we have the breakdown, don't need the value member itself |
| 893 | members.pop(0) |
| 894 | return members, not_covered |
| 895 | |
| 896 | def _power_of_two(value): |
| 897 | if value < 1: |
| 898 | return False |
| 899 | return value == 2 ** _high_bit(value) |