Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: threadsafe waiting queue #301

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

allenporter
Copy link
Contributor

@allenporter allenporter commented Jan 21, 2025

Make the waiting queue a threadsafe queue.

This attempts to push the protocol to be a request key, but it seems to have odd interactions with local clients that munge the protocol. Will do some testing on a live system before marking ready for review. Parts of this may end up getting reverted.

Issue #228

@allenporter allenporter marked this pull request as draft January 21, 2025 05:51
@@ -53,15 +54,19 @@ async def send_message(self, roborock_message: RoborockMessage):
response_protocol = request_id + 1
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this trying to set the response protocol to the next thing, e.g. HELLO_REQUEST to HELLO_RESPONSE? I think it ends up munging things up and i can't tell what this is trying to do.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes
I believe that it might be a mapping for dps request and response. But since I didn't have that I noticed that the response protocol was always a number higher

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK great, maybe i can figure out another way to use the new protocol types. I'll think about this more and maybe:
(1) Add some tests to exercise these cases explicitly
(2) address first as a separate change
(3) come back to this

_LOGGER.debug("Putting request key %s in the queue", request_key)
with self._lock:
if request_key in self._queue:
raise ValueError(f"Request key {request_key} already exists in the queue")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe this should be a subclass of RoborockException for easier error handling?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My thinking is that if this happens its a bug/shouldn't happen case and so it shouldn't be treated like a server side error. My thinking is: what do we expect a caller to do to handle this?

@Lash-L
Copy link
Collaborator

Lash-L commented Feb 11, 2025

@allenporter - do you want me to do a full review on this? Or is it still a WIP?

@allenporter
Copy link
Contributor Author

@allenporter - do you want me to do a full review on this? Or is it still a WIP?

Still WIP -- I am worried the +1 logic commented above is not quite right and may raise exceptions.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants