@@ -116,6 +116,23 @@ def retrieve_day(self, incubator, days=0, full=False):
116
116
data = self .query (select_query )
117
117
return data
118
118
119
+ def getAllIDs (self ):
120
+ """
121
+ """
122
+ select_query = "SELECT DISTINCT(id) as id FROM incubators ORDER BY id ASC;"
123
+ data = self .query (select_query )
124
+ return [i ['id' ] for i in data ]
125
+
126
+ def retrieve_last_line (self , incubator ):
127
+ """
128
+ """
129
+ if incubator == 'all' or incubator < 0 :
130
+ select_query = "SELECT * FROM incubators.incubators WHERE device_time IN (SELECT MAX(device_time) FROM incubators.incubators GROUP BY id) ORDER BY id;"
131
+ else :
132
+ select_query = "SELECT * FROM incubators WHERE id = %s ORDER BY device_time DESC LIMIT 1;" % incubator
133
+
134
+ data = self .query (select_query )
135
+ return data
119
136
120
137
class SerialController (threading .Thread ):
121
138
def __init__ (self , port = None , baud = 115200 , filename = None , db_credentials = None ):
@@ -132,7 +149,9 @@ def __init__(self, port=None, baud=115200, filename=None, db_credentials=None):
132
149
self ._delta_time_threshold = 15 # we sync time when and only when device had drifter more than this value (seconds)
133
150
self ._dd_mode_map = {0 :'DD' , 1 :'LD' , 2 :'LL' , 3 :'DL' , 4 :'MM' }
134
151
135
- self ._datatail = collections .deque (maxlen = 100 ) #keeps last 100 lines in memory
152
+ self ._datatail = collections .deque (maxlen = 100 ) #keeps last 100 lines in memory as dict
153
+ self ._serial_queue = collections .deque (maxlen = 100 ) #keeps last 100 lines in memory as raw lines
154
+
136
155
self ._is_stopped = False
137
156
138
157
self ._filename = filename
@@ -265,8 +284,21 @@ def getHistory(self, incubator,days=0):
265
284
if self ._database :
266
285
return self ._database .retrieve_day (incubator , days )
267
286
268
-
269
287
def getlastData (self , incubator , json_mode = True ):
288
+ """
289
+ """
290
+ if self ._database :
291
+ if json_mode :
292
+ return json .dumps (self ._database .retrieve_last_line (incubator ))
293
+ else :
294
+ return self ._database .retrieve_last_line (incubator )
295
+
296
+ def getSerialBuffer (self ):
297
+ """
298
+ """
299
+ return self ._serial_queue
300
+
301
+ def getlastDataFromBuffer (self , incubator , json_mode = True ):
270
302
"""
271
303
"""
272
304
if incubator == "all" or incubator < 0 :
@@ -301,6 +333,15 @@ def __iter__(self):
301
333
self ._sync_time ( fields ["id" ], fields ["device_time" ])
302
334
yield fields
303
335
336
+ def sendRaw (self , line ):
337
+ """
338
+ """
339
+ line = line .strip ().encode ('ascii' )
340
+ logging .debug ("Sending " + line )
341
+ self ._serial .write (line + '\n ' )
342
+ return True
343
+
344
+
304
345
def sendCommand (self , inc_id , cmd , value ):
305
346
"""
306
347
"""
@@ -365,15 +406,21 @@ def run(self):
365
406
"""
366
407
while not self ._is_stopped :
367
408
serial_line = self ._serial .readline ()
409
+ self ._serial_queue .append (serial_line )
410
+
368
411
fields = self ._parse_serial_line (serial_line )
369
412
if fields is None :
370
413
continue
371
414
372
415
self ._sync_time ( fields ["id" ], fields ["device_time" ])
373
- self ._datatail .append (fields ) # a queue is kept for frequent access of recent events
416
+
417
+
418
+ if self ._filename :
419
+ self ._write_row_to_file (fields )
420
+ self ._datatail .append (fields )
374
421
375
- if self ._filename : self . _write_row_to_file ( fields )
376
- elif self . _database : self ._database .insert_row (fields )
422
+ elif self ._database :
423
+ self ._database .insert_row (fields )
377
424
378
425
379
426
@@ -392,22 +439,35 @@ def __init__(self, host, port, serial_fetcher):
392
439
self ._serial_fetcher .start ()
393
440
394
441
def _route (self ):
395
- self ._app .route ('/' , method = "GET" , callback = self ._index )
396
- self ._app .route ('/static/<filepath:path>' , callback = self ._get_static )
397
- self ._app .route ('/json/<inc_id>' , callback = self ._incubator_json )
398
- self ._app .route ('/incubator/<inc_id>/<days>' , callback = self ._get_incubator )
442
+ self ._app .get ('/' , callback = self ._index )
443
+ self ._app .get ('/serial' , callback = self ._serialmonitor )
399
444
self ._app .route ('/graph/<inc_id>' , callback = self ._get_graph , method = ["post" , "get" ])
400
- self ._app .route ('/listen/<status>' , callback = self ._listen_to_serial )
401
- self ._app .route ('/quit' , callback = self ._quit )
445
+
446
+ self ._app .get ('/json/<inc_id>' , callback = self ._incubator_json )
447
+ self ._app .get ('/incubator/<inc_id>/<days>' , callback = self ._get_incubator )
448
+
449
+ self ._app .post ('/send' , callback = self ._send_to_serial )
450
+
451
+ self ._app .get ('/static/<filepath:path>' , callback = self ._get_static )
452
+ self ._app .get ('/listen/<status>' , callback = self ._listen_to_serial )
453
+ self ._app .get ('/quit' , callback = self ._quit )
402
454
403
455
def start (self ):
404
456
self ._app .run (host = self ._host , port = self ._port )
405
457
458
+ def _get_static (self , filepath ):
459
+ return static_file (filepath , root = "./static" )
460
+
406
461
def _index (self ):
407
462
return static_file ('index.html' , root = "static" )
463
+
464
+ def _serialmonitor (self ):
465
+ return static_file ('serialmonitor.html' , root = "static" )
408
466
409
- def _get_static (self , filepath ):
410
- return static_file (filepath , root = "./static" )
467
+ def _send_to_serial (self ):
468
+ myDict = request .json ['myDict' ]
469
+ self ._serial_fetcher .sendRaw ( myDict ['line' ] )
470
+ return {"result" : "OK" }
411
471
412
472
def _get_graph (self , inc_id ):
413
473
@@ -428,7 +488,16 @@ def _get_graph(self, inc_id):
428
488
return template ('static/graph.tpl' , rep )
429
489
430
490
def _incubator_json (self , inc_id = 0 ):
431
- return self ._serial_fetcher .getlastData (inc_id )
491
+ """
492
+ """
493
+ if inc_id == 'serial' :
494
+
495
+ serial = list (self ._serial_fetcher .getSerialBuffer ())
496
+ serial .reverse ()
497
+ data = {'result' : '' .join (serial ) }
498
+ return data
499
+ else :
500
+ return self ._serial_fetcher .getlastData (inc_id )
432
501
433
502
def _get_incubator (self , inc_id , days ):
434
503
0 commit comments