23
23
#from pymysql.constants import FIELD_TYPE
24
24
25
25
26
- class mySQLDatabase ():
26
+ class mySQLConnection ():
27
27
"""
28
28
MariaDB [(none)]> CREATE DATABASE incubators;
29
29
MariaDB [(none)]> CREATE USER 'incubators'@'localhost' IDENTIFIED BY 'incubators';
@@ -56,16 +56,16 @@ class mySQLDatabase():
56
56
57
57
"""
58
58
59
- def __init__ (self , db_credentials ):
59
+ def __init__ (self , DB_CREDENTIALS ):
60
60
61
- self ._db_credentials = db_credentials
61
+ self ._DB_CREDENTIALS = DB_CREDENTIALS
62
62
self .connect ()
63
63
64
64
def connect (self ):
65
65
66
- _db_name = self ._db_credentials ["db_name" ]
67
- _db_user_name = self ._db_credentials ["username" ]
68
- _db_user_pass = self ._db_credentials ["password" ]
66
+ _db_name = self ._DB_CREDENTIALS ["db_name" ]
67
+ _db_user_name = self ._DB_CREDENTIALS ["username" ]
68
+ _db_user_pass = self ._DB_CREDENTIALS ["password" ]
69
69
70
70
my_conv = { FIELD_TYPE .TIMESTAMP : str , FIELD_TYPE .FLOAT : float , FIELD_TYPE .TINY : int , FIELD_TYPE .LONG : int , FIELD_TYPE .INT24 : int }
71
71
@@ -74,6 +74,8 @@ def connect(self):
74
74
self .connection = MySQLdb .connect ('localhost' , _db_user_name , _db_user_pass , _db_name , conv = my_conv , cursorclass = MySQLdb .cursors .DictCursor )
75
75
except :
76
76
self .connection = pymysql .connect ('localhost' , _db_user_name , _db_user_pass , _db_name , conv = my_conv , cursorclass = pymysql .cursors .DictCursor )
77
+
78
+ self .connection .autocommit (True )
77
79
78
80
@staticmethod
79
81
def _timestamp_to_datetime (timestamp ):
@@ -83,7 +85,7 @@ def insert(self, query):
83
85
try :
84
86
with self .connection as cursor :
85
87
cursor .execute (query )
86
- self .connection .commit ()
88
+ # self.connection.commit()
87
89
88
90
# For some reason, I often get a "OperationalError: (2006, 'MySQL server has gone away')"
89
91
# Could not debug this - so, as workaround, I create a new connection if the existing one is broken
@@ -174,7 +176,7 @@ def retrieve_last_line(self, incubator):
174
176
return data
175
177
176
178
class SerialController (threading .Thread ):
177
- def __init__ (self , port = None , baud = 115200 , filename = None , db_credentials = None ):
179
+ def __init__ (self , port = None , baud = 115200 , filename = None ):
178
180
"""
179
181
"""
180
182
if port is None :
@@ -195,8 +197,8 @@ def __init__(self, port=None, baud=115200, filename=None, db_credentials=None):
195
197
196
198
self ._filename = filename
197
199
198
- if db_credentials :
199
- self ._database = mySQLDatabase ( db_credentials )
200
+ if DB_CREDENTIALS :
201
+ self ._database = mySQLConnection ( DB_CREDENTIALS )
200
202
201
203
time .sleep (1 )
202
204
@@ -322,20 +324,6 @@ def _write_row_to_file(self, fields):
322
324
self ._writer .writerow (fields )
323
325
fh .close ()
324
326
325
- def getHistory (self , incubator ,days = 0 ):
326
- """
327
- """
328
- if self ._database :
329
- return self ._database .retrieve_day (incubator , days )
330
-
331
- def getlastData (self , incubator , json_mode = True ):
332
- """
333
- """
334
- if self ._database :
335
- if json_mode or (incubator != 'all' and incubator < 0 ):
336
- return json .dumps (self ._database .retrieve_last_line (incubator ))
337
- else :
338
- return self ._database .retrieve_last_line (incubator )
339
327
340
328
def getSerialBuffer (self ):
341
329
"""
@@ -365,18 +353,6 @@ def getlastDataFromBuffer(self, incubator, json_mode=True):
365
353
return row
366
354
return None
367
355
368
- def __iter__ (self ):
369
- """
370
- """
371
- while True :
372
- serial_line = self ._serial .readline ()
373
-
374
- fields = self ._parse_serial_line (serial_line )
375
- if fields is None :
376
- continue
377
- self ._sync_time ( fields ["inc_id" ], fields ["device_time" ])
378
- yield fields
379
-
380
356
def sendRaw (self , line ):
381
357
"""
382
358
"""
@@ -415,36 +391,7 @@ def sendCommand(self, inc_id, cmd, value):
415
391
#return False
416
392
return True
417
393
418
-
419
-
420
- def update (self , inc_id , values ):
421
- """
422
- """
423
- current = self .getlastData ( inc_id , json_mode = False )
424
-
425
- resp = ""
426
-
427
- if values ['set_temp' ] != current ['set_temp' ] :
428
- if self .sendCommand (inc_id , cmd = 'set_temp' , value = values ['set_temp' ]):
429
- resp += "Temperature set to %s\n " % values ['set_temp' ]
430
- if values ['set_hum' ] != current ['set_hum' ] :
431
- if self .sendCommand (inc_id , cmd = 'set_hum' , value = values ['set_hum' ]):
432
- resp += "Humidity set to %s\n " % values ['set_hum' ]
433
- if values ['set_light' ] != int (current ['set_light' ]) : # why light is not being converted by mysqldb??!
434
- if self .sendCommand (inc_id , cmd = 'set_light' , value = values ['set_light' ]):
435
- resp += "Light set to %s\n " % values ['set_light' ]
436
- if values ['dd_mode' ] != current ['dd_mode' ] :
437
- if self .sendCommand (inc_id , cmd = 'dd_mode' , value = values ['dd_mode' ]):
438
- resp += "Light Regime set to %s\n " % values ['dd_mode' ]
439
- if values ['lights_on' ] != current ['lights_on' ] :
440
- if self .sendCommand (inc_id , cmd = 'lights_on' , value = values ['lights_on' ]):
441
- resp += "Lights on set to %s\n " % values ['lights_on' ]
442
- if values ['lights_off' ] != current ['lights_off' ] :
443
- if self .sendCommand (inc_id , cmd = 'lights_off' , value = values ['lights_off' ]):
444
- resp += "Lights off set to %s\n " % values ['lights_off' ]
445
-
446
- return resp
447
-
394
+
448
395
def run (self ):
449
396
"""
450
397
"""
@@ -477,10 +424,10 @@ class webServer(Bottle):
477
424
def __init__ (self , serial_port ):
478
425
super (webServer , self ).__init__ ()
479
426
480
- db_credentials = {'username' : 'incubators' , 'password' : 'incubators' , 'db_name' : 'incubators' }
481
- self ._serial_fetcher = SerialController (serial_port , db_credentials = db_credentials )
427
+ self ._serial_fetcher = SerialController (serial_port )
482
428
self ._serial_fetcher .start () # starting the serial fetcher thread
483
429
430
+ self ._database = mySQLConnection (DB_CREDENTIALS )
484
431
self ._route ()
485
432
486
433
def _route (self ):
@@ -522,7 +469,7 @@ def _get_graph(self, inc_id, day):
522
469
values ['dd_mode' ] = int (request .forms .get ("dd_mode" ))
523
470
values ['lights_on' ] = int (request .forms .get ("lights_on" ))
524
471
values ['lights_off' ] = int (request .forms .get ("lights_off" ))
525
- rep ['message' ] = self ._serial_fetcher . update (inc_id , values )
472
+ rep ['message' ] = self .update (inc_id , values )
526
473
else :
527
474
rep ['message' ] = ''
528
475
@@ -540,12 +487,50 @@ def _incubator_json(self, inc_id=0):
540
487
data = {'result' : '' .join (serial ) }
541
488
return data
542
489
else :
543
- return self ._serial_fetcher . getlastData (inc_id )
490
+ return self .getlastData (inc_id )
544
491
545
492
def _get_incubator (self , inc_id , days ):
546
493
547
- data = self ._serial_fetcher . getHistory ( inc_id , days )
494
+ data = self ._database . retrieve_day ( incubator , days )
548
495
return json .dumps (data )
496
+
497
+ def getlastData (self , incubator , json_mode = True ):
498
+ """
499
+ """
500
+ if json_mode or (incubator != 'all' and incubator < 0 ):
501
+ return json .dumps (self ._database .retrieve_last_line (incubator ))
502
+ else :
503
+ return self ._database .retrieve_last_line (incubator )
504
+
505
+
506
+ def update (self , inc_id , values ):
507
+ """
508
+ """
509
+ current = self .getlastData ( inc_id , json_mode = False )
510
+
511
+ resp = ""
512
+
513
+ if values ['set_temp' ] != current ['set_temp' ] :
514
+ if self .sendCommand (inc_id , cmd = 'set_temp' , value = values ['set_temp' ]):
515
+ resp += "Temperature set to %s\n " % values ['set_temp' ]
516
+ if values ['set_hum' ] != current ['set_hum' ] :
517
+ if self .sendCommand (inc_id , cmd = 'set_hum' , value = values ['set_hum' ]):
518
+ resp += "Humidity set to %s\n " % values ['set_hum' ]
519
+ if values ['set_light' ] != int (current ['set_light' ]) : # why light is not being converted by mysqldb??!
520
+ if self .sendCommand (inc_id , cmd = 'set_light' , value = values ['set_light' ]):
521
+ resp += "Light set to %s\n " % values ['set_light' ]
522
+ if values ['dd_mode' ] != current ['dd_mode' ] :
523
+ if self .sendCommand (inc_id , cmd = 'dd_mode' , value = values ['dd_mode' ]):
524
+ resp += "Light Regime set to %s\n " % values ['dd_mode' ]
525
+ if values ['lights_on' ] != current ['lights_on' ] :
526
+ if self .sendCommand (inc_id , cmd = 'lights_on' , value = values ['lights_on' ]):
527
+ resp += "Lights on set to %s\n " % values ['lights_on' ]
528
+ if values ['lights_off' ] != current ['lights_off' ] :
529
+ if self .sendCommand (inc_id , cmd = 'lights_off' , value = values ['lights_off' ]):
530
+ resp += "Lights off set to %s\n " % values ['lights_off' ]
531
+
532
+ return resp
533
+
549
534
550
535
def _listen_to_serial (self , status = True ):
551
536
"""
@@ -560,7 +545,7 @@ def _listen_to_serial(self, status=True):
560
545
def _quit (self ):
561
546
os ._exit (1 )
562
547
563
- def transfer_file_to_db (filename , db_credentials ):
548
+ def transfer_file_to_db (filename , DB_CREDENTIALS ):
564
549
565
550
with open (filename , "r" ) as fh :
566
551
for line in fh .readlines ()[1 :]:
@@ -582,12 +567,12 @@ def transfer_file_to_db(filename, db_credentials):
582
567
logging .getLogger ().setLevel (logging .DEBUG )
583
568
logging .debug ("Logger in DEBUG mode" )
584
569
585
- #db_credentials = {'username': 'incubators', 'password' : 'incubators', 'db_name' : 'incubators' }
570
+ DB_CREDENTIALS = {'username' : 'incubators' , 'password' : 'incubators' , 'db_name' : 'incubators' }
586
571
587
572
#if option_dict['output']:
588
573
# serial_fetcher = SerialController(option_dict["port"], filename=option_dict['output'])
589
574
#else:
590
- # serial_fetcher = SerialController(option_dict["port"], db_credentials=db_credentials )
575
+ # serial_fetcher = SerialController(option_dict["port"], DB_CREDENTIALS=DB_CREDENTIALS )
591
576
592
577
593
578
if option_dict ['web' ]:
0 commit comments