-
Notifications
You must be signed in to change notification settings - Fork 13
/
serialize.py
132 lines (123 loc) · 3.73 KB
/
serialize.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
###########################################################################
#
# Copyright 2015-2018 Robert B. Lowrie (http://github.com/lowrie)
#
# This file is part of pyRouterJig.
#
# pyRouterJig is free software: you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation, either version 3 of the License, or (at your option) any later
# version.
#
# pyRouterJig 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# pyRouterJig; see the file LICENSE. If not, see <http://www.gnu.org/licenses/>.
#
###########################################################################
'''
Contains serialization capability
'''
from __future__ import print_function
import binascii
import pickle
from io import BytesIO
from future.utils import lrange
import router
import utils
import spacing
def serialize(bit, boards, sp, config):
'''
Serializes the arguments. Returns the serialized string, which can
later be used to reconstruct the arguments using unserialize()
'''
out = BytesIO()
p = pickle.Pickler(out)
# Save code version
p.dump(utils.VERSION)
# Save the units
units = bit.units
p.dump(units.metric)
p.dump(units.num_increments)
# Save the bit
p.dump(bit.width)
p.dump(bit.depth)
p.dump(bit.angle)
# Save the board info
nb = len(boards)
p.dump(nb)
for b in boards:
p.dump(b.width)
p.dump(b.height)
p.dump(b.wood)
p.dump(b.active)
p.dump(b.dheight)
# Save the spacing
sp_type = sp.description[0:4]
if config.debug:
print('serialize', sp_type)
p.dump(sp_type)
if sp_type == 'Edit':
p.dump(sp.cuts)
else:
p.dump(sp.params)
s = out.getvalue()
out.close()
if config.debug:
print('size of pickle', len(s))
ret = binascii.b2a_qp(s).decode('utf-8')
return ret
def unserialize(s, config, newformat=False, transl=None):
'''
Unserializes the string s, and returns the tuple (bit, boards, spacing)
'''
# new format uue encoding support
if newformat:
s = binascii.a2b_qp(s)
else:
s = s.encode()
inp = BytesIO(s)
u = pickle.Unpickler(inp)
version = u.load()
if config.debug:
print('unserialized version:', version)
# form the units
metric = u.load()
num_increments = u.load()
units = utils.Units(config.english_separator, metric, num_increments, transl)
# form the bit
width = u.load()
depth = u.load()
angle = u.load()
bit = router.Router_Bit(units, width, depth, angle)
# form the boards
nb = u.load()
boards = []
for _ in lrange(nb):
boards.append(router.Board(bit, 10)) # dummy width argument, for now
for b in boards:
b.width = u.load()
b.height = u.load()
b.wood = u.load()
b.active = u.load()
b.dheight = u.load()
# form the spacing
sp_type = u.load()
if sp_type == 'Edit':
if config.debug:
print('unserialized edit spacing')
cuts = u.load()
sp = spacing.Edit_Spaced(bit, boards, config)
sp.set_cuts(cuts)
else:
if sp_type == 'Equa':
sp = spacing.Equally_Spaced(bit, boards, config)
else:
sp = spacing.Variable_Spaced(bit, boards, config)
sp.params = u.load()
if config.debug:
print('unserialized ', sp_type, str(sp.params))
sp.set_cuts()
return (bit, boards, sp, sp_type)