Mercurial > templog
annotate web/log.py @ 489:46e327c00246
gets current params
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 11 Feb 2014 22:10:32 +0800 |
parents | d68af9e84485 |
children | 4fa8cbf31065 |
rev | line source |
---|---|
384 | 1 # -*- coding: utf-8 -*- |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
2 #:vim:et:ts=4:sts=4:sw=4: |
333 | 3 import rrdtool |
4 import os | |
335 | 5 import os.path |
333 | 6 import sys |
335 | 7 import glob |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
8 import hashlib |
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
9 import tempfile |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
10 import time |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
11 import syslog |
349 | 12 import sqlite3 |
355
a1aa4176ca2c
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
351
diff
changeset
|
13 import traceback |
373 | 14 import datetime |
381
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
379
diff
changeset
|
15 import struct |
383 | 16 import binascii |
458
94932e7051e5
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
445
diff
changeset
|
17 import json |
335 | 18 from colorsys import hls_to_rgb |
333 | 19 |
334 | 20 import config |
489 | 21 import atomicfile |
333 | 22 |
23 def sensor_rrd_path(s): | |
458
94932e7051e5
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
445
diff
changeset
|
24 return '%s/sensor_%s.rrd' % (config.DATA_PATH, str(s)) |
333 | 25 |
335 | 26 # returns (path, sensor_name) tuples |
27 def all_sensors(): | |
28 return [(r, os.path.basename(r[:-4])) | |
29 for r in glob.glob('%s/*.rrd' % config.DATA_PATH)] | |
30 | |
333 | 31 def create_rrd(sensor_id): |
350
03322c38b4a9
Create with a start date so that it works
Matt Johnston <matt@ucc.asn.au>
parents:
346
diff
changeset
|
32 # start date of 10 seconds into 1970 is used so that we can |
03322c38b4a9
Create with a start date so that it works
Matt Johnston <matt@ucc.asn.au>
parents:
346
diff
changeset
|
33 # update with prior values straight away. |
367 | 34 if 'voltage' in sensor_id: |
369 | 35 args = [ |
36 '--step', '3600', | |
37 'DS:temp:GAUGE:7200:1:10', | |
38 'RRA:AVERAGE:0.5:1:87600'] | |
425
eb685e1afcbb
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
424
diff
changeset
|
39 elif 'fridge_on' in sensor_id: |
eb685e1afcbb
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
424
diff
changeset
|
40 args = [ |
eb685e1afcbb
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
424
diff
changeset
|
41 '--step', '300', |
eb685e1afcbb
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
424
diff
changeset
|
42 'DS:temp:GAUGE:600:-100:500', |
eb685e1afcbb
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
424
diff
changeset
|
43 'RRA:LAST:0.5:1:1051200'] |
367 | 44 else: |
369 | 45 args = [ |
46 '--step', '300', | |
394
2cd246ea92c6
increase temperature logging range
Matt Johnston <matt@ucc.asn.au>
parents:
384
diff
changeset
|
47 'DS:temp:GAUGE:600:-100:500', |
367 | 48 'RRA:AVERAGE:0.5:1:1051200'] |
333 | 49 |
458
94932e7051e5
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
445
diff
changeset
|
50 print>>sys.stderr, sensor_rrd_path(sensor_id) |
94932e7051e5
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
445
diff
changeset
|
51 |
367 | 52 rrdtool.create(sensor_rrd_path(sensor_id), |
369 | 53 '--start', 'now-60d', |
367 | 54 *args) |
335 | 55 |
56 # stolen from viewmtn, stolen from monotone-viz | |
57 def colour_from_string(str): | |
58 def f(off): | |
59 return ord(hashval[off]) / 256.0 | |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
60 hashval = hashlib.sha1(str).digest() |
335 | 61 hue = f(5) |
62 li = f(1) * 0.15 + 0.55 | |
63 sat = f(2) * 0.5 + .5 | |
64 return ''.join(["%.2x" % int(x * 256) for x in hls_to_rgb(hue, li, sat)]) | |
65 | |
66 def graph_png(start, length): | |
410
910324f14fe4
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
409
diff
changeset
|
67 os.environ['MATT_PNG_BODGE_COMPRESS'] = '4' |
910324f14fe4
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
409
diff
changeset
|
68 os.environ['MATT_PNG_BODGE_FILTER'] = 'paeth' |
335 | 69 rrds = all_sensors() |
70 | |
71 graph_args = [] | |
367 | 72 have_volts = False |
464
c3926e7cfb0c
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
458
diff
changeset
|
73 |
c3926e7cfb0c
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
458
diff
changeset
|
74 ## volts = temp * volts_div + volts_shift |
c3926e7cfb0c
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
458
diff
changeset
|
75 #volts_div = 10 |
c3926e7cfb0c
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
458
diff
changeset
|
76 #volts_shift = 2 |
c3926e7cfb0c
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
458
diff
changeset
|
77 volts_div = 1 |
c3926e7cfb0c
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
458
diff
changeset
|
78 volts_shift = 0 |
c3926e7cfb0c
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
458
diff
changeset
|
79 |
c3926e7cfb0c
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
458
diff
changeset
|
80 volts_mult = 1.0/volts_div |
c3926e7cfb0c
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
458
diff
changeset
|
81 |
478 | 82 # (title, sensorline) pairs. |
83 sensor_lines = [] | |
84 | |
335 | 85 for n, (rrdfile, sensor) in enumerate(rrds): |
425
eb685e1afcbb
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
424
diff
changeset
|
86 unit = None |
367 | 87 if 'avrtemp' in sensor: |
88 continue | |
89 if 'voltage' in sensor: | |
90 have_volts = True | |
91 vname = 'scalevolts' | |
377
55710361804b
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
375
diff
changeset
|
92 graph_args.append('DEF:%(vname)s=%(rrdfile)s:temp:AVERAGE:step=3600' % locals()) |
384 | 93 unit = 'V' |
425
eb685e1afcbb
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
424
diff
changeset
|
94 elif 'fridge_on' in sensor: |
eb685e1afcbb
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
424
diff
changeset
|
95 vname = 'fridge_on' |
eb685e1afcbb
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
424
diff
changeset
|
96 graph_args.append('DEF:raw%(vname)s=%(rrdfile)s:temp:LAST' % locals()) |
431 | 97 graph_args.append('CDEF:%(vname)s=raw%(vname)s,-0.2,*,3,+' % locals()) |
367 | 98 else: |
99 vname = 'temp%d' % n | |
377
55710361804b
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
375
diff
changeset
|
100 graph_args.append('DEF:raw%(vname)s=%(rrdfile)s:temp:AVERAGE' % locals()) |
407
36a33c56c383
limit temps to 35º on graph
Matt Johnston <matt@ucc.asn.au>
parents:
405
diff
changeset
|
101 # limit max temp to 50 |
464
c3926e7cfb0c
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
458
diff
changeset
|
102 graph_args.append('CDEF:%(vname)s=raw%(vname)s,38,GT,UNKN,raw%(vname)s,%(volts_mult)f,*,%(volts_shift)f,+,IF' % locals()) |
384 | 103 unit = '<span face="Liberation Serif">º</span>C' |
104 | |
425
eb685e1afcbb
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
424
diff
changeset
|
105 format_last_value = None |
eb685e1afcbb
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
424
diff
changeset
|
106 if unit: |
eb685e1afcbb
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
424
diff
changeset
|
107 try: |
eb685e1afcbb
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
424
diff
changeset
|
108 last_value = float(rrdtool.info(rrdfile)['ds[temp].last_ds']) |
436
8841a709ae78
strip multiple-of-ten temperatures correctly
Matt Johnston <matt@ucc.asn.au>
parents:
431
diff
changeset
|
109 format_last_value = ('%f' % last_value).rstrip('0').rstrip('.') + unit |
425
eb685e1afcbb
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
424
diff
changeset
|
110 except ValueError: |
eb685e1afcbb
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
424
diff
changeset
|
111 pass |
335 | 112 width = config.LINE_WIDTH |
113 legend = config.SENSOR_NAMES.get(sensor, sensor) | |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
114 colour = config.SENSOR_COLOURS.get(legend, colour_from_string(sensor)) |
425
eb685e1afcbb
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
424
diff
changeset
|
115 if format_last_value: |
eb685e1afcbb
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
424
diff
changeset
|
116 print_legend = '%s (%s)' % (legend, format_last_value) |
eb685e1afcbb
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
424
diff
changeset
|
117 else: |
eb685e1afcbb
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
424
diff
changeset
|
118 print_legend = legend |
478 | 119 sensor_lines.append( (legend, 'LINE%(width)f:%(vname)s#%(colour)s:%(print_legend)s' % locals()) ) |
120 | |
121 sensor_lines.sort(key = lambda (legend, line): "Wort" in legend) | |
122 | |
123 graph_args += (line for (legend, line) in sensor_lines) | |
335 | 124 |
373 | 125 end = int(start+length) |
126 start = int(start) | |
127 | |
335 | 128 tempf = tempfile.NamedTemporaryFile() |
373 | 129 dateformat = '%H:%M:%S %Y-%m-%d' |
130 watermark = ("Now %s\t" | |
131 "Start %s\t" | |
132 "End %s" % ( | |
133 datetime.datetime.now().strftime(dateformat), | |
134 datetime.datetime.fromtimestamp(start).strftime(dateformat), | |
135 datetime.datetime.fromtimestamp(end).strftime(dateformat) )) | |
136 | |
137 args = [tempf.name, '-s', str(start), | |
138 '-e', str(end), | |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
139 '-w', str(config.GRAPH_WIDTH), |
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
140 '-h', str(config.GRAPH_HEIGHT), |
335 | 141 '--slope-mode', |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
142 '--border', '0', |
379
fed6738be1ab
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
377
diff
changeset
|
143 # '--vertical-label', 'Voltage', |
464
c3926e7cfb0c
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
458
diff
changeset
|
144 '--y-grid', '%(volts_mult)f:1' % locals(), |
377
55710361804b
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
375
diff
changeset
|
145 '--dynamic-labels', |
362 | 146 '--grid-dash', '1:0', |
383 | 147 '--zoom', str(config.ZOOM), |
362 | 148 '--color', 'GRID#00000000', |
149 '--color', 'MGRID#aaaaaa', | |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
150 '--color', 'BACK#ffffff', |
373 | 151 '--disable-rrdtool-tag', |
384 | 152 '--pango-markup', |
373 | 153 '--watermark', watermark, |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
154 '--imgformat', 'PNG'] \ |
335 | 155 + graph_args |
373 | 156 args += ['--font', 'DEFAULT:12:%s' % config.GRAPH_FONT] |
157 args += ['--font', 'WATERMARK:10:%s' % config.GRAPH_FONT] | |
367 | 158 if have_volts: |
464
c3926e7cfb0c
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
458
diff
changeset
|
159 volts_shift_div = volts_div * volts_shift |
c3926e7cfb0c
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
458
diff
changeset
|
160 args += ['--right-axis', '%(volts_div)f:-%(volts_shift_div)f' % locals(), |
c3926e7cfb0c
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
458
diff
changeset
|
161 # '--right-axis-format', '%.0lf', |
379
fed6738be1ab
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
377
diff
changeset
|
162 # '--right-axis-label', 'Temperature' |
fed6738be1ab
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
377
diff
changeset
|
163 ] |
367 | 164 |
489 | 165 #print>>sys.stderr, ' '.join("'%s'" % s for s in args) |
335 | 166 rrdtool.graph(*args) |
410
910324f14fe4
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
409
diff
changeset
|
167 #return tempf |
335 | 168 return tempf.read() |
169 | |
445
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
170 def validate_value(m): |
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
171 if m == 85: |
458
94932e7051e5
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
445
diff
changeset
|
172 return 'U' |
445
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
173 else: |
458
94932e7051e5
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
445
diff
changeset
|
174 return '%f' % m |
424 | 175 |
445
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
176 def sensor_update(sensor_id, measurements): |
333 | 177 try: |
178 open(sensor_rrd_path(sensor_id)) | |
179 except IOError, e: | |
180 create_rrd(sensor_id) | |
181 | |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
182 if measurements: |
445
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
183 values = ['%d:%s' % (t, validate_value(m)) for (t, m) in measurements] |
333 | 184 |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
185 rrdfile = sensor_rrd_path(sensor_id) |
346 | 186 # XXX what to do here when it fails... |
355
a1aa4176ca2c
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
351
diff
changeset
|
187 for v in values: |
a1aa4176ca2c
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
351
diff
changeset
|
188 try: |
a1aa4176ca2c
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
351
diff
changeset
|
189 rrdtool.update(rrdfile, v) |
369 | 190 except rrdtool.error, e: |
410
910324f14fe4
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
409
diff
changeset
|
191 print>>sys.stderr, "Bad rrdtool update '%s': %s" % (v, str(e)) |
355
a1aa4176ca2c
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
351
diff
changeset
|
192 traceback.print_exc(file=sys.stderr) |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
193 |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
194 # be paranoid |
410
910324f14fe4
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
409
diff
changeset
|
195 #f = file(rrdfile) |
910324f14fe4
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
409
diff
changeset
|
196 #os.fsync(f.fileno()) |
333 | 197 |
409 | 198 def debug_file(mode='r'): |
199 return open('%s/debug.log' % config.DATA_PATH, mode) | |
200 | |
445
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
201 def record_debug(params): |
409 | 202 f = debug_file('a+') |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
203 f.write('===== %s =====\n' % time.strftime('%a, %d %b %Y %H:%M:%S')) |
458
94932e7051e5
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
445
diff
changeset
|
204 json.dump(params, f, sort_keys=True, indent=4) |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
205 f.flush() |
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
206 return f |
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
207 |
409 | 208 def tail_debug_log(): |
209 f = debug_file() | |
210 f.seek(0, 2) | |
211 size = f.tell() | |
212 f.seek(max(0, size-30000)) | |
213 return '\n'.join(l.strip() for l in f.readlines()[-400:]) | |
214 | |
381
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
379
diff
changeset
|
215 def convert_ds18b20_12bit(reading): |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
379
diff
changeset
|
216 value = struct.unpack('>h', binascii.unhexlify(reading))[0] |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
379
diff
changeset
|
217 return value * 0.0625 |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
379
diff
changeset
|
218 |
400 | 219 def time_rem(name, entries): |
220 val_ticks = int(entries[name]) | |
401 | 221 val_rem = int(entries['%s_rem' % name]) |
405
d9b78a1bdd1d
fix off-by-one in remainder code
Matt Johnston <matt@ucc.asn.au>
parents:
401
diff
changeset
|
222 tick_wake = int(entries['tick_wake']) + 1 |
400 | 223 tick_secs = int(entries['tick_secs']) |
224 return val_ticks + float(val_rem) * tick_secs / tick_wake | |
225 | |
489 | 226 def write_current_params(current_params): |
227 out = {} | |
228 out['params'] = current_params | |
229 out['time'] = time.time() | |
230 atomicfile.AtomicFile("%s/current_params.txt" % config.DATA_PATH).write( | |
231 json.dumps(out, sort_keys=True, indent=4)+'\n') | |
232 | |
233 def read_current_params(): | |
234 p = atomicfile.AtomicFile("%s/current_params.txt" % config.DATA_PATH).read() | |
235 dat = json.loads(p) | |
236 return dat['params'] | |
237 | |
445
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
238 def parse(params): |
410
910324f14fe4
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
409
diff
changeset
|
239 |
910324f14fe4
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
409
diff
changeset
|
240 start_time = time.time() |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
241 |
445
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
242 debugf = record_debug(params) |
333 | 243 |
445
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
244 remote_now = params['now'] |
333 | 245 |
445
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
246 time_diff = start_time - remote_now |
333 | 247 |
445
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
248 # readings is [ ({sensorname: value, ...}, time), ... ] |
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
249 readings = params['readings'] |
333 | 250 |
445
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
251 # measurements is {sensorname: [(time, value), ...], ...} |
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
252 measurements = {} |
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
253 for rs, t in readings: |
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
254 real_t = t + time_diff |
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
255 for s, v in rs.iteritems(): |
458
94932e7051e5
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
445
diff
changeset
|
256 measurements.setdefault(s, []).append((real_t, v)) |
367 | 257 |
445
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
258 # one-off measurements here |
489 | 259 current_params = params['current_params'] |
445
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
260 measurements['fridge_on'] = [ (time.time(), params['fridge_on']) ] |
489 | 261 measurements['fridge_setpoint'] = [ (time.time(), current_params['fridge_setpoint']) ] |
262 | |
263 write_current_params(current_params) | |
425
eb685e1afcbb
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
424
diff
changeset
|
264 |
445
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
265 for s, vs in measurements.iteritems(): |
5b9dc87c988f
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
436
diff
changeset
|
266 sensor_update(s, vs) |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
267 |
410
910324f14fe4
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
409
diff
changeset
|
268 timedelta = time.time() - start_time |
458
94932e7051e5
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
445
diff
changeset
|
269 debugf.write("Updated sensors in %.2f secs\n" % timedelta) |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
270 debugf.flush() |
482 | 271 |
272 def get_params(): | |
273 _FIELD_DEFAULTS = { | |
274 'fridge_setpoint': 16, | |
275 'fridge_difference': 0.2, | |
276 'overshoot_delay': 720, # 12 minutes | |
277 'overshoot_factor': 1, # ºC | |
278 'disabled': False, | |
483
93af94e6bd9d
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
482
diff
changeset
|
279 'nowort': True, |
482 | 280 'fridge_range_lower': 3, |
281 'fridge_range_upper': 3, | |
282 } | |
283 | |
284 r = [] | |
489 | 285 |
286 vals = read_current_params() | |
287 | |
482 | 288 for k, v in _FIELD_DEFAULTS.iteritems(): |
489 | 289 n = {'name': k, 'value': vals[k]} |
482 | 290 if type(v) is bool: |
291 kind = 'yesno' | |
292 else: | |
293 kind = 'number' | |
483
93af94e6bd9d
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
482
diff
changeset
|
294 if k == 'overshoot_delay': |
93af94e6bd9d
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
482
diff
changeset
|
295 n['unit'] = ' sec' |
93af94e6bd9d
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
482
diff
changeset
|
296 n['amount'] = 60 |
484 | 297 n['digits'] = 0; |
483
93af94e6bd9d
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
482
diff
changeset
|
298 else: |
93af94e6bd9d
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
482
diff
changeset
|
299 n['unit'] = 'º' |
484 | 300 n['amount'] = 0.1; |
301 n['digits'] = 1; | |
482 | 302 n['kind'] = kind |
483
93af94e6bd9d
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
482
diff
changeset
|
303 n['title'] = k |
482 | 304 r.append(n) |
483
93af94e6bd9d
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
482
diff
changeset
|
305 |
482 | 306 return json.dumps(r, sort_keys=True, indent=4) |
485 | 307 |
308 | |
309 def get_csrf_blob(user_ident): | |
310 return "aaa" |