forked from pwin/owlready2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.py
252 lines (193 loc) · 8.15 KB
/
util.py
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
# -*- coding: utf-8 -*-
# Owlready2
# Copyright (C) 2017-2019 Jean-Baptiste LAMY
# LIMICS (Laboratoire d'informatique médicale et d'ingénierie des connaissances en santé), UMR_S 1142
# University Paris 13, Sorbonne paris-Cité, Bobigny, France
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#def _int_base_62(i):
# if i == 0: return ""
# return _int_base_62(i // 62) + "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"[i % 62]
class FTS(str):
__slots__ = ["lang"]
def __new__(Class, s, lang = ""): return str.__new__(Class, s)
def __init__(self, s, lang = ""):
str.__init__(self)
self.lang = lang
class NumS(object):
_OPERATORS = { "<", ">", ">=", "<=", "=", "!=" }
def __init__(self, *operators_and_values):
self.operators_and_values = list(zip(operators_and_values[::2], operators_and_values[1::2]))
for (operator, value) in self.operators_and_values:
if not operator in self._OPERATORS: raise ValueError("Supported operators are %s!" % self._OPERATORS)
# assert (type(value) is float) or (type(value) is int)
class normstr(str):
__slots__ = []
class locstr(str):
__slots__ = ["lang"]
def __new__(Class, s, lang = ""): return str.__new__(Class, s)
def __init__(self, s, lang = ""):
str.__init__(self)
self.lang = lang
def __eq__(self, other):
return str.__eq__(self, other) and ((not isinstance(other, locstr)) or (self.lang == other.lang))
def __hash__(self): return str.__hash__(self)
class FirstList(list):
__slots__ = []
def first(self):
if len(self) != 0: return self[0]
return None
class CallbackList(FirstList):
__slots__ = ["_obj", "_callback"]
def __init__(self, l, obj, callback):
super().__init__(l)
self._obj = obj
self._callback = callback
def _set (self, l): super().__init__(l)
def _append(self, x): super().append(x)
def _remove(self, x): super().remove(x)
def _replace(self, old, new): super().__setitem__(self.index(old), new)
def reinit(self, l): old = list(self); super().__init__(l) ; self._callback(self._obj, old)
def append(self, x): old = list(self); super().append(x) ; self._callback(self._obj, old)
def insert(self, i, x): old = list(self); super().insert(i, x) ; self._callback(self._obj, old)
def extend(self, l): old = list(self); super().extend(l) ; self._callback(self._obj, old)
def remove(self, x): old = list(self); super().remove(x) ; self._callback(self._obj, old)
def __delitem__(self, i): old = list(self); super().__delitem__(i) ; self._callback(self._obj, old)
def __setitem__(self, i, x): old = list(self); super().__setitem__(i, x) ; self._callback(self._obj, old)
def __delslice__(self, i): old = list(self); super().__delslice__(i) ; self._callback(self._obj, old)
def __setslice__(self, i, x): old = list(self); super().__setslice__(i, x); self._callback(self._obj, old)
def __iadd__(self, x): old = list(self); super().__iadd__(x) ; self._callback(self._obj, old); return self
def __imul__(self, x): old = list(self); super().__imul__(x) ; self._callback(self._obj, old); return self
def pop(self, i): old = list(self); r = super().pop(i) ; self._callback(self._obj, old); return r
def clear(self): old = list(self); super().clear() ; self._callback(self._obj, old)
class LanguageSublist(CallbackList):
__slots__ = ["_l", "_lang"]
def __init__(self, l, lang):
list.__init__(self, (str(x) for x in l if isinstance(x, locstr) and x.lang == lang))
self._l = l
self._lang = lang
self._obj = None
def _callback(self, obj, old):
new = set(self)
l = [x for x in self._l if not(isinstance(x, locstr) and x.lang == self._lang)]
l.extend(locstr(x, self._lang) for x in new)
self._l.reinit(l)
def reinit(self, l):
if isinstance(l, str): l = [locstr(l, self._lang)]
else: l = [locstr(x, self._lang) for x in l]
CallbackList.reinit(self, l)
class CallbackListWithLanguage(CallbackList):
__slots__ = []
def __getattr__(self, attr):
if len(attr) != 2: raise AttributeError("'%s' is not a language code (must be 2-char string)!" % attr)
return LanguageSublist(self, attr)
get_lang = __getattr__
def __setattr__(self, attr, values):
if attr.startswith("_") or (len(attr) > 2):
super.__setattr__(self, attr, values)
else:
if len(attr) != 2: raise AttributeError("'%s' is not a language code (must be 2-char string)!" % attr)
if isinstance(values, str): values = { locstr(values, attr) }
else: values = { locstr(value , attr) for value in values }
l = [x for x in self if not(isinstance(x, locstr) and (x.lang == attr))]
if isinstance(values, str): l.append(locstr(values, attr))
else: l.extend(locstr(x, attr) for x in values)
self.reinit(l)
class _LazyListMixin(list):
__slots__ = []
_PopulatedClass = FirstList
def __init__(self):
super().__init__()
def _get_content(self): raise NotImplementedError
def populate(self):
list.__init__(self, self._get_content())
self.__class__ = self._PopulatedClass
def __repr__(self):
self.populate()
return repr(self)
def __str__(self):
self.populate()
return str(self)
def __iter__(self):
self.populate()
return iter(self)
def __len__(self):
self.populate()
return len(self)
def __eq__(self, o):
self.populate()
return self == o
def __ne__(self, o):
self.populate()
return self != o
def __getitem__(self, i):
self.populate()
return self[i]
def __delitem__(self, i):
self.populate()
del self[i]
def __setitem__(self, i, x):
self.populate()
self[i] = x
def __iadd__(self, x):
self.populate()
self += x
def __imul__(self, x):
self.populate()
self *= x
def pop(self, index):
self.populate()
return self.pop(index)
def count(self, e):
self.populate()
return self.count(e)
def index(self, e):
self.populate()
return self.index(e)
def reverse(self):
self.populate()
return self.reverse()
def sort(self, key = None, reverse = False):
self.populate()
return self.sort(key = key, reverse = reverse)
def append(self, e):
self.populate()
return self.append(e)
def insert(self, index, e):
self.populate()
return self.insert(index, e)
def extend(self, l):
self.populate()
return self.extend(l)
def remove(self, e):
self.populate()
return self.remove(e)
def clear(self):
self.__class__ = self._PopulatedClass
try:
from contextvars import ContextVar
except ImportError:
import threading
local = threading.local()
class ContextVar(object):
def __init__(self, name, default = None):
self.name = name
self.default = default
def get(self): return getattr(local, self.name, self.default)
def set(self, value): return setattr(local, self.name, value)
class Environment(object):
__slots__ = ["level"]
def __init__(self):
self.level = ContextVar("%s_level" % self.__class__.__name__, default = 0)
def __repr__(self): return "<%s, level %s>" % (self.__class__.__name__, self.level.get())
def __bool__(self): return self.level.get() != 0
def __enter__(self): self.level.set(self.level.get() + 1)
def __exit__(self, exc_type = None, exc_val = None, exc_tb = None): self.level.set(self.level.get() - 1)