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