13
13
import json
14
14
15
15
import MySQLdb
16
+ import MySQLdb .cursors
16
17
from MySQLdb .constants import FIELD_TYPE
17
18
18
19
@@ -55,38 +56,42 @@ def connect(self):
55
56
_db_user_name = self ._db_credentials ["username" ]
56
57
_db_user_pass = self ._db_credentials ["password" ]
57
58
58
- my_conv = { FIELD_TYPE .TIMESTAMP : str }
59
-
60
- self .connection = MySQLdb .connect ('127.0.0.1' , _db_user_name , _db_user_pass , _db_name , conv = my_conv )
61
- self .cursor = self .connection .cursor (MySQLdb .cursors .DictCursor )
62
- self .cursor .connection .autocommit (True )
59
+ my_conv = { FIELD_TYPE .TIMESTAMP : str , FIELD_TYPE .FLOAT : float , FIELD_TYPE .TINY : int , FIELD_TYPE .LONG : int , FIELD_TYPE .INT24 : int }
60
+
61
+ logging .debug ("Creating a new connection with the `incubators` db" )
62
+ self .connection = MySQLdb .connect ('localhost' , _db_user_name , _db_user_pass , _db_name , conv = my_conv , cursorclass = MySQLdb .cursors .DictCursor )
63
63
64
64
@staticmethod
65
65
def _timestamp_to_datetime (timestamp ):
66
66
return time .strftime ('%Y-%m-%d %H:%M:%S' , time .gmtime (timestamp ))
67
67
68
68
def insert (self , query ):
69
69
try :
70
- self .cursor .execute (query )
71
- self .connection .commit ()
72
- self .connection .close ()
73
- except :
70
+ with self .connection as cursor :
71
+ cursor .execute (query )
72
+ self .connection .commit ()
73
+
74
+ # For some reason, I often get a "OperationalError: (2006, 'MySQL server has gone away')"
75
+ # Could not debug this - so, as workaround, I create a new connection if the existing one is broken
76
+ # This, however, could result in a dangerous loop if connection keeps dropping
77
+ except (AttributeError , MySQLdb .OperationalError ):
74
78
75
79
self .connect ()
76
- self .cursor .execute (query )
77
- self .connection .commit ()
78
- self .connection .close ()
80
+ self .insert (query )
79
81
80
82
def query (self , query ):
81
- self .connect ()
82
- cursor = self .connection .cursor ( MySQLdb .cursors .DictCursor )
83
- cursor .execute (query )
84
- result = cursor .fetchall ()
85
-
86
- #self.cursor.execute(query)
87
- #result = self.cursor.fetchall()
83
+ try :
84
+
85
+ with self .connection as cursor :
86
+ cursor .execute (query )
87
+ result = cursor .fetchall ()
88
88
89
- self .connection .close ()
89
+ # For some reason, I often get a "OperationalError: (2006, 'MySQL server has gone away')"
90
+ # Could not debug this - so, as workaround, I create a new connection if the existing one is broken
91
+ except (AttributeError , MySQLdb .OperationalError ):
92
+
93
+ self .connect ()
94
+ result = self .query (query )
90
95
91
96
return result
92
97
@@ -149,7 +154,7 @@ def retrieve_last_line(self, incubator):
149
154
else :
150
155
select_query = "SELECT * FROM incubators WHERE id = %s ORDER BY device_time DESC LIMIT 1;" % incubator
151
156
data = self .query (select_query )[0 ]
152
-
157
+
153
158
return data
154
159
155
160
class SerialController (threading .Thread ):
@@ -306,7 +311,7 @@ def getlastData(self, incubator, json_mode=True):
306
311
"""
307
312
"""
308
313
if self ._database :
309
- if json_mode or (incubator != 'all' and incubator >= 0 ):
314
+ if json_mode or (incubator != 'all' and incubator < 0 ):
310
315
return json .dumps (self ._database .retrieve_last_line (incubator ))
311
316
else :
312
317
return self ._database .retrieve_last_line (incubator )
@@ -394,7 +399,7 @@ def sendCommand(self, inc_id, cmd, value):
394
399
def update (self , inc_id , values ):
395
400
"""
396
401
"""
397
- current = self .getlastData ( inc_id )
402
+ current = self .getlastData ( inc_id , json_mode = False )
398
403
399
404
resp = ""
400
405
@@ -404,7 +409,7 @@ def update(self, inc_id, values):
404
409
if values ['set_hum' ] != current ['set_hum' ] :
405
410
if self .sendCommand (inc_id , cmd = 'set_hum' , value = values ['set_hum' ]):
406
411
resp += "Humidity set to %s\n " % values ['set_hum' ]
407
- if values ['set_light' ] != current ['set_light' ] :
412
+ if values ['set_light' ] != int ( current ['set_light' ]) : # why light is not being converted by mysqldb??!
408
413
if self .sendCommand (inc_id , cmd = 'set_light' , value = values ['set_light' ]):
409
414
resp += "Light set to %s\n " % values ['set_light' ]
410
415
if values ['dd_mode' ] != current ['dd_mode' ] :
@@ -459,7 +464,7 @@ def __init__(self, host, port, serial_fetcher):
459
464
def _route (self ):
460
465
self ._app .get ('/' , callback = self ._index )
461
466
self ._app .get ('/serial' , callback = self ._serialmonitor )
462
- self ._app .route ('/graph/<inc_id>' , callback = self ._get_graph , method = ["post" , "get" ])
467
+ self ._app .route ('/graph/<inc_id>/<day> ' , callback = self ._get_graph , method = ["post" , "get" ])
463
468
464
469
self ._app .get ('/json/<inc_id>' , callback = self ._incubator_json )
465
470
self ._app .get ('/incubator/<inc_id>/<days>' , callback = self ._get_incubator )
@@ -487,7 +492,7 @@ def _send_to_serial(self):
487
492
self ._serial_fetcher .sendRaw ( myDict ['line' ] )
488
493
return {"result" : "OK" }
489
494
490
- def _get_graph (self , inc_id ):
495
+ def _get_graph (self , inc_id , day ):
491
496
492
497
rep = {}
493
498
if request .forms .get ("submitted" ):
@@ -502,7 +507,8 @@ def _get_graph(self, inc_id):
502
507
else :
503
508
rep ['message' ] = ''
504
509
505
- rep ['incubator_id' ] = inc_id
510
+ rep ['incubator_id' ] = inc_id
511
+ rep ['day' ] = day
506
512
return template ('static/graph.tpl' , rep )
507
513
508
514
def _incubator_json (self , inc_id = 0 ):
@@ -558,7 +564,6 @@ def transfer_file_to_db(filename, db_credentials):
558
564
logging .debug ("Logger in DEBUG mode" )
559
565
560
566
db_credentials = {'username' : 'incubators' , 'password' : 'incubators' , 'db_name' : 'incubators' }
561
- db = mySQLDatabase (db_credentials )
562
567
563
568
if option_dict ['output' ]:
564
569
serial_fetcher = SerialController (option_dict ["port" ], filename = option_dict ['output' ])
0 commit comments