-
Notifications
You must be signed in to change notification settings - Fork 33
/
msgpack_numpy.py
308 lines (274 loc) · 11.5 KB
/
msgpack_numpy.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
#!/usr/bin/env python
"""
Support for serialization of numpy data types with msgpack.
"""
# Copyright (c) 2013-2022, Lev E. Givon
# All rights reserved.
# Distributed under the terms of the BSD license:
# http://www.opensource.org/licenses/bsd-license
import sys
import functools
import pickle
import warnings
import msgpack
from msgpack import Packer as _Packer, Unpacker as _Unpacker, \
unpack as _unpack, unpackb as _unpackb
import numpy as np
if sys.version_info >= (3, 0):
def ndarray_to_bytes(obj):
if obj.dtype == 'O':
return obj.dumps()
else:
if sys.platform == 'darwin':
return obj.tobytes()
else:
return obj.data if obj.flags['C_CONTIGUOUS'] else obj.tobytes()
num_to_bytes = lambda obj: obj.data
def tostr(x):
if isinstance(x, bytes):
return x.decode()
else:
return str(x)
else:
def ndarray_to_bytes(obj):
if obj.dtype == 'O':
return obj.dumps()
else:
if sys.platform == 'darwin':
return obj.tobytes()
else:
return memoryview(obj.data) if obj.flags['C_CONTIGUOUS'] else obj.tobytes()
num_to_bytes = lambda obj: memoryview(obj.data)
def tostr(x):
return x
def encode(obj, chain=None):
"""
Data encoder for serializing numpy data types.
"""
if isinstance(obj, np.ndarray):
# If the dtype is structured, store the interface description;
# otherwise, store the corresponding array protocol type string:
if obj.dtype.kind in ('V', 'O'):
kind = bytes(obj.dtype.kind, 'ascii')
descr = obj.dtype.descr
else:
kind = b''
descr = obj.dtype.str
return {b'nd': True,
b'type': descr,
b'kind': kind,
b'shape': obj.shape,
b'data': ndarray_to_bytes(obj)}
elif isinstance(obj, (np.bool_, np.number)):
return {b'nd': False,
b'type': obj.dtype.str,
b'data': num_to_bytes(obj)}
elif isinstance(obj, complex):
return {b'complex': True,
b'data': obj.__repr__()}
else:
return obj if chain is None else chain(obj)
def decode(obj, chain=None):
"""
Decoder for deserializing numpy data types.
"""
try:
if b'nd' in obj:
if obj[b'nd'] is True:
# Check if b'kind' is in obj to enable decoding of data
# serialized with older versions (#20) or data
# that had dtype == 'O' (#46):
if b'kind' in obj and obj[b'kind'] == b'V':
descr = [tuple(tostr(t) if type(t) is bytes else t for t in d) \
for d in obj[b'type']]
elif b'kind' in obj and obj[b'kind'] == b'O':
return pickle.loads(obj[b'data'])
else:
descr = obj[b'type']
return np.ndarray(buffer=obj[b'data'],
dtype=_unpack_dtype(descr),
shape=obj[b'shape'])
else:
descr = obj[b'type']
return np.frombuffer(obj[b'data'],
dtype=_unpack_dtype(descr))[0]
elif b'complex' in obj:
return complex(tostr(obj[b'data']))
else:
return obj if chain is None else chain(obj)
except KeyError:
return obj if chain is None else chain(obj)
def _unpack_dtype(dtype):
"""
Unpack dtype descr, recursively unpacking nested structured dtypes.
"""
if isinstance(dtype, (list, tuple)):
# Unpack structured dtypes of the form: (name, type, *shape)
dtype = [
(subdtype[0], _unpack_dtype(subdtype[1])) + tuple(subdtype[2:])
for subdtype in dtype
]
return np.dtype(dtype)
if msgpack.version < (1, 0, 0):
warnings.warn('support for msgpack < 1.0.0 will be removed in a future release',
DeprecationWarning)
# Maintain support for msgpack < 0.4.0:
if msgpack.version < (0, 4, 0):
class Packer(_Packer):
def __init__(self, default=None,
encoding='utf-8',
unicode_errors='strict',
use_single_float=False,
autoreset=1):
default = functools.partial(encode, chain=default)
super(Packer, self).__init__(default=default,
encoding=encoding,
unicode_errors=unicode_errors,
use_single_float=use_single_float,
autoreset=autoreset)
class Unpacker(_Unpacker):
def __init__(self, file_like=None, read_size=0, use_list=None,
object_hook=None,
object_pairs_hook=None, list_hook=None, encoding='utf-8',
unicode_errors='strict', max_buffer_size=0):
object_hook = functools.partial(decode, chain=object_hook)
super(Unpacker, self).__init__(file_like=file_like,
read_size=read_size,
use_list=use_list,
object_hook=object_hook,
object_pairs_hook=object_pairs_hook,
list_hook=list_hook,
encoding=encoding,
unicode_errors=unicode_errors,
max_buffer_size=max_buffer_size)
elif msgpack.version < (1, 0, 0):
class Packer(_Packer):
def __init__(self, default=None,
unicode_errors='strict',
use_single_float=False,
autoreset=1,
use_bin_type=True,
strict_types=False):
default = functools.partial(encode, chain=default)
super(Packer, self).__init__(default=default,
unicode_errors=unicode_errors,
use_single_float=use_single_float,
autoreset=autoreset,
use_bin_type=use_bin_type,
strict_types=strict_types)
class Unpacker(_Unpacker):
def __init__(self, file_like=None, read_size=0, use_list=None,
raw=False,
object_hook=None,
object_pairs_hook=None, list_hook=None,
unicode_errors='strict', max_buffer_size=0,
ext_hook=msgpack.ExtType):
object_hook = functools.partial(decode, chain=object_hook)
super(Unpacker, self).__init__(file_like=file_like,
read_size=read_size,
use_list=use_list,
raw=raw,
object_hook=object_hook,
object_pairs_hook=object_pairs_hook,
list_hook=list_hook,
unicode_errors=unicode_errors,
max_buffer_size=max_buffer_size,
ext_hook=ext_hook)
else:
class Packer(_Packer):
def __init__(self,
default=None,
use_single_float=False,
autoreset=True,
use_bin_type=True,
strict_types=False,
datetime=False,
unicode_errors=None):
default = functools.partial(encode, chain=default)
super(Packer, self).__init__(default=default,
use_single_float=use_single_float,
autoreset=autoreset,
use_bin_type=use_bin_type,
strict_types=strict_types,
datetime=datetime,
unicode_errors=unicode_errors)
class Unpacker(_Unpacker):
def __init__(self,
file_like=None,
read_size=0,
use_list=True,
raw=False,
timestamp=0,
strict_map_key=True,
object_hook=None,
object_pairs_hook=None,
list_hook=None,
unicode_errors=None,
max_buffer_size=100 * 1024 * 1024,
ext_hook=msgpack.ExtType,
max_str_len=-1,
max_bin_len=-1,
max_array_len=-1,
max_map_len=-1,
max_ext_len=-1):
object_hook = functools.partial(decode, chain=object_hook)
super(Unpacker, self).__init__(file_like=file_like,
read_size=read_size,
use_list=use_list,
raw=raw,
timestamp=timestamp,
strict_map_key=strict_map_key,
object_hook=object_hook,
object_pairs_hook=object_pairs_hook,
list_hook=list_hook,
unicode_errors=unicode_errors,
max_buffer_size=max_buffer_size,
ext_hook=ext_hook,
max_str_len=max_str_len,
max_bin_len=max_bin_len,
max_array_len=max_array_len,
max_map_len=max_map_len,
max_ext_len=max_ext_len)
def pack(o, stream, **kwargs):
"""
Pack an object and write it to a stream.
"""
packer = Packer(**kwargs)
stream.write(packer.pack(o))
def packb(o, **kwargs):
"""
Pack an object and return the packed bytes.
"""
return Packer(**kwargs).pack(o)
def unpack(stream, **kwargs):
"""
Unpack a packed object from a stream.
"""
object_hook = kwargs.get('object_hook')
kwargs['object_hook'] = functools.partial(decode, chain=object_hook)
return _unpack(stream, **kwargs)
def unpackb(packed, **kwargs):
"""
Unpack a packed object.
"""
object_hook = kwargs.get('object_hook')
kwargs['object_hook'] = functools.partial(decode, chain=object_hook)
return _unpackb(packed, **kwargs)
load = unpack
loads = unpackb
dump = pack
dumps = packb
def patch():
"""
Monkey patch msgpack module to enable support for serializing numpy types.
"""
setattr(msgpack, 'Packer', Packer)
setattr(msgpack, 'Unpacker', Unpacker)
setattr(msgpack, 'load', unpack)
setattr(msgpack, 'loads', unpackb)
setattr(msgpack, 'dump', pack)
setattr(msgpack, 'dumps', packb)
setattr(msgpack, 'pack', pack)
setattr(msgpack, 'packb', packb)
setattr(msgpack, 'unpack', unpack)
setattr(msgpack, 'unpackb', unpackb)