forked from cython/cython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request cython#437 from robertwb/cpdef-enums
More complete cpdef enums.
- Loading branch information
Showing
10 changed files
with
197 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
#################### EnumBase #################### | ||
|
||
cimport cython | ||
|
||
cdef extern from *: | ||
int PY_VERSION_HEX | ||
|
||
cdef object __Pyx_OrderedDict | ||
if PY_VERSION_HEX >= 0x02070000: | ||
from collections import OrderedDict as __Pyx_OrderedDict | ||
else: | ||
__Pyx_OrderedDict = dict | ||
|
||
@cython.internal | ||
cdef class __Pyx_EnumMeta(type): | ||
def __init__(cls, name, parents, dct): | ||
type.__init__(cls, name, parents, dct) | ||
cls.__members__ = __Pyx_OrderedDict() | ||
def __iter__(cls): | ||
return iter(cls.__members__.values()) | ||
def __getitem__(cls, name): | ||
return cls.__members__[name] | ||
|
||
# @cython.internal | ||
cdef type __Pyx_EnumBase | ||
class __Pyx_EnumBase(int): | ||
__metaclass__ = __Pyx_EnumMeta | ||
def __new__(cls, value, name=None): | ||
for v in cls: | ||
if v == value: | ||
return v | ||
if name is None: | ||
raise ValueError("Unknown enum value: '%s'" % value) | ||
res = int.__new__(cls, value) | ||
res.name = name | ||
setattr(cls, name, res) | ||
cls.__members__[name] = res | ||
return res | ||
def __repr__(self): | ||
return "<%s.%s: %d>" % (self.__class__.__name__, self.name, self) | ||
def __str__(self): | ||
return "%s.%s" % (self.__class__.__name__, self.name) | ||
|
||
#################### EnumType #################### | ||
#@requires: EnumBase | ||
|
||
cdef dict __Pyx_globals = globals() | ||
if PY_VERSION_HEX >= 0x03040000: | ||
from enum import IntEnum | ||
{{name}} = IntEnum('{{name}}', __Pyx_OrderedDict([ | ||
{{for item in items}} | ||
('{{item}}', {{item}}), | ||
{{endfor}} | ||
])) | ||
{{for item in items}} | ||
__Pyx_globals['{{item}}'] = {{name}}.{{item}} | ||
{{endfor}} | ||
else: | ||
class {{name}}(__Pyx_EnumBase): | ||
pass | ||
{{for item in items}} | ||
__Pyx_globals['{{item}}'] = {{name}}({{item}}, '{{item}}') | ||
{{endfor}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters