-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeepnest.py
286 lines (247 loc) · 6.22 KB
/
deepnest.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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
import re
#Итератор для обхода в глубину сильно вложенных объектов:
class DeepIterator:
class Pair:
def __init__(self, key, val): self.key, self.val = key, val
def __str__(self): return str((self.key, self.val))
def __init__(self, obj): self.top, self.obj = [[(obj,), 0]], None
def __next__(self):
while self.top and self.top[-1][1] >= len(self.top[-1][0]):
self.top.pop()
if not self.top:
raise StopIteration()
buf = self.top[-1]
if len(buf) == 3:
key = buf[2][buf[1]]; obj = buf[0][key]
self.obj = DeepIterator.Pair(key, obj)
else:
pos = buf[1]; obj = buf[0][pos]
self.obj = obj
buf[1] += 1
if type(obj) in (frozenset, set, dict):
self.top.append(
[obj, 0, sorted(obj.keys())]
)
elif type(obj) in (tuple, list):
self.top.append([obj, 0])
else:
self.top.append([[], 0])
return self.obj
def __iter__(self):
return self
def level(self):
return len(self.top) - 1
#Обертка для сильно вложенных объектов:
class DeepWrapper:
def __init__(self, obj): self.obj = obj
def __eq__(self, rhs):
if type(rhs) is not DeepWrapper:
raise TypeError()
it1 = DeepIterator(self.obj); it2 = DeepIterator(rhs.obj)
for d1, d2 in zip(it1, it2):
if it1.level() != it2.level(): return False
if type(d1) is not type(d2): return False
if type(d1) is DeepIterator.Pair:
if d1.key != d2.key:
return False
vl = d1.val; vr = d2.val
if type(vl) is not type(vr):
return False
d1 = vl; d2 = vr
if type(d1) in (
str, float, int, bool, None
):
if d1 != d2:
return False
try: next(it1)
except StopIteration: e1 = True
else: e1 = False
try: next(it2)
except StopIteration: e2 = True
else: e2 = False
return e1 and e2
def items(self):
return DeepIterator(self.obj)
def dumps(dat):
dat = DeepIterator(dat); ans = ''; top = []; l = None
for i in dat:
while l and l > dat.level():
ans += top.pop()
l -= 1
if l == dat.level():
ans += ', '
l = dat.level()
#Упаковка ассоциативных массивов:
if type(i) is DeepIterator.Pair:
ans += '"' + str(i.key) + '": '
i = i.val
if type(i) is dict:
top.append('}')
ans += '{'
#Упаковка списков и кортежей:
elif type(i) in (list, tuple):
top.append(']')
ans += '['
#Упаковка скалярных типов:
elif type(i) is bool:
ans += 'true' if i else 'false'
elif type(i) is str:
ans += '"' + str(i) + '"'
elif type(i) in (float, int):
ans += str(i)
elif i is None:
ans += 'null'
else:
raise TypeError(
'Object of type \'' +\
type(i).__name__ +\
'\' is not JSON ' +\
'serializable'
)
while top:
ans += top[-1]
top.pop()
return ans
IND_DATA = 1
EXP_BOOL = r'(true|false)'
IND_BOOL = 2
EXP_NULL = r'(null)'
IND_NULL = 3
EXP_NUM = r'([+-]?\d+((\.\d*)?([eE][+-]\d+)?))'
IND_NUM = 4
IND_NUM_FRAC = 5
IND_NUM_DOT = 6
IND_NUM_EXP = 7
EXP_STR = r'("((\\.|[^\\"])*)")'
IND_STR = 8
IND_STR_CHAR = 9
EXP_COL = r'(:)?'
IND_COL = 11
EXP_COM = r'(,)'
IND_COM = 12
EXP_BRC = r'(\[|\]|\{|\})'
IND_BRC = 13
EXP = re.compile(
r'\s*(' + EXP_BOOL + '|' + EXP_NULL + '|' + EXP_NUM + '|' + EXP_STR + r')\s*' + EXP_COL + r'\s*' +\
'|' +\
r'\s*' + EXP_COM + r'\s*' +\
'|' +\
r'\s*' + EXP_BRC + r'\s*'
)
def loads(txt):
if type(txt) is not str: raise TypeError('The JSON object must be str')
if len(txt) == 0: raise Exception('Unexpected end of string in pos 0')
top = []; pos = 0; dat = None; fst = True; sep = False; key = False; m = None
while True:
if m is not None: pos = m.end()
if pos >= len(txt): break
m = EXP.match(txt, pos)
if m is None: raise Exception('Incorrect syntax in pos ' + str(pos))
#Проверяем скобки:
if m.group(IND_BRC) == '}':
if not top or type(top[-1][0]) is not dict:
raise Exception(
'Extra closing bracket in pos ' + str(pos)
)
if sep:
raise Exception(
"Unexpected token '}' in pos " + str(pos)
)
dat = top[-1][0]
top.pop()
elif m.group(IND_BRC) == ']':
if not top or type(top[-1][0]) is not list:
raise Exception(
'Extra closing bracket in pos ' + str(pos)
)
if sep:
raise Exception(
"Unexpected token ']' in pos " + str(pos)
)
dat = top[-1][0]
top.pop()
elif m.group(IND_BRC) == '{':
if not fst:
raise Exception(
"Unexpected token '{' in pos " + str(pos)
)
dat = dict(); top.append([dat, None])
key = True
sep = False
fst = True
continue
elif m.group(IND_BRC) == '[':
if not fst:
raise Exception(
"Unexpected token '[' in pos " + str(pos)
)
dat = list(); top.append([dat])
key = False
sep = False
fst = True
continue
#Проверяем данные:
if m.group(IND_DATA):
if key and not m.group(IND_COL):
raise Exception(
"Expecting ':' delimiter in pos " + str(m.end())
)
if m.group(IND_NUM):
#num
if m.group(IND_NUM_FRAC):
dat = float(m.group(IND_DATA))
else:
dat = int(m.group(IND_DATA))
elif m.group(IND_STR):
#str
dat = str(m.group(IND_STR_CHAR))
elif m.group(IND_BOOL):
#bool
dat = (m.group(IND_BOOL) == 'true')
elif m.group(IND_NULL):
#null
dat = None
#Проверяем разделители:
if m.group(IND_COM) == ',':
if fst or not top or (type(top[-1][0]) not in (dict, list)):
pos = m.start(IND_COM)
raise Exception(
'Unexpected token \',\' in pos ' + str(pos)
)
key = False
sep = True
fst = True
continue
elif m.group(IND_COL) == ':':
if not top or type(top[-1][0]) is not dict:
pos = m.start(IND_COL)
raise Exception(
'Unexpected token \':\' in pos ' + str(pos)
)
if type(dat) is not str:
raise Exception(
'Incorrect type of key in pos ' + str(pos)
)
pass
top[-1][1] = dat
key = False
sep = True
fst = True
continue
key = False
sep = False
fst = False
#Проверяем вышестояющий объект:
if not top: continue
elif type(top[-1][0]) is dict:
top[-1][0][
top[-1][1]
] = dat
elif type(top[-1][0]) is list:
top[-1][0].\
append(dat)
if top:
raise Exception(
'Unexpected end of string in pos ' + str(pos)
)
return dat