-
Notifications
You must be signed in to change notification settings - Fork 111
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
Dynamically adding mappings #107
Comments
Interesting use case, we'd need to make dispatcher thread-safe by using a threading.Lock around dispatcher._map. |
I could have a look at it, but are you sure this is a threading issue? As far as I can tell, both the iteration over the dict (dispatcher.py:193) and the callback function that modifies the dict ( |
I couldn't find anything dispositive in the python documentation but from what I can tell from looking at it with Process Explorer on Win10 it doesn't seem that vanilla generators spawn another thread. I think the reason this line,
I haven't tested it but what I think is happening is that is that when the iteration resumes from, It is essentially the same error as caused by the following code albeit in a more roundabout way:
I only found this project today and I really haven't dug too deep but from a cursory examination it looks like it might be possible to change |
thanks for the investigation, if you can confirm with a local change that tuples do not produce that error then we could change to that, there's little reason to use generators over tuples currently. |
I can indeed confirm that replacing the line python-osc/pythonosc/dispatcher.py Line 161 in 7f00183
for addr, handlers in tuple(self._map.items()): makes the example code above run without errors and behave as intended.
|
Sorry. I think the last paragraph of my last comment has lead to some confusion. Changing the line
I was floating the notion that it might make sense to:
But I really don't know the code base well enough to know if removing the generator based code is feasible or to make suggestions concerning thread safety. |
Alright, if getting rid of generators makes it work in a single thread let's do that, we can add locks later if people want to make the dispatcher threadsafe (we can create another issue for that). FYI I'm going away for 2 weeks, I will have little to no connectivity so please bare with the slow review if you send a PR, thanks. |
Hello,
I'm porting a project from python2 to python3 where there's a need to dynamically add new handlers to an OSC server while it's still running. Currently, this causes a runtime error, see example below:
Sending a message to
/new_callback
causes the following error:Would it be possible to solve this somehow?
The text was updated successfully, but these errors were encountered: