1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
import weakref
import UserDict
from rpython.tool.uid import Hashable
class AutoRegisteringType(type):
def __init__(selfcls, name, bases, dict):
type.__init__(selfcls, name, bases, dict)
if '_about_' in dict:
selfcls._register_value(dict['_about_'])
del selfcls._about_ # avoid keeping a ref
if '_type_' in dict:
selfcls._register_type(dict['_type_'])
del selfcls._type_
def _register(selfcls, dict, key):
if isinstance(key, tuple):
for k in key:
selfcls._register(dict, k)
else:
if key in dict:
raise ValueError("duplicate extregistry entry %r" % (selfcls,))
dict[key] = selfcls
def _register_value(selfcls, key):
selfcls._register(EXT_REGISTRY_BY_VALUE, key)
def _register_type(selfcls, key):
selfcls._register(EXT_REGISTRY_BY_TYPE, key)
class ExtRegistryEntry(object):
__metaclass__ = AutoRegisteringType
def __init__(self, type, instance=None):
self.type = type
self.instance = instance
# structural equality, and trying hard to be hashable: Entry instances
# are used as keys to map annotations to Reprs in the rtyper.
# Warning, it's based on only 'type' and 'instance'.
def __eq__(self, other):
return (self.__class__ is other.__class__ and
self.type == other.type and
self.instance == other.instance)
def __ne__(self, other):
return not self.__eq__(other)
def __hash__(self):
return hash((self.__class__, self.type, Hashable(self.instance)))
def compute_annotation_bk(self, bk):
self.bookkeeper = bk
return self.compute_annotation()
def compute_annotation(self):
# callers should always use compute_annotation_bk()!
# default implementation useful for built-in functions,
# can be overriden.
func = self.instance
assert func is not None
from rpython.annotator import model as annmodel
analyser = self.compute_result_annotation
methodname = getattr(func, '__name__', None)
return annmodel.SomeBuiltin(analyser, methodname=methodname)
def compute_result_annotation(self, *args_s, **kwds_s):
# default implementation for built-in functions with a constant
# result annotation, can be overriden
return self.s_result_annotation
# ____________________________________________________________
class FlexibleWeakDict(UserDict.DictMixin):
"""A WeakKeyDictionary that accepts more or less anything as keys:
weakly referenceable objects or not, hashable objects or not.
"""
def __init__(self):
self._regdict = {}
self._weakdict = weakref.WeakKeyDictionary()
self._iddict = {}
def ref(self, key):
try:
hash(key)
except TypeError:
return self._iddict, Hashable(key) # key is not hashable
try:
weakref.ref(key)
except TypeError:
return self._regdict, key # key cannot be weakly ref'ed
else:
return self._weakdict, key # normal case
def __getitem__(self, key):
d, key = self.ref(key)
return d[key]
def __setitem__(self, key, value):
d, key = self.ref(key)
d[key] = value
def __delitem__(self, key):
d, key = self.ref(key)
del d[key]
def keys(self):
return (self._regdict.keys() +
self._weakdict.keys() +
[hashable.value for hashable in self._iddict])
EXT_REGISTRY_BY_VALUE = FlexibleWeakDict()
EXT_REGISTRY_BY_TYPE = weakref.WeakKeyDictionary()
# ____________________________________________________________
# Public interface to access the registry
def _lookup_type_cls(tp):
return EXT_REGISTRY_BY_TYPE[tp]
def lookup_type(tp):
Entry = _lookup_type_cls(tp)
return Entry(tp)
def is_registered_type(tp):
return tp in EXT_REGISTRY_BY_TYPE
def _lookup_cls(instance):
try:
return EXT_REGISTRY_BY_VALUE[instance]
except (KeyError, TypeError):
return _lookup_type_cls(type(instance))
def lookup(instance):
Entry = _lookup_cls(instance)
return Entry(type(instance), instance)
def is_registered(instance):
try:
_lookup_cls(instance)
except KeyError:
return False
return True
|