forked from ipfs-shipyard/py-ipfs-http-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencoding.py
424 lines (342 loc) · 11.6 KB
/
encoding.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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
# -*- encoding: utf-8 -*-
"""Defines encoding related classes.
.. note::
The XML and ProtoBuf encoders are currently not functional.
"""
from __future__ import absolute_import
import abc
import codecs
import io
import json
import pickle
import six
from . import exceptions
class Encoding(object):
"""Abstract base for a data parser/encoder interface.
"""
__metaclass__ = abc.ABCMeta
@abc.abstractmethod
def parse_partial(self, raw):
"""Parses the given data and yields all complete data sets that can
be built from this.
Raises
------
~ipfsapi.exceptions.DecodingError
Parameters
----------
raw : bytes
Data to be parsed
Returns
-------
generator
"""
def parse_finalize(self):
"""Finalizes parsing based on remaining buffered data and yields the
remaining data sets.
Raises
------
~ipfsapi.exceptions.DecodingError
Returns
-------
generator
"""
return ()
def parse(self, raw):
"""Returns a Python object decoded from the bytes of this encoding.
Raises
------
~ipfsapi.exceptions.DecodingError
Parameters
----------
raw : bytes
Data to be parsed
Returns
-------
object
"""
results = list(self.parse_partial(raw))
results.extend(self.parse_finalize())
return results[0] if len(results) == 1 else results
@abc.abstractmethod
def encode(self, obj):
"""Serialize a raw object into corresponding encoding.
Raises
------
~ipfsapi.exceptions.EncodingError
Parameters
----------
obj : object
Object to be encoded
"""
class Dummy(Encoding):
"""Dummy parser/encoder that does nothing.
"""
name = "none"
def parse_partial(self, raw):
"""Yields the data passed into this method.
Parameters
----------
raw : bytes
Any kind of data
Returns
-------
generator
"""
yield raw
def encode(self, obj):
"""Returns the bytes representation of the data passed into this
function.
Parameters
----------
obj : object
Any Python object
Returns
-------
bytes
"""
return six.b(str(obj))
class Json(Encoding):
"""JSON parser/encoder that handles concatenated JSON.
"""
name = 'json'
def __init__(self):
self._buffer = []
self._decoder1 = codecs.getincrementaldecoder('utf-8')()
self._decoder2 = json.JSONDecoder()
self._lasterror = None
def parse_partial(self, data):
"""Incrementally decodes JSON data sets into Python objects.
Raises
------
~ipfsapi.exceptions.DecodingError
Returns
-------
generator
"""
try:
# Python 3 requires all JSON data to be a text string
lines = self._decoder1.decode(data, False).split("\n")
# Add first input line to last buffer line, if applicable, to
# handle cases where the JSON string has been chopped in half
# at the network level due to streaming
if len(self._buffer) > 0 and self._buffer[-1] is not None:
self._buffer[-1] += lines[0]
self._buffer.extend(lines[1:])
else:
self._buffer.extend(lines)
except UnicodeDecodeError as error:
raise exceptions.DecodingError('json', error)
# Process data buffer
index = 0
try:
# Process each line as separate buffer
#PERF: This way the `.lstrip()` call becomes almost always a NOP
# even if it does return a different string it will only
# have to allocate a new buffer for the currently processed
# line.
while index < len(self._buffer):
while self._buffer[index]:
# Make sure buffer does not start with whitespace
#PERF: `.lstrip()` does not reallocate if the string does
# not actually start with whitespace.
self._buffer[index] = self._buffer[index].lstrip()
# Handle case where the remainder of the line contained
# only whitespace
if not self._buffer[index]:
self._buffer[index] = None
continue
# Try decoding the partial data buffer and return results
# from this
data = self._buffer[index]
for index2 in range(index, len(self._buffer)):
# If decoding doesn't succeed with the currently
# selected buffer (very unlikely with our current
# class of input data) then retry with appending
# any other pending pieces of input data
# This will happen with JSON data that contains
# arbitrary new-lines: "{1:\n2,\n3:4}"
if index2 > index:
data += "\n" + self._buffer[index2]
try:
(obj, offset) = self._decoder2.raw_decode(data)
except ValueError:
# Treat error as fatal if we have already added
# the final buffer to the input
if (index2 + 1) == len(self._buffer):
raise
else:
index = index2
break
# Decoding succeeded – yield result and shorten buffer
yield obj
if offset < len(self._buffer[index]):
self._buffer[index] = self._buffer[index][offset:]
else:
self._buffer[index] = None
index += 1
except ValueError as error:
# It is unfortunately not possible to reliably detect whether
# parsing ended because of an error *within* the JSON string, or
# an unexpected *end* of the JSON string.
# We therefor have to assume that any error that occurs here
# *might* be related to the JSON parser hitting EOF and therefor
# have to postpone error reporting until `parse_finalize` is
# called.
self._lasterror = error
finally:
# Remove all processed buffers
del self._buffer[0:index]
def parse_finalize(self):
"""Raises errors for incomplete buffered data that could not be parsed
because the end of the input data has been reached.
Raises
------
~ipfsapi.exceptions.DecodingError
Returns
-------
tuple : Always empty
"""
try:
try:
# Raise exception for remaining bytes in bytes decoder
self._decoder1.decode(b'', True)
except UnicodeDecodeError as error:
raise exceptions.DecodingError('json', error)
# Late raise errors that looked like they could have been fixed if
# the caller had provided more data
if self._buffer:
raise exceptions.DecodingError('json', self._lasterror)
finally:
# Reset state
self._buffer = []
self._lasterror = None
self._decoder1.reset()
return ()
def encode(self, obj):
"""Returns ``obj`` serialized as JSON formatted bytes.
Raises
------
~ipfsapi.exceptions.EncodingError
Parameters
----------
obj : str | list | dict | int
JSON serializable Python object
Returns
-------
bytes
"""
try:
result = json.dumps(obj, sort_keys=True, indent=None,
separators=(',', ':'), ensure_ascii=False)
if isinstance(result, six.text_type):
return result.encode("utf-8")
else:
return result
except (UnicodeEncodeError, TypeError) as error:
raise exceptions.EncodingError('json', error)
class Pickle(Encoding):
"""Python object parser/encoder using `pickle`.
"""
name = 'pickle'
def __init__(self):
self._buffer = io.BytesIO()
def parse_partial(self, raw):
"""Buffers the given data so that the it can be passed to `pickle` in
one go.
This does not actually process the data in smaller chunks, but merely
buffers it until `parse_finalize` is called! This is mostly because
the standard-library module expects the entire data to be available up
front, which is currently always the case for our code anyways.
Parameters
----------
raw : bytes
Data to be buffered
Returns
-------
tuple : An empty tuple
"""
self._buffer.write(raw)
return ()
def parse_finalize(self):
"""Parses the buffered data and yields the result.
Raises
------
~ipfsapi.exceptions.DecodingError
Returns
-------
generator
"""
try:
self._buffer.seek(0, 0)
yield pickle.load(self._buffer)
except pickle.UnpicklingError as error:
raise exceptions.DecodingError('pickle', error)
def parse(self, raw):
r"""Returns a Python object decoded from a pickle byte stream.
.. code-block:: python
>>> p = Pickle()
>>> p.parse(b'(lp0\nI1\naI2\naI3\naI01\naF4.5\naNaF6000.0\na.')
[1, 2, 3, True, 4.5, None, 6000.0]
Raises
------
~ipfsapi.exceptions.DecodingError
Parameters
----------
raw : bytes
Pickle data bytes
Returns
-------
object
"""
return Encoding.parse(self, raw)
def encode(self, obj):
"""Returns ``obj`` serialized as a pickle binary string.
Raises
------
~ipfsapi.exceptions.EncodingError
Parameters
----------
obj : object
Serializable Python object
Returns
-------
bytes
"""
try:
return pickle.dumps(obj)
except pickle.PicklingError as error:
raise exceptions.EncodingError('pickle', error)
class Protobuf(Encoding):
"""Protobuf parser/encoder that handles protobuf."""
name = 'protobuf'
class Xml(Encoding):
"""XML parser/encoder that handles XML."""
name = 'xml'
# encodings supported by the IPFS api (default is JSON)
__encodings = {
Dummy.name: Dummy,
Json.name: Json,
Pickle.name: Pickle,
Protobuf.name: Protobuf,
Xml.name: Xml
}
def get_encoding(name):
"""
Returns an Encoder object for the named encoding
Raises
------
~ipfsapi.exceptions.EncoderMissingError
Parameters
----------
name : str
Encoding name. Supported options:
* ``"none"``
* ``"json"``
* ``"pickle"``
* ``"protobuf"``
* ``"xml"``
"""
try:
return __encodings[name.lower()]()
except KeyError:
raise exceptions.EncoderMissingError(name)