Mercurial > templog
annotate web/log.py @ 40:9b5b202129c3
main.c:
- get rid of some debugging
- separate uart_enabled flag
ts.py:
- remember next wake time, not the interval
log.py:
- comments for sqlite
templog.py
- use cgi
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sat, 23 Jun 2012 22:10:23 +0800 |
parents | 8da0fdadc8d7 |
children | ea99aae87884 96c336896201 |
rev | line source |
---|---|
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
1 #:vim:et:ts=4:sts=4:sw=4: |
27 | 2 import rrdtool |
3 import os | |
29 | 4 import os.path |
27 | 5 import sys |
29 | 6 import glob |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
7 import hashlib |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
8 import tempfile |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
9 import time |
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
10 import syslog |
29 | 11 from colorsys import hls_to_rgb |
27 | 12 |
28 | 13 import config |
27 | 14 |
15 def sensor_rrd_path(s): | |
28 | 16 return '%s/sensor_%s.rrd' % (config.DATA_PATH, s) |
27 | 17 |
29 | 18 # returns (path, sensor_name) tuples |
19 def all_sensors(): | |
20 return [(r, os.path.basename(r[:-4])) | |
21 for r in glob.glob('%s/*.rrd' % config.DATA_PATH)] | |
22 | |
27 | 23 def create_rrd(sensor_id): |
24 rrdtool.create(sensor_rrd_path(sensor_id), '-s', '300', | |
25 'DS:temp:GAUGE:600:-10:100', | |
26 'RRA:AVERAGE:0.5:1:1051200') | |
27 | |
29 | 28 |
29 # stolen from viewmtn, stolen from monotone-viz | |
30 def colour_from_string(str): | |
31 def f(off): | |
32 return ord(hashval[off]) / 256.0 | |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
33 hashval = hashlib.sha1(str).digest() |
29 | 34 hue = f(5) |
35 li = f(1) * 0.15 + 0.55 | |
36 sat = f(2) * 0.5 + .5 | |
37 return ''.join(["%.2x" % int(x * 256) for x in hls_to_rgb(hue, li, sat)]) | |
38 | |
39 def graph_png(start, length): | |
40 rrds = all_sensors() | |
41 | |
42 graph_args = [] | |
43 for n, (rrdfile, sensor) in enumerate(rrds): | |
44 vname = 'temp%d' % n | |
45 graph_args.append('DEF:%(vname)s=%(rrdfile)s:temp:AVERAGE' % locals()) | |
46 width = config.LINE_WIDTH | |
47 legend = config.SENSOR_NAMES.get(sensor, sensor) | |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
48 colour = config.SENSOR_COLOURS.get(legend, colour_from_string(sensor)) |
29 | 49 graph_args.append('LINE%(width)f:%(vname)s#%(colour)s:%(legend)s' % locals()) |
50 | |
51 tempf = tempfile.NamedTemporaryFile() | |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
52 args = [tempf.name, '-s', str(int(start)), |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
53 '-e', str(int(start+length)), |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
54 '-w', str(config.GRAPH_WIDTH), |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
55 '-h', str(config.GRAPH_HEIGHT), |
29 | 56 '--slope-mode', |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
57 '--border', '0', |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
58 '--color', 'BACK#ffffff', |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
59 '--imgformat', 'PNG'] \ |
29 | 60 + graph_args |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
61 if config.GRAPH_FONT: |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
62 args += ['--font', 'DEFAULT:0:%s' % config.GRAPH_FONT] |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
63 print>>sys.stderr, args |
29 | 64 rrdtool.graph(*args) |
65 return tempf.read() | |
66 | |
27 | 67 def sensor_update(sensor_id, measurements, first_real_time, time_step): |
68 try: | |
69 open(sensor_rrd_path(sensor_id)) | |
70 except IOError, e: | |
71 create_rrd(sensor_id) | |
72 | |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
73 print>>sys.stderr, sensor_id, measurements, first_real_time, time_step |
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
74 |
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
75 if measurements: |
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
76 values = ['%d:%f' % p for p in |
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
77 zip((first_real_time + time_step*t for t in xrange(len(measurements))), |
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
78 measurements)] |
27 | 79 |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
80 rrdfile = sensor_rrd_path(sensor_id) |
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
81 print>>sys.stderr, values |
40 | 82 # XXX what to do here when it fails... |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
83 rrdtool.update(rrdfile, *values) |
33 | 84 |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
85 # be paranoid |
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
86 f = file(rrdfile) |
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
87 os.fsync(f.fileno()) |
27 | 88 |
33 | 89 def record_debug(lines): |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
90 f = open('%s/debug.log' % config.DATA_PATH, 'a+') |
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
91 f.write('===== %s =====\n' % time.strftime('%a, %d %b %Y %H:%M:%S')) |
33 | 92 f.writelines(('%s\n' % s for s in lines)) |
93 f.flush() | |
94 return f | |
95 | |
27 | 96 def parse(lines): |
33 | 97 |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
98 debugf = record_debug(lines) |
33 | 99 |
27 | 100 entries = dict(l.split('=', 1) for l in lines) |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
101 if len(entries) != len(lines): |
27 | 102 raise Exception("Keys are not unique") |
103 | |
104 num_sensors = int(entries['sensors']) | |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
105 num_measurements = int(entries['measurements']) |
27 | 106 |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
107 sensors = [entries['sensor_id%d' % n] for n in xrange(num_sensors)] |
27 | 108 |
109 meas = [] | |
110 for s in sensors: | |
111 meas.append([]) | |
112 | |
28 | 113 def val_scale(v): |
114 # convert decidegrees to degrees | |
115 return 0.1 * v | |
116 | |
27 | 117 for n in xrange(num_measurements): |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
118 vals = [val_scale(int(x)) for x in entries["meas%d" % n].strip().split()] |
27 | 119 if len(vals) != num_sensors: |
120 raise Exception("Wrong number of sensors for measurement %d" % n) | |
121 # we make an array of values for each sensor | |
122 for s in xrange(num_sensors): | |
123 meas[s].append(vals[s]) | |
124 | |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
125 avr_now = float(entries['now']) |
27 | 126 avr_first_time = float(entries['first_time']) |
127 time_step = float(entries['time_step']) | |
128 | |
40 | 129 #sqlite |
130 # - time | |
131 # - voltage | |
132 # - boot time | |
133 | |
27 | 134 first_real_time = time.time() - (avr_now - avr_first_time) |
135 | |
136 for sensor_id, measurements in zip(sensors, meas): | |
40 | 137 # XXX sqlite add |
27 | 138 sensor_update(sensor_id, measurements, first_real_time, time_step) |
33 | 139 |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
140 debugf.write("Updated %d sensors\n" % len(sensors)) |
33 | 141 debugf.flush() |