projects
/
saartuer.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
status report command introduced
[saartuer.git]
/
tysock.py
diff --git
a/tysock.py
b/tysock.py
index 11b5183b735c757f5740f73303106ce4cdfeca64..b987567168bd9ca93a23e3ff0252b76a3f0d9c2d 100644
(file)
--- a/
tysock.py
+++ b/
tysock.py
@@
-27,6
+27,10
@@
class TySocket():
CMDs = {
b'buzz': StateMachine.CMD_BUZZ,
b'unlock': StateMachine.CMD_UNLOCK,
CMDs = {
b'buzz': StateMachine.CMD_BUZZ,
b'unlock': StateMachine.CMD_UNLOCK,
+ b'lock': StateMachine.CMD_LOCK,
+ b'fallback_mode_on': StateMachine.CMD_FALLBACK_ON,
+ b'fallback_mode_off': StateMachine.CMD_FALLBACK_OFF,
+ b'status': StateMachine.CMD_STATUS,
}
def __init__(self, sm):
}
def __init__(self, sm):
@@
-69,10
+73,14
@@
class TySocket():
if data in self.CMDs:
self._sm.callback(self.CMDs[data], self._answer(conn))
# _answer will be called, and it will close the connection
if data in self.CMDs:
self._sm.callback(self.CMDs[data], self._answer(conn))
# _answer will be called, and it will close the connection
+ continue # make sure we break so we don't close it
else:
waynesend(conn, 'Command not found')
else:
waynesend(conn, 'Command not found')
- conn.close()
except KeyboardInterrupt:
raise # forward Ctrl-C to the outside
except KeyboardInterrupt:
raise # forward Ctrl-C to the outside
+ except socket.timeout:
+ # it's okay
+ logger.info("TySocket: Connection timed out")
except Exception as e:
logger.critical("TySocket: Something went wrong: %s" % str(e))
except Exception as e:
logger.critical("TySocket: Something went wrong: %s" % str(e))
+ conn.close()