-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsensors.py
581 lines (555 loc) · 25.7 KB
/
sensors.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
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
#!/usr/bin/python
import sys
import os
import datetime
import json
import base64
import time
import copy
import utils
import db
import logger
import config
log = logger.get_logger(__name__)
conf = config.get_config()
import scheduler
schedule = scheduler.get_scheduler()
# import plugins
import plugin_wunderground
import plugin_weatherchannel
import plugin_command
import plugin_image
import plugin_csv
import plugin_messagebridge
import plugin_icloud
import plugin_rtl_433
import plugin_gpio
import plugin_earthquake
import plugin_mqtt
import plugin_system
import plugin_dht
import plugin_ds18b20
import plugin_ads1x15
import plugin_rss
import plugin_mysensors
import plugin_bluetooth
# variables
plugins = {}
# initialize the configured plugins
def init_plugins():
# for each plugin
for name in conf["plugins"]:
# get the plugin and store it
plugin = None
if name == "wunderground": plugin = plugin_wunderground
elif name == "weatherchannel": plugin = plugin_weatherchannel
elif name == "command": plugin = plugin_command
elif name == "image": plugin = plugin_image
elif name == "icloud": plugin = plugin_icloud
elif name == "csv": plugin = plugin_csv
elif name == "messagebridge": plugin = plugin_messagebridge
elif name == "rtl_433": plugin = plugin_rtl_433
elif name == "gpio": plugin = plugin_gpio
elif name == "earthquake": plugin = plugin_earthquake
elif name == "mqtt": plugin = plugin_mqtt
elif name == "system": plugin = plugin_system
elif name == "dht": plugin = plugin_dht
elif name == "ds18b20": plugin = plugin_ds18b20
elif name == "ads1x15": plugin = plugin_ads1x15
elif name == "rss": plugin = plugin_rss
elif name == "mysensors": plugin = plugin_mysensors
elif name == "bluetooth": plugin = plugin_bluetooth
if plugin is None:
log.error("plugin "+name+" not supported")
continue
plugins[name] = plugin
# start the plugin service
def start_plugins():
for name,plugin in plugins.iteritems():
if hasattr(plugin, 'run') and ("enabled" not in conf["plugins"][name] or "enabled" in conf["plugins"][name] and conf["plugins"][name]["enabled"]):
log.info("starting plugin service "+name)
schedule.add_job(plugin.run,'date',run_date=datetime.datetime.now())
# read data out of a sensor and store the output in the cache
def poll(sensor):
# poll the data
data = None
log.debug("["+sensor["module_id"]+"]["+sensor["group_id"]+"]["+sensor["sensor_id"]+"] polling sensor")
try:
# retrieve the raw data
data = plugins[sensor['plugin']['plugin_name']].poll(sensor)
# delete from the cache the previous value
db.delete(sensor['db_cache'])
# store it in the cache
db.set(sensor["db_cache"],data,utils.now())
except Exception,e:
log.warning("["+sensor["module_id"]+"]["+sensor["group_id"]+"]["+sensor["sensor_id"]+"] unable to poll: "+utils.get_exception(e))
return None
return data
# parse the data of a sensor from the cache and return the value read
def parse(sensor):
# retrieve the raw data from the cache
data = db.range(sensor["db_cache"],withscores=False)
if len(data) == 0:
log.warning("["+sensor["module_id"]+"]["+sensor["group_id"]+"]["+sensor["sensor_id"]+"]: no data to parse")
return None
data = data[0]
measures = None
try:
# parse the cached data
measures = plugins[sensor['plugin']['plugin_name']].parse(sensor,data)
if not isinstance(measures,list):
# returned a single value, build the data structure
value = measures
measures = []
measure = {}
measure["key"] = sensor["sensor_id"]
measure["value"] = value
measures.append(measure)
# format each value
for i in range(len(measures)):
# post-process the measure if configured
if "command_transform" in sensor:
orig_value = measures[i]["value"]
command = sensor["command_transform"].replace("%value%",str(orig_value))
measures[i]["value"] = utils.run_command(command)
log.debug("["+sensor["module_id"]+"]["+sensor["group_id"]+"]["+sensor["sensor_id"]+"] transforming "+str(orig_value)+" into "+str(measures[i]["value"]))
# normalize the measures
if sensor["format"] == "temperature": measures[i]["value"] = utils.temperature_unit(measures[i]["value"])
if sensor["format"] == "length": measures[i]["value"] = utils.length_unit(measures[i]["value"])
if sensor["format"] == "pressure": measures[i]["value"] = utils.pressure_unit(measures[i]["value"])
if sensor["format"] == "speed": measures[i]["value"] = utils.speed_unit(measures[i]["value"])
measures[i]["value"] = utils.normalize(measures[i]["value"],conf["constants"]["formats"][sensor["format"]]["formatter"])
log.debug("["+sensor["module_id"]+"]["+sensor["group_id"]+"]["+sensor["sensor_id"]+"] parsed: "+str(measures))
except Exception,e:
log.warning("["+sensor["module_id"]+"]["+sensor["group_id"]+"]["+sensor["sensor_id"]+"] unable to parse "+str(data)+": "+utils.get_exception(e))
return None
# return the structured data
return measures
# save the data of a sensor into the database
def save(sensor,force=False):
cache_timestamp = 0
# get the raw data from the cache
if db.exists(sensor["db_cache"]):
data = db.range(sensor["db_cache"],withscores=True)
cache_timestamp = data[0][0]
# if too old, refresh it
cache_expire_min = sensor["plugin"]["cache_expire_min"] if "plugin" in sensor and "cache_expire_min" in sensor["plugin"] else conf["sensors"]["cache_expire_min"]
if force or (utils.now() - cache_timestamp) > cache_expire_min*conf["constants"]["1_minute"]:
# if an exception occurred, skip this sensor
if poll(sensor) is None: return
# get the parsed data
measures = parse(sensor)
# store it into the database
store(sensor,measures)
# store the measures into the database
def store(sensor,measures,ifnotexists=False):
# if an exception occurred, skip this sensor
if measures is None: return
# for each returned measure
for measure in measures:
# set the timestamp to now if not already set
if "timestamp" not in measure: measure["timestamp"] = utils.now()
# define the key to store the value
key = sensor["db_group"]+":"+measure["key"]
# if ifnotexists is set, check if the key exists
if ifnotexists and db.exists(key):
log.debug("["+sensor["module_id"]+"]["+sensor["group_id"]+"]["+sensor["sensor_id"]+"] key already exists, ignoring new value")
return
# delete previous values if needed
realtime_count = conf["sensors"]["retention"]["realtime_count"]
if "retention" in sensor and "realtime_count" in sensor["retention"]: realtime_count = sensor["retention"]["realtime_count"]
if realtime_count > 0:
db.deletebyrank(key,0,-realtime_count)
# if only measures with a newer timestamp than the latest can be added, apply the policy
realtime_new_only = conf["sensors"]["retention"]["realtime_new_only"]
if "retention" in sensor and "realtime_new_only" in sensor["retention"]: realtime_new_only = sensor["retention"]["realtime_new_only"]
if realtime_new_only:
# retrieve the latest measure's timestamp
last = db.range(key,-1,-1)
if len(last) > 0:
last_timestamp = last[0][0]
# if the measure's timestamp is older or the same, skip it
if measure["timestamp"] <= last_timestamp:
log.debug("["+sensor["module_id"]+"]["+sensor["group_id"]+"]["+sensor["sensor_id"]+"] ("+utils.timestamp2date(measure["timestamp"])+") old event, ignoring "+measure["key"]+": "+str(measure["value"]))
continue
# check if there is already something stored with the same timestamp
old = db.rangebyscore(key,measure["timestamp"],measure["timestamp"])
if len(old) > 0:
if old[0][1] == measure["value"]:
# if the value is also the same, skip it
log.debug("["+sensor["module_id"]+"]["+sensor["group_id"]+"]["+sensor["sensor_id"]+"] ("+utils.timestamp2date(measure["timestamp"])+") already in the database, ignoring "+measure["key"]+": "+str(measure["value"]))
continue
else:
# same timestamp but different value, remove the old value so to store the new one
db.deletebyscore(key,measure["timestamp"],measure["timestamp"])
# store the value into the database
log.info("["+sensor["module_id"]+"]["+sensor["group_id"]+"]["+sensor["sensor_id"]+"] ("+utils.timestamp2date(measure["timestamp"])+") saving "+measure["key"]+": "+utils.truncate(str(measure["value"]))+conf["constants"]["formats"][sensor["format"]]["suffix"])
db.set(key,measure["value"],measure["timestamp"])
# re-calculate the derived measures for the hour/day
if "summarize" in sensor:
summarize(sensor,'hour',utils.hour_start(measure["timestamp"]),utils.hour_end(measure["timestamp"]))
summarize(sensor,'day',utils.day_start(measure["timestamp"]),utils.day_end(measure["timestamp"]))
# calculate min, max and avg value
def summarize(sensor,timeframe,start,end):
# prepare the database schema to use
if timeframe == "hour":
key_to_read = sensor["db_sensor"]
key_to_write = sensor["db_sensor"]+":hour"
elif timeframe == "day":
key_to_read = sensor["db_sensor"]+":hour:avg"
key_to_write = sensor["db_sensor"]+":day"
# retrieve from the database the data based on the given timeframe
data = db.rangebyscore(key_to_read,start,end,withscores=True)
# split between values and timestamps
values = []
timestamps = []
for i in range(0,len(data)):
timestamps.append(data[i][0])
values.append(data[i][1])
# calculate the derived values
timestamp = start
min = avg = max = rate = sum = count = count_unique = "-"
if "avg" in sensor["summarize"] and sensor["summarize"]["avg"]:
# calculate avg
avg = utils.avg(values)
db.deletebyscore(key_to_write+":avg",start,end)
db.set(key_to_write+":avg",avg,timestamp)
if "min_max" in sensor["summarize"] and sensor["summarize"]["min_max"]:
# calculate min
min = utils.min(values)
db.deletebyscore(key_to_write+":min",start,end)
db.set(key_to_write+":min",min,timestamp)
# calculate max
max = utils.max(values)
db.deletebyscore(key_to_write+":max",start,end)
db.set(key_to_write+":max",max,timestamp)
if "rate" in sensor["summarize"] and sensor["summarize"]["rate"]:
# calculate the rate of change
rate = utils.velocity(timestamps,values)
db.deletebyscore(key_to_write+":rate",start,end)
db.set(key_to_write+":rate",rate,timestamp)
if "sum" in sensor["summarize"] and sensor["summarize"]["sum"]:
# calculate the sum
sum = utils.sum(values)
db.deletebyscore(key_to_write+":sum",start,end)
db.set(key_to_write+":sum",sum,timestamp)
if "count" in sensor["summarize"] and sensor["summarize"]["count"]:
# count the values
count = utils.count(values)
db.deletebyscore(key_to_write+":count",start,end)
db.set(key_to_write+":count",count,timestamp)
if "count_unique" in sensor["summarize"] and sensor["summarize"]["count_unique"]:
# count the unique values
count_unique = utils.count_unique(values)
db.deletebyscore(key_to_write+":count_unique",start,end)
db.set(key_to_write+":count_unique",count_unique,timestamp)
log.debug("["+sensor["module_id"]+"]["+sensor["group_id"]+"]["+sensor["sensor_id"]+"] ("+utils.timestamp2date(timestamp)+") updating summary of the "+timeframe+" (min,avg,max,rate,sum,count,count_unique): ("+str(min)+","+str(avg)+","+str(max)+","+str(rate)+","+str(sum)+","+str(count)+","+str(count_unique)+")")
# purge old data from the database
def expire(sensor):
total = 0
# define which stat to expire for each retention policy
policies = {
"realtime_days": [""],
"recent_days": [":hour:min",":hour:avg",":hour:max","hour:rate"],
"history_days": [":day:min",":day:avg",":day:max",":day:rate"],
}
# for each policy
for policy, stats in policies.iteritems():
# set the retention to the global configuration
retention = conf["sensors"]["retention"][policy]
# if the policy is overridden in the sensor configuration, update the retention
if "retention" in sensor and policy in sensor["retention"]: retention = sensor["retention"][policy]
# if retention is 0, keep the data forever
if retention == 0: continue
# for each stat to expire
for stat in stats:
key = sensor['db_sensor']+stat
if db.exists(key):
# if the key exists, delete old data
deleted = db.deletebyscore(key,"-inf",utils.now()-retention*conf["constants"]["1_day"])
log.debug("["+sensor["module_id"]+"]["+sensor["group_id"]+"]["+sensor["sensor_id"]+"] expiring from "+key+" "+str(deleted)+" items")
total = total + deleted
if total > 0: log.info("["+sensor["module_id"]+"]["+sensor["group_id"]+"]["+sensor["sensor_id"]+"] expired "+str(total)+" items")
# initialize a sensor data structure
def init_sensor(sensor):
# initialize a new data structure
sensor = copy.deepcopy(sensor)
# define the database schema
sensor['db_group'] = conf["constants"]["db_schema"]["root"]+":"+sensor["module_id"]+":"+sensor["group_id"]
sensor['db_sensor'] = sensor['db_group']+":"+sensor["sensor_id"]
if "plugin" in sensor:
# ensure the sensor is using a valid plugin
if sensor["plugin"]["plugin_name"] not in plugins:
log.error("["+sensor["module_id"]+"]["+sensor["group_id"]+"]["+sensor["sensor_id"]+"] plugin "+sensor["plugin"]["plugin_name"]+" not supported")
return None
# define the cache location if cache is in use by the plugin
if hasattr(plugins[sensor["plugin"]["plugin_name"]], 'cache_schema'):
if plugins[sensor["plugin"]["plugin_name"]].cache_schema(sensor) is None:
log.error("["+sensor["module_id"]+"]["+sensor["group_id"]+"]["+sensor["sensor_id"]+"] invalid measure")
return None
sensor['db_cache'] = conf["constants"]["db_schema"]["tmp"]+":plugin_"+sensor["plugin"]["plugin_name"]+":"+plugins[sensor["plugin"]["plugin_name"]].cache_schema(sensor)
return sensor
# read or save the measure of a given sensor
def run(module_id,group_id,sensor_id,action):
try:
# ensure the group and sensor exist
sensor = utils.get_sensor(module_id,group_id,sensor_id)
sensor = init_sensor(sensor)
if sensor is None:
log.error("["+module_id+"]["+group_id+"]["+sensor_id+"] not found, skipping it")
return
# execute the action
log.debug("["+sensor["module_id"]+"]["+sensor["group_id"]+"]["+sensor["sensor_id"]+"] requested "+action)
if action == "poll":
# read the measure (will be stored into the cache)
poll(sensor)
elif action == "parse":
# just parse the output
log.info(parse(sensor))
elif action == "save":
# save the parsed output into the database
save(sensor)
elif action == "force_save":
# save the parsed output into the database forcing polling the measure
save(sensor,force=True)
elif action == "summarize_hour":
# every hour calculate and save min,max,avg of the previous hour
summarize(sensor,'hour',utils.hour_start(utils.last_hour()),utils.hour_end(utils.last_hour()))
elif action == "summarize_day":
# every day calculate and save min,max,avg of the previous day (using hourly averages)
summarize(sensor,'day',utils.day_start(utils.yesterday()),utils.day_end(utils.yesterday()))
elif action == "expire":
# purge old data from the database
expire(sensor)
else: log.error("Unknown action "+action)
except Exception,e:
log.warning("["+sensor["module_id"]+"]["+sensor["group_id"]+"]["+sensor["sensor_id"]+"] unable to run "+action+": "+utils.get_exception(e))
# schedule all the sensors
def schedule_all():
# init plugins
init_plugins()
log.info("setting up all the configured sensors")
# for each module
for module in conf["modules"]:
if not module["enabled"]: continue
# skip group without sensors
if "sensors" not in module: continue
for sensor in module["sensors"]:
# check if the sensor is enabled
if not sensor["enabled"]: continue
# initialize the sensor data structure
sensor = init_sensor(sensor)
if sensor is None: continue
# skip sensors without a plugin
if 'plugin' not in sensor: continue
# this plugin needs sensors to be registered with it first
if hasattr(plugins[sensor['plugin']['plugin_name']],'register'):
# register the sensor
log.debug("["+sensor['module_id']+"]["+sensor['group_id']+"]["+sensor['sensor_id']+"] registering with plugin service "+sensor['plugin']['plugin_name'])
plugins[sensor['plugin']['plugin_name']].register(sensor)
# this plugin needs the sensor to be polled
if "polling_interval" in sensor["plugin"]:
# schedule polling
log.debug("["+sensor['module_id']+"]["+sensor['group_id']+"]["+sensor['sensor_id']+"] scheduling polling every "+str(sensor["plugin"]["polling_interval"])+" minutes")
# run it now first
if conf["sensors"]["poll_at_startup"]: schedule.add_job(run,'date',run_date=datetime.datetime.now()+datetime.timedelta(seconds=utils.randint(1,59)),args=[sensor['module_id'],sensor['group_id'],sensor['sensor_id'],'save'])
# then schedule it for each refresh interval
schedule.add_job(run,'cron',minute="*/"+str(sensor["plugin"]["polling_interval"]),second=utils.randint(1,59),args=[sensor['module_id'],sensor['group_id'],sensor['sensor_id'],'save'])
# schedule an expire job every day
schedule.add_job(run,'cron',hour="1",minute="0",second=utils.randint(1,59),args=[sensor['module_id'],sensor['group_id'],sensor['sensor_id'],'expire'])
# schedule a summarize job every hour and every day if needed
if "summarize" in sensor:
log.debug("["+sensor['module_id']+"]["+sensor['group_id']+"]["+sensor['sensor_id']+"] scheduling summary every hour and day")
schedule.add_job(run,'cron',minute="0",second=utils.randint(1,59),args=[sensor['module_id'],sensor['group_id'],sensor['sensor_id'],'summarize_hour'])
schedule.add_job(run,'cron',hour="0",minute="0",second=utils.randint(1,59),args=[sensor['module_id'],sensor['group_id'],sensor['sensor_id'],'summarize_day'])
# start all the plugin services
start_plugins()
# return the latest read of a sensor for a web request
def data_get_current(module_id,group_id,sensor_id):
data = []
sensor = utils.get_sensor(module_id,group_id,sensor_id)
if sensor is None:
log.error("["+module_id+"]["+group_id+"]["+sensor_id+"] sensor not found")
return json.dumps(data)
if "plugin" in sensor and "poll_on_demand" in sensor["plugin"] and sensor["plugin"]["poll_on_demand"]:
# the sensor needs to be polled on demand
run(module_id,group_id,sensor_id,"save")
key = conf["constants"]["db_schema"]["root"]+":"+module_id+":"+group_id+":"+sensor_id
# return the latest measure
data = db.range(key,withscores=False,milliseconds=True,formatter=conf["constants"]["formats"][sensor["format"]]["formatter"])
# if an image, decode it and return it
if sensor["format"] == "image": return base64.b64decode(data[0])
# if a calendar, return the current value
elif sensor["format"] == "calendar": return json.dumps(utils.parse_calendar(data))
else: return json.dumps(data)
# return a calendar's configuration
def data_get_calendar(module_id,group_id,sensor_id):
data = []
sensor = utils.get_sensor(module_id,group_id,sensor_id)
if sensor is None:
log.error("["+module_id+"]["+group_id+"]["+sensor_id+"] sensor not found")
return json.dumps(data)
key = conf["constants"]["db_schema"]["root"]+":"+module_id+":"+group_id+":"+sensor_id
# return the latest measure
data = db.range(key,withscores=False,milliseconds=True,formatter=conf["constants"]["formats"][sensor["format"]]["formatter"])
return json.dumps(data)
# return the latest image of a sensor for a web request
def data_get_current_image(module_id,group_id,sensor_id,night_day):
sensor = utils.get_sensor(module_id,group_id,sensor_id)
if sensor is None:
log.error("["+module_id+"]["+group_id+"]["+sensor_id+"] sensor not found")
return json.dumps("")
data = json.loads(data_get_current(module_id,group_id,sensor_id))
if len(data) == 0: return ""
filename = str(data[0])
if night_day and utils.is_night(): filename = "nt_"+filename
with open(conf["constants"]["web_dir"]+"/images/"+sensor_id+"_"+str(filename)+".png",'r') as file:
data = file.read()
file.close()
return data
# return the time difference between now and the latest measure
def data_get_current_timestamp(module_id,group_id,sensor_id):
data = []
sensor = utils.get_sensor(module_id,group_id,sensor_id)
if sensor is None:
log.error("["+module_id+"]["+group_id+"]["+sensor_id+"] sensor not found")
return json.dumps(data)
key = conf["constants"]["db_schema"]["root"]+":"+module_id+":"+group_id+":"+sensor_id
data = db.range(key,withscores=True,milliseconds=True)
if len(data) > 0: return json.dumps([utils.timestamp_difference(utils.now(),data[0][0]/1000)])
else: return json.dumps(data)
# return the data of a requested sensor based on the timeframe and stat requested
def data_get_data(module_id,group_id,sensor_id,timeframe,stat):
data = []
sensor = utils.get_sensor(module_id,group_id,sensor_id)
if sensor is None:
log.error("["+module_id+"]["+group_id+"]["+sensor_id+"] sensor not found")
return json.dumps(data)
if "plugin" in sensor and "poll_on_demand" in sensor["plugin"] and sensor["plugin"]["poll_on_demand"] and timeframe == "realtime":
# the sensor needs to be polled on demand
run(module_id,group_id,sensor_id,"save")
# get the parameters for the requested timeframe
if timeframe == "realtime":
# recent hourly measures up to now
range = ""
start = utils.realtime()
end = utils.now()
withscores = True
elif timeframe == "recent":
# recent hourly measures up to now
range = ":hour"
start = utils.recent()
end = utils.now()
withscores = True
elif timeframe == "history":
# historical daily measures up to new
range = ":day"
start = utils.history()
end = utils.now()
withscores = True
elif timeframe == "short_history":
# historical daily measures up to new
range = ":day"
start = utils.history(conf["general"]["timeframes"]["short_history_days"])
end = utils.now()
withscores = True
elif timeframe == "today":
# today's measure
range = ":day"
start = utils.day_start(utils.now())
end = utils.day_end(utils.now())
withscores = False
elif timeframe == "yesterday":
# yesterday's measure
range = ":day"
start = utils.day_start(utils.yesterday())
end = utils.day_end(utils.yesterday())
withscores = False
elif timeframe == "forecast":
# next days measures
range = ":day"
start = utils.day_start(utils.now())
end = utils.day_start(utils.now()+(conf["general"]["timeframes"]["forecast_days"]-1)*conf["constants"]["1_day"])
withscores = True
else: return data
# define the key to request
key = conf["constants"]["db_schema"]["root"]+":"+module_id+":"+group_id+":"+sensor_id+range
requested_stat = ":"+stat
# if a range is requested, start asking for the min
if stat == "range": requested_stat = ":min"
if timeframe == "realtime": requested_stat = ""
# request the data
data = db.rangebyscore(key+requested_stat,start,end,withscores=withscores,milliseconds=True,formatter=conf["constants"]["formats"][sensor["format"]]["formatter"])
if stat == "range" and len(data) > 0:
# if a range is requested, ask for the max and combine the results
data_max = db.rangebyscore(key+":max",start,end,withscores=False,milliseconds=True,formatter=conf["constants"]["formats"][sensor["format"]]["formatter"])
for i, item in enumerate(data):
# ensure data_max has a correspondent value
if i < len(data_max):
if (isinstance(item,list)): data[i].append(data_max[i])
else: data.append(data_max[i])
return json.dumps(data)
# set a sensor value
def data_set(module_id,group_id,sensor_id,value,ifnotexists=False):
sensor = utils.get_sensor(module_id,group_id,sensor_id)
if sensor is None:
log.error("["+module_id+"]["+group_id+"]["+sensor_id+"] sensor not found")
return json.dumps("KO")
log.debug("["+module_id+"]["+group_id+"]["+sensor_id+"] value to store: "+str(value))
sensor = init_sensor(sensor)
# prepare the measure
measures = []
measure = {}
measure["key"] = sensor["sensor_id"]
measure["value"] = utils.normalize(value,conf["constants"]["formats"][sensor["format"]]["formatter"])
measures.append(measure)
# store it
store(sensor,measures,ifnotexists=ifnotexists)
return json.dumps("OK")
# send a message to a sensor
def data_send(module_id,group_id,sensor_id,value,force=False):
sensor = utils.get_sensor(module_id,group_id,sensor_id)
if sensor is None:
log.error("["+module_id+"]["+group_id+"]["+sensor_id+"] sensor not found")
return json.dumps("KO")
log.debug("["+module_id+"]["+group_id+"]["+sensor_id+"] sending message: "+str(value))
sensor = init_sensor(sensor)
if not hasattr(plugins[sensor["plugin"]["plugin_name"]], 'send'):
log.error("the plugin "+sensor["plugin"]["plugin_name"]+" does not allow sending messages")
return json.dumps("KO")
try:
try:
# invoke the plugin-specific send function
plugins[sensor["plugin"]["plugin_name"]].send(sensor,value,force=force)
except TypeError:
# not all the plugins support "force", call it without it
plugins[sensor["plugin"]["plugin_name"]].send(sensor,value)
return json.dumps("OK")
except Exception,e:
log.error("unable to send "+str(value)+": "+utils.get_exception(e))
# manually run a command for a sensor
def data_run(module_id,group_id,sensor_id,action):
sensor = utils.get_sensor(module_id,group_id,sensor_id)
if sensor is None:
log.error("["+module_id+"]["+group_id+"]["+sensor_id+"] sensor not found")
return json.dumps("KO")
log.debug("["+module_id+"]["+group_id+"]["+sensor_id+"] executing: "+str(action))
init_plugins()
run(module_id,group_id,sensor_id,action)
return json.dumps("OK")
# allow running it both as a module and when called directly
if __name__ == '__main__':
if len(sys.argv) != 5:
# no arguments provided, schedule all sensors
schedule.start()
schedule_all()
while True:
time.sleep(1)
else:
# run the command for the given sensor
# <module_id> <group_id> <sensor_id> <action>
init_plugins()
sensor = utils.get_sensor(sys.argv[1],sys.argv[2],sys.argv[3])
if sensor is None:
log.info("invalid sensor provided")
else: run(sys.argv[1],sys.argv[2],sys.argv[3],sys.argv[4])