Timout handling for lirc client implemented

This commit is contained in:
Dirk Alders 2022-09-12 13:11:28 +01:00
parent 1f591b6ca3
commit 934992d275

View File

@ -2,7 +2,7 @@ import config
import json import json
import lirc import lirc
import logging import logging
import paho.mqtt.client as mqtt import paho.mqtt.client as paho
import report import report
import socket import socket
import time import time
@ -16,10 +16,12 @@ logger = logging.getLogger(ROOT_LOGGER_NAME).getChild('main')
class remote_control(object): class remote_control(object):
def __init__(self): def __init__(self):
self.__lirc_client__ = lirc.Client() self.__lirc_client__ = None
self.__lirc_init__()
#
self.__start_data__ = None self.__start_data__ = None
# #
self.__client__ = mqtt.Client(config.APP_NAME) # create client object self.__client__ = paho.Client(config.APP_NAME) # create client object
self.__client__.on_message = self.__receive__ # attach function to callback self.__client__.on_message = self.__receive__ # attach function to callback
self.__client__.username_pw_set(config.MQTT_USER, config.MQTT_PASS) # login with credentials self.__client__.username_pw_set(config.MQTT_USER, config.MQTT_PASS) # login with credentials
try: try:
@ -33,6 +35,13 @@ class remote_control(object):
except (socket.timeout, OSError) as e: except (socket.timeout, OSError) as e:
logger.warning("Erro while setting up mqtt instance and listener") logger.warning("Erro while setting up mqtt instance and listener")
def __lirc_init__(self):
if self.__lirc_client__ is not None:
logger.info("Closing crashed lirc client instance")
self.__lirc_client__.close()
logger.info("Initiating lirc connection")
self.__lirc_client__ = lirc.Client()
def __receive__(self, client, userdata, message): def __receive__(self, client, userdata, message):
try: try:
payload = json.loads(message.payload) payload = json.loads(message.payload)
@ -41,6 +50,7 @@ class remote_control(object):
# #
remote = message.topic.split("/")[-2] remote = message.topic.split("/")[-2]
command = message.topic.split("/")[-1] command = message.topic.split("/")[-1]
#
if payload is None: if payload is None:
if self.__start_data__ is not None: if self.__start_data__ is not None:
self.__send_stop__(*self.__start_data__) self.__send_stop__(*self.__start_data__)
@ -62,23 +72,31 @@ class remote_control(object):
def __send_once__(self, remote, command): def __send_once__(self, remote, command):
try: try:
self.__lirc_client__.send_once(remote, command) self.__lirc_client__.send_once(remote, command)
except TimeoutError: except (TimeoutError, socket.timeout) as e:
logger.exception("Timeout-Error while sending IR-Command.") self.__lirc_timeout_error__()
logger.info("Sending once: %s to %s.", command, remote) else:
logger.info("Sending once: %s to %s.", command, remote)
def __send_start__(self, remote, command): def __send_start__(self, remote, command):
try: try:
self.__lirc_client__.send_start(remote, command) self.__lirc_client__.send_start(remote, command)
except TimeoutError: except (TimeoutError, socket.timeout) as e:
logger.exception("Timeout-Error while sending IR-Command.") self.__lirc_timeout_error__()
logger.info("Sending start: %s to %s.", command, remote) else:
logger.info("Sending start: %s to %s.", command, remote)
def __send_stop__(self, remote, command): def __send_stop__(self, remote, command):
try: try:
self.__lirc_client__.send_stop(remote, command) self.__lirc_client__.send_stop(remote, command)
except TimeoutError: except (TimeoutError, socket.timeout) as e:
logger.exception("Timeout-Error while sending IR-Command.") self.__lirc_timeout_error__()
logger.info("Sending stop: %s to %s.", command, remote) else:
logger.info("Sending stop: %s to %s.", command, remote)
def __lirc_timeout_error__(self):
logger.error("Timeout-Error while sending IR-Command.")
self.__lirc_init__()
if __name__ == '__main__': if __name__ == '__main__':
report.appLoggingConfigure(config.__BASEPATH__, config.LOGTARGET, ((config.APP_NAME, config.LOGLVL), ), fmt=config.formatter, host=config.LOGHOST, port=config.LOGPORT) report.appLoggingConfigure(config.__BASEPATH__, config.LOGTARGET, ((config.APP_NAME, config.LOGLVL), ), fmt=config.formatter, host=config.LOGHOST, port=config.LOGPORT)