Fixes
This commit is contained in:
parent
44890aced6
commit
fc904f42bf
1 changed files with 23 additions and 15 deletions
|
@ -1,6 +1,5 @@
|
|||
import asyncio
|
||||
from typing import Optional
|
||||
|
||||
import logging
|
||||
|
||||
class ActionQueue:
|
||||
def __init__(self) -> None:
|
||||
|
@ -9,23 +8,32 @@ class ActionQueue:
|
|||
self.queue_task = asyncio.create_task(self.run_queue())
|
||||
self.idle_action_task = None
|
||||
|
||||
def __del___(self):
|
||||
self.queue_task.cancel()
|
||||
|
||||
if self.idle_action_task is not None:
|
||||
self.idle_action_task.cancel()
|
||||
|
||||
async def run_queue(self):
|
||||
# try:
|
||||
while True:
|
||||
if self.queued_actions.empty() and self.idle_action[0] is not None:
|
||||
self.idle_action_task = asyncio.create_task(self.idle_action[0](*(self.idle_action[1]), **(self.idle_action[2])))
|
||||
try:
|
||||
if self.queued_actions.empty() and self.idle_action[0] is not None:
|
||||
self.idle_action_task = asyncio.create_task(self.idle_action[0](*(self.idle_action[1]), **(self.idle_action[2])))
|
||||
|
||||
action = await self.queued_actions.get()
|
||||
action = await self.queued_actions.get()
|
||||
|
||||
if self.idle_action_task is not None:
|
||||
self.idle_action_task.cancel()
|
||||
self.idle_action_task = None
|
||||
if self.idle_action_task is not None:
|
||||
self.idle_action_task.cancel()
|
||||
self.idle_action_task = None
|
||||
|
||||
if action is not None: # If none -> Is idle action update
|
||||
await action[0](*(action[1]), **(action[2]))
|
||||
if action is not None: # If none -> Is idle action update
|
||||
try:
|
||||
await action[0](*(action[1]), **(action[2]))
|
||||
except Exception as ex:
|
||||
logging.exception("Something went wrong during execution of action.", ex)
|
||||
|
||||
# except:
|
||||
# pass
|
||||
except Exception as ex:
|
||||
logging.exception("Something went wrong in queue task.", ex)
|
||||
|
||||
async def add_action_to_queue(self, action, *args, **kwargs):
|
||||
await self.queued_actions.put((action, args, kwargs))
|
||||
|
|
Loading…
Reference in a new issue