forked from attwad/python-osc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdispatcher.py
More file actions
336 lines (296 loc) · 13.1 KB
/
dispatcher.py
File metadata and controls
336 lines (296 loc) · 13.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
"""Maps OSC addresses to handler functions"""
import collections
import inspect
import logging
import re
import time
from pythonosc import osc_packet
from typing import (
overload,
List,
Union,
Any,
AnyStr,
Generator,
Tuple,
Callable,
Optional,
DefaultDict,
)
from pythonosc.osc_message import OscMessage
from pythonosc.osc_message_builder import ArgValue
class Handler(object):
"""Wrapper for a callback function that will be called when an OSC message is sent to the right address.
Represents a handler callback function that will be called whenever an OSC message is sent to the address this
handler is mapped to. It passes the address, the fixed arguments (if any) as well as all osc arguments from the
message if any were passed.
"""
def __init__(
self,
_callback: Callable,
_args: Union[Any, List[Any]],
_needs_reply_address: bool = False,
) -> None:
"""
Args:
_callback Function that is called when handler is invoked
_args: Message causing invocation
_needs_reply_address Whether the client's ip address shall be passed as an argument or not
"""
self.callback = _callback
self.args = _args
self.needs_reply_address = _needs_reply_address
# needed for test module
def __eq__(self, other: Any) -> bool:
return (
isinstance(self, type(other))
and self.callback == other.callback
and self.args == other.args
and self.needs_reply_address == other.needs_reply_address
)
def invoke(
self, client_address: Tuple[str, int], message: OscMessage
) -> Union[None, AnyStr, Tuple[AnyStr, ArgValue]]:
"""Invokes the associated callback function
Args:
client_address: Address match that causes the invocation
message: Message causing invocation
Returns:
The result of the handler function can be None, a string OSC address, or a tuple of the OSC address
and arguments.
"""
if self.needs_reply_address:
if self.args:
return self.callback(
client_address, message.address, self.args, *message
)
else:
return self.callback(client_address, message.address, *message)
else:
if self.args:
return self.callback(message.address, self.args, *message)
else:
return self.callback(message.address, *message)
class Dispatcher(object):
"""Maps Handlers to OSC addresses and dispatches messages to the handler on matched addresses
Maps OSC addresses to handler functions and invokes the correct handler when a message comes in.
"""
def __init__(self) -> None:
self._map: DefaultDict[str, List[Handler]] = collections.defaultdict(list)
self._default_handler: Optional[Handler] = None
def map(
self,
address: str,
handler: Callable,
*args: Union[Any, List[Any]],
needs_reply_address: bool = False,
) -> Handler:
"""Map an address to a handler
The callback function must have one of the following signatures:
``def some_cb(address: str, *osc_args: List[Any]) -> Union[None, AnyStr, Tuple(str, ArgValue)]:``
``def some_cb(address: str, fixed_args: List[Any], *osc_args: List[Any]) -> Union[None, AnyStr,
Tuple(str, ArgValue)]:``
``def some_cb(client_address: Tuple[str, int], address: str, *osc_args: List[Any]) -> Union[None, AnyStr,
Tuple(str, ArgValue)]:``
``def some_cb(client_address: Tuple[str, int], address: str, fixed_args: List[Any], *osc_args: List[Any]) -> Union[None, AnyStr, Tuple(str, ArgValue)]:``
The callback function can return None, or a string representing an OSC address to be returned to the client,
or a tuple that includes the address and ArgValue which will be converted to an OSC message and returned to
the client.
Args:
address: Address to be mapped
handler: Callback function that will be called as the handler for the given address
*args: Fixed arguements that will be passed to the callback function
needs_reply_address: Whether the IP address from which the message originated from shall be passed as
an argument to the handler callback
Returns:
The handler object that will be invoked should the given address match
"""
# TODO: Check the spec:
# http://opensoundcontrol.org/spec-1_0
# regarding multiple mappings
handlerobj = Handler(handler, list(args), needs_reply_address)
self._map[address].append(handlerobj)
return handlerobj
@overload
def unmap(self, address: str, handler: Handler) -> None:
"""Remove an already mapped handler from an address
Args:
address (str): Address to be unmapped
handler (Handler): A Handler object as returned from map().
"""
pass
@overload
def unmap(
self,
address: str,
handler: Callable,
*args: Union[Any, List[Any]],
needs_reply_address: bool = False,
) -> None:
"""Remove an already mapped handler from an address
Args:
address: Address to be unmapped
handler: A function that will be run when the address matches with
the OscMessage passed as parameter.
args: Any additional arguments that will be always passed to the
handlers after the osc messages arguments if any.
needs_reply_address: True if the handler function needs the
originating client address passed (as the first argument).
"""
pass
def unmap(self, address, handler, *args, needs_reply_address=False):
try:
if isinstance(handler, Handler):
self._map[address].remove(handler)
else:
self._map[address].remove(
Handler(handler, list(args), needs_reply_address)
)
except ValueError as e:
if str(e) == "list.remove(x): x not in list":
raise ValueError(
f"Address '{address}' doesn't have handler '{handler}' mapped to it"
) from e
def handlers_for_address(
self, address_pattern: str
) -> Generator[Handler, None, None]:
"""Yields handlers matching an address
Args:
address_pattern: Address to match
Returns:
Generator yielding Handlers matching address_pattern
"""
# First convert the address_pattern into a matchable regexp.
# '?' in the OSC Address Pattern matches any single character.
# Let's consider numbers and _ "characters" too here, it's not said
# explicitly in the specification but it sounds good.
escaped_address_pattern = re.escape(address_pattern)
pattern = escaped_address_pattern.replace("\\?", "\\w?")
# '*' in the OSC Address Pattern matches any sequence of zero or more
# characters.
pattern = pattern.replace("\\*", "[\\w|\\+]*")
# The rest of the syntax in the specification is like the re module so
# we're fine.
pattern = f"{pattern}$"
patterncompiled = re.compile(pattern)
matched = False
for addr, handlers in self._map.items():
if patterncompiled.match(addr) or (
("*" in addr)
and re.match(addr.replace("*", "[^/]*?/*"), address_pattern)
):
yield from handlers
matched = True
if not matched and self._default_handler:
logging.debug("No handler matched but default handler present, added it.")
yield self._default_handler
def call_handlers_for_packet(
self, data: bytes, client_address: Tuple[str, int]
) -> List:
"""Invoke handlers for all messages in OSC packet
The incoming OSC Packet is decoded and the handlers for each included message is found and invoked.
Args:
data: Data of packet
client_address: Address of client this packet originated from
Returns: A list of strings or tuples to be converted to OSC messages and returned to the client
"""
results = list()
# Get OSC messages from all bundles or standalone message.
try:
packet = osc_packet.OscPacket(data)
for timed_msg in packet.messages:
now = time.time()
handlers = self.handlers_for_address(timed_msg.message.address)
if not handlers:
continue
# If the message is to be handled later, then so be it.
if timed_msg.time > now:
time.sleep(timed_msg.time - now)
for handler in handlers:
result = handler.invoke(client_address, timed_msg.message)
if result is not None:
results.append(result)
except osc_packet.ParseError:
pass
return results
async def async_call_handlers_for_packet(
self, data: bytes, client_address: Tuple[str, int]
) -> List:
"""
This function calls the handlers registered to the dispatcher for
every message it found in the packet.
The process/thread granularity is thus the OSC packet, not the handler.
If parameters were registered with the dispatcher, then the handlers are
called this way:
handler('/address that triggered the message',
registered_param_list, osc_msg_arg1, osc_msg_arg2, ...)
if no parameters were registered, then it is just called like this:
handler('/address that triggered the message',
osc_msg_arg1, osc_msg_arg2, osc_msg_param3, ...)
"""
# Get OSC messages from all bundles or standalone message.
results = []
try:
packet = osc_packet.OscPacket(data)
for timed_msg in packet.messages:
now = time.time()
handlers = self.handlers_for_address(timed_msg.message.address)
if not handlers:
continue
# If the message is to be handled later, then so be it.
if timed_msg.time > now:
time.sleep(timed_msg.time - now)
for handler in handlers:
if inspect.iscoroutinefunction(handler.callback):
if handler.needs_reply_address:
result = await handler.callback(
client_address,
timed_msg.message.address,
handler.args,
*timed_msg.message,
)
elif handler.args:
result = await handler.callback(
timed_msg.message.address,
handler.args,
*timed_msg.message,
)
else:
result = await handler.callback(
timed_msg.message.address, *timed_msg.message
)
else:
if handler.needs_reply_address:
result = handler.callback(
client_address,
timed_msg.message.address,
handler.args,
*timed_msg.message,
)
elif handler.args:
result = handler.callback(
timed_msg.message.address,
handler.args,
*timed_msg.message,
)
else:
result = handler.callback(
timed_msg.message.address, *timed_msg.message
)
if result:
results.append(result)
except osc_packet.ParseError as e:
pass
return results
def set_default_handler(
self, handler: Callable, needs_reply_address: bool = False
) -> None:
"""Sets the default handler
The default handler is invoked every time no other handler is mapped to an address.
Args:
handler: Callback function to handle unmapped requests
needs_reply_address: Whether the callback shall be passed the client address
"""
self._default_handler = (
None if (handler is None) else Handler(handler, [], needs_reply_address)
)