summaryrefslogtreecommitdiff
path: root/kvmd/plugins/hid/otg/device.py
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2020-02-08 03:34:43 +0300
committerDevaev Maxim <[email protected]>2020-02-08 03:34:43 +0300
commit635cfc7d9e3b57eee608c34f789ed6a7bfec8962 (patch)
treefacabdb816f6d302188d859e49c8a825241aabd0 /kvmd/plugins/hid/otg/device.py
parent301e58148e5b2140e2a9e96dbaa04b27d6bd8b6e (diff)
fixed hid ensuring
Diffstat (limited to 'kvmd/plugins/hid/otg/device.py')
-rw-r--r--kvmd/plugins/hid/otg/device.py37
1 files changed, 22 insertions, 15 deletions
diff --git a/kvmd/plugins/hid/otg/device.py b/kvmd/plugins/hid/otg/device.py
index fbd91f59..7da6dd18 100644
--- a/kvmd/plugins/hid/otg/device.py
+++ b/kvmd/plugins/hid/otg/device.py
@@ -75,25 +75,19 @@ class BaseDeviceProcess(multiprocessing.Process): # pylint: disable=too-many-in
while not self.__stop_event.is_set():
try:
while not self.__stop_event.is_set():
- passed = 0
try:
- event: BaseEvent = self.__events_queue.get(timeout=0.05)
+ event: BaseEvent = self.__events_queue.get(timeout=1)
except queue.Empty:
- if passed >= 20: # 20 * 0.05 = 1 sec
- self._ensure_device() # Check device
- passed = 0
- else:
- passed += 1
+ self.__ensure_device() # Check device
else:
self._process_event(event)
- passed = 0
except Exception:
logger.exception("Unexpected HID-%s error", self.__name)
- self._close_device()
+ self.__close_device()
finally:
time.sleep(1)
- self._close_device()
+ self.__close_device()
def is_online(self) -> bool:
return bool(self.__online_shared.value and self.is_alive())
@@ -111,7 +105,20 @@ class BaseDeviceProcess(multiprocessing.Process): # pylint: disable=too-many-in
def _queue_event(self, event: BaseEvent) -> None:
self.__events_queue.put(event)
- def _write_report(self, report: bytes) -> bool:
+ def _ensure_write(self, report: bytes, reopen: bool=False, close: bool=False) -> bool:
+ if reopen:
+ self.__close_device()
+ try:
+ if self.__ensure_device():
+ return self.__write_report(report)
+ return False
+ finally:
+ if close:
+ self.__close_device()
+
+ # =====
+
+ def __write_report(self, report: bytes) -> bool:
if self.__noop:
return True
@@ -141,10 +148,10 @@ class BaseDeviceProcess(multiprocessing.Process): # pylint: disable=too-many-in
logger.debug("HID-%s write retries left: %d", self.__name, retries)
time.sleep(self.__write_retries_delay)
- self._close_device()
+ self.__close_device()
return False
- def _ensure_device(self) -> bool:
+ def __ensure_device(self) -> bool:
if self.__noop:
return True
@@ -168,12 +175,12 @@ class BaseDeviceProcess(multiprocessing.Process): # pylint: disable=too-many-in
logger.debug("HID-%s is busy/unplugged (select)", self.__name)
except Exception as err:
logger.error("Can't select() HID-%s: %s: %s", self.__name, type(err).__name__, err)
- self._close_device()
+ self.__close_device()
self.__online_shared.value = 0
return False
- def _close_device(self) -> None:
+ def __close_device(self) -> None:
if self.__fd >= 0:
try:
os.close(self.__fd)