summaryrefslogtreecommitdiff
path: root/dexcom_reader/dexcom_dumper.py
blob: e279433522c3ed0ecbc04203f8c41903ceb3e3db (plain)
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
import constants
import readdata
import sys
import json
import requests
from sys import stdout, stderr
from datetime import timedelta, datetime
from time import sleep

from optparse import OptionParser

G5_IS_DEFAULT = True
DEFAULT_PAGE_COUNT = 2

parser = OptionParser()
parser.add_option("--g4", action="store_false", dest="g5", default=G5_IS_DEFAULT, help="use Dexcom G4 instead of Dexcom G5")
parser.add_option("--g5", action="store_true",  dest="g5", default=G5_IS_DEFAULT, help="use Dexcom G5 instead of Dexcom G4")

parser.add_option("-a", "--all",  action="store_const", dest="command", const="dump_everything", help="dump all available records")
parser.add_option("-p", "--poll", action="store_const", dest="command", const="poll",            help="poll for latest CGM record")

parser.add_option("-n", type="int", dest="num_records", default=DEFAULT_PAGE_COUNT, help="number of pages of CGM records to display")
parser.add_option("-v", "--verbose", action="store_true", dest="verbose", help="verbosity (currently for debugging)")
parser.add_option("-H", "--human", action="store_true", dest="human", help="print human-readable times")
parser.add_option("-j", "--json", action="store_true", dest="json", help="print JSON output")
parser.add_option("--http", type="string", dest="host", help="submit via HTTP")

(options, args) = parser.parse_args()

command = options.command or "dump_cgm"
VERBOSE = options.verbose
HUMAN = options.human
JSON = options.json
HOST = options.host

def get_dexcom_reader():
        if options.g5:
                dd = readdata.DexcomG5.FindDevice()
                return readdata.DexcomG5(dd)
        else:
                dd = readdata.Dexcom.FindDevice()
                return readdata.Dexcom(dd)

dr = get_dexcom_reader()

def dump_everything():

#       record_types = ['METER_DATA', 'INSERTION_TIME', 'USER_EVENT_DATA', 'CAL_SET', 'SENSOR_DATA']

        unparseable = ['FIRMWARE_PARAMETER_DATA', 'RECEIVER_LOG_DATA', 'USER_SETTING_DATA', 'MAX_VALUE']
        parsed_to_xml = ['MANUFACTURING_DATA', 'PC_SOFTWARE_PARAMETER']
        skip = unparseable + parsed_to_xml
        record_types = filter(lambda v: not v in skip, constants.RECORD_TYPES)

        for t in record_types:
                print t + ":"
                for r in dr.ReadRecords(t):
                        print r

def dump_cgm():
        cgm_records = dr.ReadRecords('EGV_DATA', options.num_records)
        for cr in cgm_records:
                if not cr.display_only:
                        print cr

def recent(t):
        now = dr.ReadSystemTime()
        return t.system_time > now - timedelta(minutes=5)

def print_verbose(s):
        global VERBOSE
        if VERBOSE:
                stderr.write('%s\n' % str(s))

def read_recent_egv_data():
       try:
               r = dr.ReadRecords('EGV_DATA', options.num_records)[-1]
               if recent(r) and not r.is_special and not r.display_only:
                       return r
               else:
                       return None
       except ValueError as v:
               if (v.args[0] == 'Attempting to use a port that is not open'):
                       return False
               else:
                       print_verbose(v)
                       return None
       except:
               print_verbose(sys.exc_info)
               return None

def time_fmt(t):
        global HUMAN
        return t.strftime('%c' if HUMAN else '%s')

def format_times(now, stamp):
        diff = (stamp - now).total_seconds()
        operand = '-' if diff < 0 else '+' # should always be -
        return '%s %s %d' % (time_fmt(now), operand, abs(diff))

def print_localtime(str):
        print '%s (system): %s' % (time_fmt(datetime.now()), str)

CONNECTED = None
def connected(state):
        global CONNECTED
        if (state == CONNECTED):
                return
        else:
                CONNECTED = state
                print_localtime('dexcom receiver %s connected' % ('is' if state else 'is not'))

def sleep_verbose(n):
        print_verbose('sleep(%d)' % n)
        sleep(n)

def POST(path, json_str):
        try:
                resp = requests.post(HOST + path, data=json_str,
                                     headers={'Content-type':
                                              'application/json'})
                return True
        except:
                return False

def strftime_JSON(t):
        return t.strftime('%FT%T.0Z');

def send_ping(now):
        if HOST:
                POST('/ping', json.dumps(strftime_JSON(now)))

def print_cgm_bg(now, r):
        if HOST or JSON:
                json_str = json.dumps({
                        'bgeEventTime': strftime_JSON(r.system_time),
                        'bgeGlucose': r.glucose,
                        'bgeTrendArrow': r.trend_arrow.replace('45_', 'DIAGONAL_', 1),
                        'bgeDisplayOnly': r.display_only
                })
                if HOST:
                        POST('/bgevent', json_str)
                        send_ping(now)
                        return
                if JSON:
                        print json_str
        else:
                print '%s: %s %s' % (format_times(now, r.system_time), r.glucose, r.trend_arrow)
        stdout.flush()

def poll():
        print_localtime('dexcom_dumper started')
        while True:
                r = read_recent_egv_data()
                if r is None:
                        connected(True)
                        if HOST:
                                now = dr.ReadSystemTime()
                                send_ping(now)
                        sleep_verbose(10)
                elif r is False:
                        connected(False)
                        sleep_verbose(10)
                else:
                        now = dr.ReadSystemTime()
                        print_cgm_bg(now, r)
                        next_reading = (r.system_time - now + timedelta(minutes=5, seconds=2)).total_seconds()
                        if (next_reading > 0):
                                sleep_verbose(next_reading)

{"dump_everything": dump_everything,
 "dump_cgm":        dump_cgm,
 "poll":            poll
}[command]()