Skip to content

Commit 9548d38

Browse files
committed
Trying using two different connections for SQL: one writing only for the serial fetcher and one reading only for the WEB
1 parent f0a932b commit 9548d38

File tree

1 file changed

+59
-74
lines changed

1 file changed

+59
-74
lines changed

smart_incubator/server/smart_controller.py

+59-74
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#from pymysql.constants import FIELD_TYPE
2424

2525

26-
class mySQLDatabase():
26+
class mySQLConnection():
2727
"""
2828
MariaDB [(none)]> CREATE DATABASE incubators;
2929
MariaDB [(none)]> CREATE USER 'incubators'@'localhost' IDENTIFIED BY 'incubators';
@@ -56,16 +56,16 @@ class mySQLDatabase():
5656
5757
"""
5858

59-
def __init__(self, db_credentials):
59+
def __init__(self, DB_CREDENTIALS):
6060

61-
self._db_credentials = db_credentials
61+
self._DB_CREDENTIALS = DB_CREDENTIALS
6262
self.connect()
6363

6464
def connect(self):
6565

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"]
6969

7070
my_conv = { FIELD_TYPE.TIMESTAMP: str, FIELD_TYPE.FLOAT: float, FIELD_TYPE.TINY: int, FIELD_TYPE.LONG: int, FIELD_TYPE.INT24: int }
7171

@@ -74,6 +74,8 @@ def connect(self):
7474
self.connection = MySQLdb.connect('localhost', _db_user_name, _db_user_pass, _db_name, conv=my_conv, cursorclass=MySQLdb.cursors.DictCursor)
7575
except:
7676
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)
7779

7880
@staticmethod
7981
def _timestamp_to_datetime(timestamp):
@@ -83,7 +85,7 @@ def insert(self, query):
8385
try:
8486
with self.connection as cursor:
8587
cursor.execute(query)
86-
self.connection.commit()
88+
#self.connection.commit()
8789

8890
# For some reason, I often get a "OperationalError: (2006, 'MySQL server has gone away')"
8991
# 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):
174176
return data
175177

176178
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):
178180
"""
179181
"""
180182
if port is None:
@@ -195,8 +197,8 @@ def __init__(self, port=None, baud=115200, filename=None, db_credentials=None):
195197

196198
self._filename = filename
197199

198-
if db_credentials:
199-
self._database = mySQLDatabase(db_credentials)
200+
if DB_CREDENTIALS:
201+
self._database = mySQLConnection(DB_CREDENTIALS)
200202

201203
time.sleep(1)
202204

@@ -322,20 +324,6 @@ def _write_row_to_file(self, fields):
322324
self._writer.writerow(fields)
323325
fh.close()
324326

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)
339327

340328
def getSerialBuffer(self):
341329
"""
@@ -365,18 +353,6 @@ def getlastDataFromBuffer(self, incubator, json_mode=True):
365353
return row
366354
return None
367355

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-
380356
def sendRaw(self, line):
381357
"""
382358
"""
@@ -415,36 +391,7 @@ def sendCommand(self, inc_id, cmd, value):
415391
#return False
416392
return True
417393

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+
448395
def run(self):
449396
"""
450397
"""
@@ -477,10 +424,10 @@ class webServer(Bottle):
477424
def __init__(self, serial_port):
478425
super(webServer, self).__init__()
479426

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)
482428
self._serial_fetcher.start() # starting the serial fetcher thread
483429

430+
self._database = mySQLConnection(DB_CREDENTIALS)
484431
self._route()
485432

486433
def _route(self):
@@ -522,7 +469,7 @@ def _get_graph(self, inc_id, day):
522469
values['dd_mode'] = int(request.forms.get("dd_mode"))
523470
values['lights_on'] = int(request.forms.get("lights_on"))
524471
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)
526473
else:
527474
rep['message'] = ''
528475

@@ -540,12 +487,50 @@ def _incubator_json(self, inc_id=0):
540487
data = {'result': ''.join(serial) }
541488
return data
542489
else:
543-
return self._serial_fetcher.getlastData(inc_id)
490+
return self.getlastData(inc_id)
544491

545492
def _get_incubator(self, inc_id, days):
546493

547-
data = self._serial_fetcher.getHistory(inc_id, days)
494+
data = self._database.retrieve_day(incubator, days)
548495
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+
549534

550535
def _listen_to_serial(self, status=True):
551536
"""
@@ -560,7 +545,7 @@ def _listen_to_serial(self, status=True):
560545
def _quit(self):
561546
os._exit(1)
562547

563-
def transfer_file_to_db(filename, db_credentials):
548+
def transfer_file_to_db(filename, DB_CREDENTIALS):
564549

565550
with open(filename, "r") as fh:
566551
for line in fh.readlines()[1:]:
@@ -582,12 +567,12 @@ def transfer_file_to_db(filename, db_credentials):
582567
logging.getLogger().setLevel(logging.DEBUG)
583568
logging.debug("Logger in DEBUG mode")
584569

585-
#db_credentials = {'username': 'incubators', 'password' : 'incubators', 'db_name' : 'incubators' }
570+
DB_CREDENTIALS = {'username': 'incubators', 'password' : 'incubators', 'db_name' : 'incubators' }
586571

587572
#if option_dict['output']:
588573
# serial_fetcher = SerialController(option_dict["port"], filename=option_dict['output'])
589574
#else:
590-
# serial_fetcher = SerialController(option_dict["port"], db_credentials=db_credentials)
575+
# serial_fetcher = SerialController(option_dict["port"], DB_CREDENTIALS=DB_CREDENTIALS)
591576

592577

593578
if option_dict['web']:

0 commit comments

Comments
 (0)