Mercurial > templog
annotate web/log.py @ 207:9c2de3f977e4
- fermentation heat prediction kind of works?
- fix watch
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Mon, 21 Apr 2014 21:41:44 +0800 |
parents | 1d8a8bd2ea78 |
children | 3f403e22c2e3 |
rev | line source |
---|---|
78 | 1 # -*- coding: utf-8 -*- |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
2 #:vim:et:ts=4:sts=4:sw=4: |
27 | 3 import rrdtool |
4 import os | |
29 | 5 import os.path |
27 | 6 import sys |
29 | 7 import glob |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
8 import hashlib |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
9 import tempfile |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
10 import time |
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
11 import syslog |
44 | 12 import sqlite3 |
49
206294a354a7
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
45
diff
changeset
|
13 import traceback |
67 | 14 import datetime |
75
ca08442635ca
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
73
diff
changeset
|
15 import struct |
77 | 16 import binascii |
159
683cfd134f6a
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
146
diff
changeset
|
17 import json |
194 | 18 import subprocess |
29 | 19 from colorsys import hls_to_rgb |
27 | 20 |
28 | 21 import config |
191 | 22 import atomicfile |
27 | 23 |
24 def sensor_rrd_path(s): | |
159
683cfd134f6a
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
146
diff
changeset
|
25 return '%s/sensor_%s.rrd' % (config.DATA_PATH, str(s)) |
27 | 26 |
29 | 27 # returns (path, sensor_name) tuples |
28 def all_sensors(): | |
29 return [(r, os.path.basename(r[:-4])) | |
30 for r in glob.glob('%s/*.rrd' % config.DATA_PATH)] | |
31 | |
27 | 32 def create_rrd(sensor_id): |
43
ea99aae87884
Create with a start date so that it works
Matt Johnston <matt@ucc.asn.au>
parents:
40
diff
changeset
|
33 # start date of 10 seconds into 1970 is used so that we can |
ea99aae87884
Create with a start date so that it works
Matt Johnston <matt@ucc.asn.au>
parents:
40
diff
changeset
|
34 # update with prior values straight away. |
61 | 35 if 'voltage' in sensor_id: |
63 | 36 args = [ |
37 '--step', '3600', | |
38 'DS:temp:GAUGE:7200:1:10', | |
39 'RRA:AVERAGE:0.5:1:87600'] | |
126
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
40 elif 'fridge_on' in sensor_id: |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
41 args = [ |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
42 '--step', '300', |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
43 'DS:temp:GAUGE:600:-100:500', |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
44 'RRA:LAST:0.5:1:1051200'] |
61 | 45 else: |
63 | 46 args = [ |
47 '--step', '300', | |
88
6f4497a448e8
increase temperature logging range
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
48 'DS:temp:GAUGE:600:-100:500', |
61 | 49 'RRA:AVERAGE:0.5:1:1051200'] |
27 | 50 |
159
683cfd134f6a
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
146
diff
changeset
|
51 print>>sys.stderr, sensor_rrd_path(sensor_id) |
683cfd134f6a
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
146
diff
changeset
|
52 |
61 | 53 rrdtool.create(sensor_rrd_path(sensor_id), |
63 | 54 '--start', 'now-60d', |
61 | 55 *args) |
29 | 56 |
57 # stolen from viewmtn, stolen from monotone-viz | |
58 def colour_from_string(str): | |
59 def f(off): | |
60 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
|
61 hashval = hashlib.sha1(str).digest() |
29 | 62 hue = f(5) |
63 li = f(1) * 0.15 + 0.55 | |
64 sat = f(2) * 0.5 + .5 | |
65 return ''.join(["%.2x" % int(x * 256) for x in hls_to_rgb(hue, li, sat)]) | |
66 | |
67 def graph_png(start, length): | |
104
7f3fc0980df1
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
68 os.environ['MATT_PNG_BODGE_COMPRESS'] = '4' |
7f3fc0980df1
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
69 os.environ['MATT_PNG_BODGE_FILTER'] = 'paeth' |
29 | 70 rrds = all_sensors() |
71 | |
72 graph_args = [] | |
61 | 73 have_volts = False |
164
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
159
diff
changeset
|
74 |
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
159
diff
changeset
|
75 ## volts = temp * volts_div + volts_shift |
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
159
diff
changeset
|
76 #volts_div = 10 |
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
159
diff
changeset
|
77 #volts_shift = 2 |
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
159
diff
changeset
|
78 volts_div = 1 |
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
159
diff
changeset
|
79 volts_shift = 0 |
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
159
diff
changeset
|
80 |
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
159
diff
changeset
|
81 volts_mult = 1.0/volts_div |
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
159
diff
changeset
|
82 |
179 | 83 # (title, sensorline) pairs. |
84 sensor_lines = [] | |
85 | |
207
9c2de3f977e4
- fermentation heat prediction kind of works?
Matt Johnston <matt@ucc.asn.au>
parents:
200
diff
changeset
|
86 wort_sensor = None |
9c2de3f977e4
- fermentation heat prediction kind of works?
Matt Johnston <matt@ucc.asn.au>
parents:
200
diff
changeset
|
87 fridge_sensor = None |
29 | 88 for n, (rrdfile, sensor) in enumerate(rrds): |
126
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
89 unit = None |
61 | 90 if 'avrtemp' in sensor: |
91 continue | |
92 if 'voltage' in sensor: | |
93 have_volts = True | |
94 vname = 'scalevolts' | |
71
7d243ba2dd39
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
69
diff
changeset
|
95 graph_args.append('DEF:%(vname)s=%(rrdfile)s:temp:AVERAGE:step=3600' % locals()) |
78 | 96 unit = 'V' |
126
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
97 elif 'fridge_on' in sensor: |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
98 vname = 'fridge_on' |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
99 graph_args.append('DEF:raw%(vname)s=%(rrdfile)s:temp:LAST' % locals()) |
131 | 100 graph_args.append('CDEF:%(vname)s=raw%(vname)s,-0.2,*,3,+' % locals()) |
61 | 101 else: |
102 vname = 'temp%d' % n | |
71
7d243ba2dd39
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
69
diff
changeset
|
103 graph_args.append('DEF:raw%(vname)s=%(rrdfile)s:temp:AVERAGE' % locals()) |
101
fd8482365489
limit temps to 35ยบ on graph
Matt Johnston <matt@ucc.asn.au>
parents:
99
diff
changeset
|
104 # limit max temp to 50 |
164
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
159
diff
changeset
|
105 graph_args.append('CDEF:%(vname)s=raw%(vname)s,38,GT,UNKN,raw%(vname)s,%(volts_mult)f,*,%(volts_shift)f,+,IF' % locals()) |
78 | 106 unit = '<span face="Liberation Serif">ยบ</span>C' |
107 | |
126
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
108 format_last_value = None |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
109 if unit: |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
110 try: |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
111 last_value = float(rrdtool.info(rrdfile)['ds[temp].last_ds']) |
137
d36fe81077cc
strip multiple-of-ten temperatures correctly
Matt Johnston <matt@ucc.asn.au>
parents:
131
diff
changeset
|
112 format_last_value = ('%f' % last_value).rstrip('0').rstrip('.') + unit |
126
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
113 except ValueError: |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
114 pass |
29 | 115 width = config.LINE_WIDTH |
116 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
|
117 colour = config.SENSOR_COLOURS.get(legend, colour_from_string(sensor)) |
126
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
118 if format_last_value: |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
119 print_legend = '%s (%s)' % (legend, format_last_value) |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
120 else: |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
121 print_legend = legend |
179 | 122 sensor_lines.append( (legend, 'LINE%(width)f:%(vname)s#%(colour)s:%(print_legend)s' % locals()) ) |
207
9c2de3f977e4
- fermentation heat prediction kind of works?
Matt Johnston <matt@ucc.asn.au>
parents:
200
diff
changeset
|
123 if legend == 'Wort': |
9c2de3f977e4
- fermentation heat prediction kind of works?
Matt Johnston <matt@ucc.asn.au>
parents:
200
diff
changeset
|
124 wort_sensor = vname |
9c2de3f977e4
- fermentation heat prediction kind of works?
Matt Johnston <matt@ucc.asn.au>
parents:
200
diff
changeset
|
125 elif legend == 'Fridge': |
9c2de3f977e4
- fermentation heat prediction kind of works?
Matt Johnston <matt@ucc.asn.au>
parents:
200
diff
changeset
|
126 fridge_sensor = vname |
179 | 127 |
128 sensor_lines.sort(key = lambda (legend, line): "Wort" in legend) | |
129 | |
130 graph_args += (line for (legend, line) in sensor_lines) | |
29 | 131 |
207
9c2de3f977e4
- fermentation heat prediction kind of works?
Matt Johnston <matt@ucc.asn.au>
parents:
200
diff
changeset
|
132 print>>sys.stderr, '\n'.join(graph_args) |
9c2de3f977e4
- fermentation heat prediction kind of works?
Matt Johnston <matt@ucc.asn.au>
parents:
200
diff
changeset
|
133 |
9c2de3f977e4
- fermentation heat prediction kind of works?
Matt Johnston <matt@ucc.asn.au>
parents:
200
diff
changeset
|
134 # calculated bits |
9c2de3f977e4
- fermentation heat prediction kind of works?
Matt Johnston <matt@ucc.asn.au>
parents:
200
diff
changeset
|
135 colour = '000000' |
9c2de3f977e4
- fermentation heat prediction kind of works?
Matt Johnston <matt@ucc.asn.au>
parents:
200
diff
changeset
|
136 print_legend = 'Heat' |
9c2de3f977e4
- fermentation heat prediction kind of works?
Matt Johnston <matt@ucc.asn.au>
parents:
200
diff
changeset
|
137 graph_args.append('CDEF:wortdel=%(wort_sensor)s,PREV(%(wort_sensor)s),-' % locals()) |
9c2de3f977e4
- fermentation heat prediction kind of works?
Matt Johnston <matt@ucc.asn.au>
parents:
200
diff
changeset
|
138 graph_args.append('CDEF:tempdel=%(wort_sensor)s,%(fridge_sensor)s,-' % locals()) |
9c2de3f977e4
- fermentation heat prediction kind of works?
Matt Johnston <matt@ucc.asn.au>
parents:
200
diff
changeset
|
139 graph_args.append('CDEF:fermheat=wortdel,80,*,tempdel,0.9,*,+' % locals()) |
9c2de3f977e4
- fermentation heat prediction kind of works?
Matt Johnston <matt@ucc.asn.au>
parents:
200
diff
changeset
|
140 graph_args.append('CDEF:trendfermheat=fermheat,10800,TRENDNAN' % locals()) |
9c2de3f977e4
- fermentation heat prediction kind of works?
Matt Johnston <matt@ucc.asn.au>
parents:
200
diff
changeset
|
141 graph_args.append('CDEF:limitfermheat=trendfermheat,5,+,11,MIN,2,MAX' % locals()) |
9c2de3f977e4
- fermentation heat prediction kind of works?
Matt Johnston <matt@ucc.asn.au>
parents:
200
diff
changeset
|
142 graph_args.append('LINE0.5:limitfermheat#%(colour)s:%(print_legend)s' % locals()) |
9c2de3f977e4
- fermentation heat prediction kind of works?
Matt Johnston <matt@ucc.asn.au>
parents:
200
diff
changeset
|
143 |
67 | 144 end = int(start+length) |
145 start = int(start) | |
146 | |
29 | 147 tempf = tempfile.NamedTemporaryFile() |
67 | 148 dateformat = '%H:%M:%S %Y-%m-%d' |
149 watermark = ("Now %s\t" | |
150 "Start %s\t" | |
151 "End %s" % ( | |
152 datetime.datetime.now().strftime(dateformat), | |
153 datetime.datetime.fromtimestamp(start).strftime(dateformat), | |
154 datetime.datetime.fromtimestamp(end).strftime(dateformat) )) | |
155 | |
156 args = [tempf.name, '-s', str(start), | |
157 '-e', str(end), | |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
158 '-w', str(config.GRAPH_WIDTH), |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
159 '-h', str(config.GRAPH_HEIGHT), |
29 | 160 '--slope-mode', |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
161 '--border', '0', |
73
0a8639039453
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
71
diff
changeset
|
162 # '--vertical-label', 'Voltage', |
164
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
159
diff
changeset
|
163 '--y-grid', '%(volts_mult)f:1' % locals(), |
71
7d243ba2dd39
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
69
diff
changeset
|
164 '--dynamic-labels', |
56 | 165 '--grid-dash', '1:0', |
77 | 166 '--zoom', str(config.ZOOM), |
56 | 167 '--color', 'GRID#00000000', |
168 '--color', 'MGRID#aaaaaa', | |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
169 '--color', 'BACK#ffffff', |
67 | 170 '--disable-rrdtool-tag', |
78 | 171 '--pango-markup', |
67 | 172 '--watermark', watermark, |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
173 '--imgformat', 'PNG'] \ |
29 | 174 + graph_args |
67 | 175 args += ['--font', 'DEFAULT:12:%s' % config.GRAPH_FONT] |
176 args += ['--font', 'WATERMARK:10:%s' % config.GRAPH_FONT] | |
61 | 177 if have_volts: |
164
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
159
diff
changeset
|
178 volts_shift_div = volts_div * volts_shift |
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
159
diff
changeset
|
179 args += ['--right-axis', '%(volts_div)f:-%(volts_shift_div)f' % locals(), |
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
159
diff
changeset
|
180 # '--right-axis-format', '%.0lf', |
73
0a8639039453
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
71
diff
changeset
|
181 # '--right-axis-label', 'Temperature' |
0a8639039453
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
71
diff
changeset
|
182 ] |
61 | 183 |
191 | 184 #print>>sys.stderr, ' '.join("'%s'" % s for s in args) |
29 | 185 rrdtool.graph(*args) |
104
7f3fc0980df1
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
186 #return tempf |
29 | 187 return tempf.read() |
188 | |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
189 def validate_value(m): |
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
190 if m == 85: |
159
683cfd134f6a
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
146
diff
changeset
|
191 return 'U' |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
192 else: |
159
683cfd134f6a
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
146
diff
changeset
|
193 return '%f' % m |
125 | 194 |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
195 def sensor_update(sensor_id, measurements): |
27 | 196 try: |
197 open(sensor_rrd_path(sensor_id)) | |
198 except IOError, e: | |
199 create_rrd(sensor_id) | |
200 | |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
201 if measurements: |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
202 values = ['%d:%s' % (t, validate_value(m)) for (t, m) in measurements] |
27 | 203 |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
204 rrdfile = sensor_rrd_path(sensor_id) |
40 | 205 # XXX what to do here when it fails... |
49
206294a354a7
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
45
diff
changeset
|
206 for v in values: |
206294a354a7
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
45
diff
changeset
|
207 try: |
206294a354a7
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
45
diff
changeset
|
208 rrdtool.update(rrdfile, v) |
63 | 209 except rrdtool.error, e: |
104
7f3fc0980df1
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
210 print>>sys.stderr, "Bad rrdtool update '%s': %s" % (v, str(e)) |
49
206294a354a7
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
45
diff
changeset
|
211 traceback.print_exc(file=sys.stderr) |
33 | 212 |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
213 # be paranoid |
104
7f3fc0980df1
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
214 #f = file(rrdfile) |
7f3fc0980df1
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
215 #os.fsync(f.fileno()) |
27 | 216 |
103 | 217 def debug_file(mode='r'): |
218 return open('%s/debug.log' % config.DATA_PATH, mode) | |
219 | |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
220 def record_debug(params): |
103 | 221 f = debug_file('a+') |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
222 f.write('===== %s =====\n' % time.strftime('%a, %d %b %Y %H:%M:%S')) |
159
683cfd134f6a
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
146
diff
changeset
|
223 json.dump(params, f, sort_keys=True, indent=4) |
33 | 224 f.flush() |
225 return f | |
226 | |
103 | 227 def tail_debug_log(): |
228 f = debug_file() | |
229 f.seek(0, 2) | |
230 size = f.tell() | |
231 f.seek(max(0, size-30000)) | |
232 return '\n'.join(l.strip() for l in f.readlines()[-400:]) | |
233 | |
75
ca08442635ca
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
73
diff
changeset
|
234 def convert_ds18b20_12bit(reading): |
ca08442635ca
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
73
diff
changeset
|
235 value = struct.unpack('>h', binascii.unhexlify(reading))[0] |
ca08442635ca
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
73
diff
changeset
|
236 return value * 0.0625 |
ca08442635ca
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
73
diff
changeset
|
237 |
94 | 238 def time_rem(name, entries): |
239 val_ticks = int(entries[name]) | |
95 | 240 val_rem = int(entries['%s_rem' % name]) |
99
1a88bb989afb
fix off-by-one in remainder code
Matt Johnston <matt@ucc.asn.au>
parents:
95
diff
changeset
|
241 tick_wake = int(entries['tick_wake']) + 1 |
94 | 242 tick_secs = int(entries['tick_secs']) |
243 return val_ticks + float(val_rem) * tick_secs / tick_wake | |
244 | |
191 | 245 def write_current_params(current_params): |
246 out = {} | |
247 out['params'] = current_params | |
248 out['time'] = time.time() | |
249 atomicfile.AtomicFile("%s/current_params.txt" % config.DATA_PATH).write( | |
250 json.dumps(out, sort_keys=True, indent=4)+'\n') | |
251 | |
252 def read_current_params(): | |
253 p = atomicfile.AtomicFile("%s/current_params.txt" % config.DATA_PATH).read() | |
254 dat = json.loads(p) | |
255 return dat['params'] | |
256 | |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
257 def parse(params): |
104
7f3fc0980df1
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
258 |
7f3fc0980df1
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
259 start_time = time.time() |
33 | 260 |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
261 debugf = record_debug(params) |
27 | 262 |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
263 remote_now = params['now'] |
27 | 264 |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
265 time_diff = start_time - remote_now |
27 | 266 |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
267 # readings is [ ({sensorname: value, ...}, time), ... ] |
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
268 readings = params['readings'] |
27 | 269 |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
270 # measurements is {sensorname: [(time, value), ...], ...} |
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
271 measurements = {} |
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
272 for rs, t in readings: |
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
273 real_t = t + time_diff |
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
274 for s, v in rs.iteritems(): |
159
683cfd134f6a
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
146
diff
changeset
|
275 measurements.setdefault(s, []).append((real_t, v)) |
61 | 276 |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
277 # one-off measurements here |
191 | 278 current_params = params['current_params'] |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
279 measurements['fridge_on'] = [ (time.time(), params['fridge_on']) ] |
191 | 280 measurements['fridge_setpoint'] = [ (time.time(), current_params['fridge_setpoint']) ] |
281 | |
282 write_current_params(current_params) | |
126
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
283 |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
284 for s, vs in measurements.iteritems(): |
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
285 sensor_update(s, vs) |
33 | 286 |
104
7f3fc0980df1
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
287 timedelta = time.time() - start_time |
159
683cfd134f6a
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
146
diff
changeset
|
288 debugf.write("Updated sensors in %.2f secs\n" % timedelta) |
33 | 289 debugf.flush() |
182 | 290 |
194 | 291 _FIELD_DEFAULTS = { |
200
1d8a8bd2ea78
Fridge setpoint as a float value
Matt Johnston <matt@ucc.asn.au>
parents:
194
diff
changeset
|
292 'fridge_setpoint': 16.0, |
194 | 293 'fridge_difference': 0.2, |
294 'overshoot_delay': 720, # 12 minutes | |
295 'overshoot_factor': 1, # ยบC | |
296 'disabled': False, | |
297 'nowort': True, | |
298 'fridge_range_lower': 3, | |
299 'fridge_range_upper': 3, | |
300 } | |
301 | |
182 | 302 def get_params(): |
303 | |
304 r = [] | |
191 | 305 |
306 vals = read_current_params() | |
307 | |
182 | 308 for k, v in _FIELD_DEFAULTS.iteritems(): |
194 | 309 n = {'name': k, 'value': type(v)(vals[k])} |
182 | 310 if type(v) is bool: |
311 kind = 'yesno' | |
312 else: | |
313 kind = 'number' | |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
314 if k == 'overshoot_delay': |
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
315 n['unit'] = ' sec' |
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
316 n['amount'] = 60 |
184 | 317 n['digits'] = 0; |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
318 else: |
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
319 n['unit'] = 'ยบ' |
184 | 320 n['amount'] = 0.1; |
321 n['digits'] = 1; | |
182 | 322 n['kind'] = kind |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
323 n['title'] = k |
182 | 324 r.append(n) |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
325 |
182 | 326 return json.dumps(r, sort_keys=True, indent=4) |
185 | 327 |
194 | 328 def send_params(params): |
329 # 'templog_receive' is ignored due to authorized_keys | |
330 # restrictions | |
331 args = [config.SSH_PROG, '-i', config.SSH_KEYFILE, | |
332 config.SSH_HOST, 'templog_receive'] | |
333 try: | |
334 p = subprocess.Popen(args, stdin=subprocess.PIPE, stdout=subprocess.PIPE) | |
335 (out, err) = p.communicate(json.dumps(params)) | |
336 except OSError, e: | |
337 print>>sys.stderr, e | |
338 return "Failed update" | |
185 | 339 |
194 | 340 if 'Good Update' in out: |
341 return True | |
342 | |
343 print>>sys.stderr, "Strange return from update:" | |
344 print>>sys.stderr, out | |
345 return "Unexpected update result" | |
346 | |
347 def same_type(a, b): | |
348 ta = type(a) | |
349 tb = type(b) | |
350 | |
351 if ta == int: | |
352 ta = float | |
353 if tb == int: | |
354 tb = float | |
355 | |
356 return (ta == tb) | |
357 | |
358 def update_params(p): | |
359 params = {} | |
360 for i in p: | |
361 params[i['name']] = i['value'] | |
362 | |
363 if params.viewkeys() != _FIELD_DEFAULTS.viewkeys(): | |
364 diff = params.viewkeys() ^ _FIELD_DEFAULTS.viewkeys() | |
365 return "Key mismatch, difference %s" % str(diff) | |
366 | |
367 for k, v in params.items(): | |
368 if not same_type(v, _FIELD_DEFAULTS[k]): | |
369 return "Bad type for %s, %s vs %s" % (k , type(v), type(_FIELD_DEFAULTS[k])) | |
370 | |
371 ret = send_params(params) | |
372 if ret is not True: | |
373 return "Failed sending params: %s" % ret | |
374 | |
375 return True | |
376 | |
377 | |
378 |