-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpkl2txtPy2.py
90 lines (72 loc) · 1.88 KB
/
pkl2txtPy2.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
# python2 code for reading config tools pickle file
# for a given receiver and converting it to a text file
# readable in python3
import cPickle
def pkl2txtConfigLog(fn):
"""
Converts python 2 pickle with dict of this struct:
{
"manager": {"param": "value\n"}
}
To a text file of
manager param value\n
"""
with open(fn, 'r') as f:
d = cPickle.load(f)
lines = []
for manager, values in d.items():
for paramName, value in values.items():
line = "%s %s %s" % (manager, paramName, value)
lines.append(line)
fn2 = "%s.txt" % fn
f2 = open(fn2, 'w')
for line in lines:
f2.write(line)
f2.close()
def pkl2txt(fn, rx):
with open(fn, 'r') as f:
d = cPickle.load(f)
# keys for each receiver
dr = d[rx]
# this should be a list of strings;
# save them to a txt file so
# we can read them in python 3
fn2 = "%s.%s.txt" % (fn, rx)
f2 = open(fn2, 'w')
for path in dr:
f2.write(str(path) + '\n')
f2.close()
def unitTestPkl2txt():
rxs = ["RcvrPF_1"]
fn = "test_pkl"
for rx in rxs:
pkl2txt(fn, rx)
def rcvrs2txt():
rxs = [
"RcvrPF_1",
"Rcvr1_2",
"Rcvr2_3",
"Rcvr4_6",
"Rcvr8_10",
"Rcvr12_18",
"RcvrArray18_26",
"Rcvr26_40",
"RcvrArray75_115"
]
fn = "zdb.201118.pkl"
for rx in rxs:
pkl2txt(fn, rx)
def configLogs2txt():
# rxs = ["Rcvr342", "Rcvr1_2", "Rcvr2_3", "Rcvr4_6", "Rcvr8_10", "Rcvr12_18"]
rxs = ["RcvrArray18_26", "Rcvr26_40", "RcvrArray75_115"]
for rx in rxs:
fn = "configLogs/%sConfigLog" % rx
pkl2txtConfigLog(fn)
def main():
#rx = "RcvrPF_1"
#rx = "Rcvr1_2"
# configLogs2txt()
# unitTestPkl2txt()
rcvrs2txt()
if __name__ == "__main__":
main()