forked from bewest/decoding-carelink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
list_history.py
123 lines (104 loc) · 3.19 KB
/
list_history.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
import sys
import argparse
import textwrap
from pprint import pprint, pformat
from binascii import hexlify
# from datetime import datetime
# from scapy.all import *
import json
from decocare import lib, history
from decocare.history import parse_record, HistoryPage
def get_opt_parser( ):
parser = argparse.ArgumentParser( )
parser.add_argument('infile', nargs="+",
default=sys.stdin,
type=argparse.FileType('r'),
help="Find dates in this file.")
parser.add_argument('--collate',
dest='collate',
default=False,
action='store_true')
parser.add_argument('--larger',
dest='larger', action='store_true')
parser.add_argument('--no-larger',
dest='larger', action='store_false')
parser.add_argument('--out',
default=sys.stdout,
type=argparse.FileType('w'),
help="Write records here.")
parser.set_defaults(larger=False)
return parser
##
# move to history.py
#
def eat_nulls(fd):
nulls = bytearray( )
for B in iter(lambda: bytearray(fd.read(1)), bytearray("")):
if B[0] == 0x00:
nulls.extend(B)
else:
fd.seek(fd.tell( ) - 1)
break
print "found %s nulls" % len(nulls)
return nulls
def find_records(stream, opts):
records = [ ]
errors = [ ]
bolus = bytearray( )
extra = bytearray( )
opcode = ''
for B in iter(lambda: bytearray(stream.read(2)), bytearray("")):
if B == bytearray( [ 0x00, 0x00 ] ):
print ("#### STOPPING DOUBLE NULLS @ %s," % stream.tell( )),
nulls = eat_nulls(stream)
print "reading more to debug %#04x" % B[0]
print lib.hexdump(B, indent=4)
print lib.int_dump(B, indent=11)
extra = bytearray(stream.read(32))
print "##### DEBUG HEX"
print lib.hexdump(extra, indent=4)
print "##### DEBUG DECIMAL"
print lib.int_dump(extra, indent=11)
# print "XXX:???:XXX", history.parse_date(bolus).isoformat( )
break
record = parse_record( stream, B, larger=opts.larger )
records.append(record)
return records
def main( ):
parser = get_opt_parser( )
opts = parser.parse_args( )
tw_opts = {
'width': 50,
'subsequent_indent': ' ',
'initial_indent': ' ',
}
wrapper = textwrap.TextWrapper(**tw_opts)
for stream in opts.infile:
print "## START %s" % (stream.name)
records = [ ]
if opts.collate:
page = HistoryPage(bytearray(stream.read( )))
records.extend(page.decode( ))
else:
records = find_records(stream, opts)
i = 0
for record in records:
prefix = '#### RECORD {} {}'.format(i, str(record))
if getattr(record, 'pformat', None):
print record.pformat(prefix)
else:
json.dumps(record, indent=2)
i += 1
print "`end %s: %s records`" % (stream.name, len(records))
if opts.collate:
opts.out.write(json.dumps(records, indent=2))
stream.close( )
if __name__ == '__main__':
import doctest
failures, tests = doctest.testmod( )
if failures > 0:
print "REFUSING TO RUN DUE TO FAILED TESTS"
sys.exit(1)
main( )
#####
# EOF