Skip to content

Oscmap

OSCMap

OSCMap maps OSC messages to functions It creates a Max/MSP patcher that can be used to control the OSCMap It uses OSCSendUpdater and OSCReceiveUpdater to decouple incoming messages

Source code in src/tolvera/osc/oscmap.py
 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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
class OSCMap:
    """
    OSCMap maps OSC messages to functions
    It creates a Max/MSP patcher that can be used to control the OSCMap
    It uses OSCSendUpdater and OSCReceiveUpdater to decouple incoming messages
    """

    def __init__(
        self,
        osc: iiOSC,
        client_name="client",
        patch_type="Max",  # | "Pd"
        patch_filepath="osc_controls",
        create_patch=True,
        pd_net_or_udp="udp",
        pd_bela=False,
        export=None,  # 'JSON' | 'XML' | True
    ) -> None:
        self.osc = osc
        self.client_name = client_name
        self.client_address, self.client_port = self.osc.client_names[self.client_name]
        self.dict = {"send": {}, "receive": {}}
        self.create_patch = create_patch
        self.patch_filepath = patch_filepath
        self.patch_type = patch_type
        if create_patch is True:
            self.init_patcher(patch_type, patch_filepath, pd_net_or_udp, pd_bela)
        if export is not None:
            assert (
                export == "JSON" or export == "XML" or export == True
            ), "export must be 'JSON', 'XML' or True"
        self.export = export

    def init_patcher(self, patch_type, patch_filepath, pd_net_or_udp, pd_bela):
        # create self.patch_dir if it doesn't exist
        self.patch_dir = "pd" if patch_type == "Pd" else "max"
        if not os.path.exists(self.patch_dir):
            print(f"Creating {self.patch_dir} directory...")
            os.makedirs(self.patch_dir)
        self.patch_appendix = "_local" if self.osc.host == "127.0.0.1" else "_remote"
        self.patch_filepath = (
            self.patch_dir + "/" + patch_filepath + self.patch_appendix
        )
        if patch_type == "Max":
            self.patcher = MaxPatcher(self.osc, self.client_name, self.patch_filepath)
        elif patch_type == "Pd":
            if pd_bela is True:
                self.patcher = PdPatcher(
                    self.osc,
                    self.client_name,
                    self.patch_filepath,
                    net_or_udp=pd_net_or_udp,
                    bela=True,
                )
            else:
                self.patcher = PdPatcher(
                    self.osc,
                    self.client_name,
                    self.patch_filepath,
                    net_or_udp=pd_net_or_udp,
                )
        else:
            assert False, "`patch_type` must be 'Max' or 'Pd'"

    def add(self, **kwargs):
        print(
            "DeprecationError: OSCMap.add() has been split into separate functions: use `send_args`, `send_list`, `receive_args` or `receive_list` instead!"
        )
        exit()

    def map_func_to_dict(self, func, kwargs):
        if "name" not in kwargs:
            n = func.__name__
            address = "/" + n.replace("_", "/")
        else:
            if isinstance(kwargs["name"], str):
                n = kwargs["name"]
                address = "/" + kwargs["name"].replace("_", "/")
            else:
                raise TypeError(
                    f"OSC func name must be string, found {str(type(kwargs['name']))}"
                )
        # TODO: Move this into specific send/receive functions
        params = {
            k: v
            for k, v in kwargs.items()
            if k != "count" and k != "send_mode" and k != "length" and k != "name"
        }
        # TODO: turn params into dict with type hints (see export_dict)
        hints = get_type_hints(func)
        f = {"f": func, "name": n, "address": address, "params": params, "hints": hints}
        return f

    """
    send args
    """

    def send_args(self, **kwargs):
        def decorator(func):
            def wrapper(*args):
                self.add_send_args(func, kwargs)
                return func()

            default_args = [
                kwargs[a][0]
                for a in kwargs
                if a != "count" and a != "send_mode" and a != "name"
            ]
            wrapper(*default_args)
            return wrapper

        return decorator

    def add_send_args(self, func, kwargs):
        self.add_send_args_to_osc_map(func, kwargs)
        if self.create_patch is True:
            self.add_send_args_to_patcher(func)

    def add_send_args_to_osc_map(self, func, kwargs):
        f = self.map_func_to_dict(func, kwargs)
        if kwargs["send_mode"] == "broadcast":
            f["updater"] = OSCSendUpdater(
                self.osc,
                f["address"],
                f=func,
                count=kwargs["count"],
                client=self.client_name,
            )
        else:
            f["sender"] = OSCSend(
                self.osc,
                f["address"],
                f=func,
                # count=kwargs["count"],
                client=self.client_name,
            )
        f["type"] = "args"
        self.dict["send"][f["name"]] = f
        if self.export is not None:
            self.export_dict()

    def add_send_args_to_patcher(self, func):
        f = self.dict["send"][func.__name__]
        self.patcher.send_args_func(f)

    """
    send list
    """

    def send_list(self, **kwargs):
        def decorator(func):
            def wrapper(*args):
                self.add_send_list(func, kwargs)
                # TODO: This was originally here to sync defaults with client
                # but it causes init order isses in IMLFun2OSC.update
                # return func()

            default_arg = [
                kwargs[a][0]
                for a in kwargs
                if a != "count" and a != "send_mode" and a != "length" and a != "name"
            ]
            wrapper(default_arg)
            return wrapper

        return decorator

    def add_send_list(self, func, kwargs):
        self.add_send_list_to_osc_map(func, kwargs)
        if self.create_patch is True:
            self.add_send_list_to_patcher(func)

    def add_send_list_to_osc_map(self, func, kwargs):
        f = self.map_func_to_dict(func, kwargs)
        # TODO: Hack for send_list_inline which doesn't have a return type hint
        if "return" in f["hints"]:
            hint = f["hints"]["return"]
        else:
            hint = list[float]
        assert hint == list[float], "send_list can only send list[float], found " + str(
            hint
        )
        if kwargs["send_mode"] == "broadcast":
            f["updater"] = OSCSendUpdater(
                self.osc,
                f["address"],
                f=func,
                count=kwargs["count"],
                client=self.client_name,
            )
        else:
            f["sender"] = OSCSend(
                self.osc,
                f["address"],
                f=func,
                count=kwargs["count"],
                client=self.client_name,
            )
        f["type"] = "list"
        f["length"] = kwargs["length"]
        self.dict["send"][f["name"]] = f
        if self.export is not None:
            self.export_dict()

    def add_send_list_to_patcher(self, func):
        f = self.dict["send"][func.__name__]
        self.patcher.send_list_func(f)

    def send_list_inline(self, name: str, sender_func, length: int, send_mode="broadcast", count=1, **kwargs):
        kwargs = {**kwargs, **{"name": name, "length": length, "send_mode": send_mode, "count": count}}
        self.send_list(**kwargs)(sender_func)

    """
    send kwargs
    """

    def send_kwargs(self, **kwargs):
        raise NotImplementedError("send_kwargs not implemented yet")

    """
    receive args
    """

    def receive_args(self, **kwargs):
        def decorator(func):
            def wrapper(*args):
                self.add_receive_args(func, kwargs)
                return func(*args)

            default_args = [
                kwargs[a][0] for a in kwargs if a != "count" and a != "name"
            ]
            wrapper(*default_args)
            return wrapper

        return decorator

    def add_receive_args(self, func, kwargs):
        f = self.add_receive_args_to_osc_map(func, kwargs)
        if self.create_patch is True:
            self.add_receive_args_to_patcher(f)

    def add_receive_args_to_osc_map(self, func, kwargs):
        f = self.map_func_to_dict(func, kwargs)
        f["updater"] = OSCReceiveUpdater(
            self.osc, f["address"], f=func, count=kwargs["count"]
        )
        f["type"] = "args"
        self.dict["receive"][f["name"]] = f
        return f

    def add_receive_args_to_patcher(self, func):
        f = self.dict["receive"][func["name"]]
        self.patcher.receive_args_func(f)

    def receive_args_inline(self, name: str, receiver_func, **kwargs):
        kwargs = {**kwargs, **{"count": 1, "name": name}}
        self.receive_args(**kwargs)(receiver_func)

    """
    receive list
    """

    def receive_list(self, **kwargs):
        def decorator(func):
            def wrapper(*args):
                self.add_receive_list(func, kwargs)
                # TODO: This was originally here to sync defaults with client
                # but it causes init order isses in IMLOSC2Vec.init
                # return func(*args)

            # TODO: This probably shouldn't be here...
            randomised_list = self.randomise_list(
                kwargs["length"], kwargs["vector"][1], kwargs["vector"][2]
            )
            wrapper(randomised_list)
            return wrapper

        return decorator

    def randomise_list(self, length, min, max):
        return min + (np.random.rand(length).astype(np.float32) * (max - min))

    def add_receive_list(self, func, kwargs):
        f = self.add_receive_list_to_osc_map(func, kwargs)
        if self.create_patch is True:
            self.add_receive_list_to_patcher(f)

    def add_receive_list_to_osc_map(self, func, kwargs):
        """
        TODO: Should this support list[float] only, or list[int] list[str] etc?
        """
        f = self.map_func_to_dict(func, kwargs)
        assert (
            len(f["params"]) == 1
        ), "receive_list can only receive one param (list[float])"
        hint = f["hints"][list(f["params"].keys())[0]]
        assert (
            hint == list[float]
        ), "receive_list can only receive list[float], found " + str(hint)
        f["updater"] = OSCReceiveListUpdater(
            self.osc, f["address"], f=func, count=kwargs["count"]
        )
        f["type"] = "list"
        f["length"] = kwargs["length"]
        self.dict["receive"][f["name"]] = f
        if self.export is not None:
            self.export_dict()
        return f

    def add_receive_list_to_patcher(self, func):
        f = self.dict["receive"][func["name"]]
        self.patcher.receive_list_func(f)

    def receive_list_inline(self, name: str, receiver_func, length: int, count=1, **kwargs):
        kwargs = {**kwargs, **{"name": name, "length": length, "count": count, "vector": (0, 0, 1)}}
        self.receive_list(**kwargs)(receiver_func)

    def receive_list_with_idx(
        self, name: str, receiver, idx_len: int, vec_len: int, attr=None
    ):
        """
        Create an OSC list handler that assumes that the first `idx_len` values are indices into some struct being modified by a receiver function, and the rest are args as a list, i.e.
            /name idx0 idx1 ... idxN arg0 arg1 ... argM
            ...
            receiver((idx0 idx1 ... idxN), args)
        Intended as a utility function to be used by external classes where it's not possible to use a decorator like `receive_list`.
        """

        def handler(vector: list[float]):
            arg_len = len(vector[idx_len:])
            assert (
                arg_len == vec_len
            ), f"len(args) != len(list) ({arg_len} != {vec_len})"
            if idx_len:
                indices = tuple([int(v) for v in vector[:idx_len]])
                if attr is None:
                    receiver(indices, vector[idx_len:])
                else:
                    receiver(indices, attr, vector[idx_len:])
            else:
                if attr is None:
                    receiver(vector)
                else:
                    receiver(attr, vector)

        kwargs = {
            "vector": (0, 0, 1),
            "length": vec_len + idx_len,
            "count": 1,
            "name": name,
        }
        self.receive_list(**kwargs)(handler)

    """
    receive kwargs
    """

    def receive_kwargs(self, **kwargs):
        """
        Same as receive_args but with named params
        """
        raise NotImplementedError("receive_kwargs not implemented yet")

    """
    xml / json export
    """

    def export_dict(self):
        """
        Save the OSCMap dict as XML
        """
        client_ip, client_port = self.osc.client_names[self.client_name]
        # TODO: This should be defined in the OSCMap dict / on init
        metadata = {
            "HostIP": self.osc.host,
            "HostPort": str(self.osc.port),
            "ClientName": self.client_name,
            "ClientIP": client_ip,
            "ClientPort": str(client_port),
        }
        root = ET.Element("OpenSoundControlSchema")
        metadata_element = ET.SubElement(root, "Metadata", **metadata)
        sends = self.dict["send"]
        receives = self.dict["receive"]
        for io in ["Send", "Receive"]:
            ET.SubElement(root, io)
        for io in ["send", "receive"]:
            for name in self.dict[io]:
                f = self.dict[io][name]
                if f["type"] == "args":
                    self.xml_add_args_params(root, name, io, f)
                elif f["type"] == "list":
                    self.xml_add_list_param(root, name, io, f)
                elif f["type"] == "kwargs":
                    raise NotImplementedError("kwargs not implemented yet")
        self.export_update(root)

    def xml_add_args_params(self, root, name, io, f):
        params = f["params"]
        hints = f["hints"]
        kw = {
            "Address": "/" + name.replace("_", "/"),
            "Type": f["type"],
            "Params": str(len(params)),
        }
        route = ET.SubElement(root.find(io.capitalize()), "Route", **kw)
        for i, p in enumerate(params):
            # TODO: This should already be defined by this point
            if io == "receive":
                p_type = hints[p].__name__
            elif io == "send":
                p_type = hints["return"].__args__[i].__name__
            kw = {
                "Name": p,
                "Type": p_type,
                "Default": str(params[p][0]),
                "Min": str(params[p][1]),
                "Max": str(params[p][2]),
            }
            ET.SubElement(route, "Param", **kw)

    def xml_add_list_param(self, root, name, io, f):
        params = f["params"]
        hints = f["hints"]
        length = f["length"]
        kw = {
            "Address": "/" + name.replace("_", "/"),
            "Type": f["type"],
            "Length": str(length),
        }
        route = ET.SubElement(root.find(io.capitalize()), "Route", **kw)
        p = list(params.keys())[0]
        if io == "receive":
            p_type = hints[p].__name__
        elif io == "send":
            p_type = hints["return"].__args__[0].__name__
        kw = {
            "Name": p,
            "Type": p_type,
            "Default": str(params[p][0]),
            "Min": str(params[p][1]),
            "Max": str(params[p][2]),
        }
        ET.SubElement(route, "ParamList", **kw)

    def export_update(self, root):
        tree = ET.ElementTree(root)
        ET.indent(tree, space="\t", level=0)
        if self.export == "XML":
            self.save_xml(tree, root)
        elif self.export == "JSON":
            self.save_json(root)
        elif self.export == True:
            self.save_xml(tree, root)
            self.save_json(root)

    def save_xml(self, tree, root):
        tree.write(self.patch_filepath + ".xml")
        print(f"Exported OSCMap to {self.patch_filepath}.xml")

    def save_json(self, xml_root):
        # TODO: params should be `params: []` and not `param: {}, param: {}, ...`
        json_dict = self.xml_to_json(
            ET.tostring(xml_root, encoding="utf8", method="xml")
        )
        with open(self.patch_filepath + ".json", "w") as f:
            f.write(json_dict)
        print(f"Exported OSCMap to {self.patch_filepath}.json")

    def etree_to_dict(self, t):
        tag = self.pascal_to_camel(t.tag)
        d = {tag: {} if t.attrib else None}
        children = list(t)
        if children:
            dd = {}
            for dc in map(self.etree_to_dict, children):
                for k, v in dc.items():
                    try:
                        dd[k].append(v)
                    except KeyError:
                        dd[k] = [v]
            d = {tag: {k: v[0] if len(v) == 1 else v for k, v in dd.items()}}
        if t.attrib:
            d[tag].update((self.pascal_to_camel(k), v) for k, v in t.attrib.items())
        if t.text:
            text = t.text.strip()
            if children or t.attrib:
                if text:
                    d[tag]["#text"] = text
            else:
                d[tag] = text
        return d

    def pascal_to_camel(self, s):
        return s[0].lower() + s[1:]

    def xml_to_json(self, xml_str):
        e = ET.ElementTree(ET.fromstring(xml_str))
        return json.dumps(self.etree_to_dict(e.getroot()), indent=4)

    def update(self):
        for k, v in self.dict["send"].items():
            if "updater" in v:
                ret = v["updater"]()
            # v['updater']()
        for k, v in self.dict["receive"].items():
            v["updater"]()

    def __call__(self, *args: Any, **kwds: Any) -> Any:
        self.update()

add_receive_list_to_osc_map(func, kwargs)

TODO: Should this support list[float] only, or list[int] list[str] etc?

Source code in src/tolvera/osc/oscmap.py
def add_receive_list_to_osc_map(self, func, kwargs):
    """
    TODO: Should this support list[float] only, or list[int] list[str] etc?
    """
    f = self.map_func_to_dict(func, kwargs)
    assert (
        len(f["params"]) == 1
    ), "receive_list can only receive one param (list[float])"
    hint = f["hints"][list(f["params"].keys())[0]]
    assert (
        hint == list[float]
    ), "receive_list can only receive list[float], found " + str(hint)
    f["updater"] = OSCReceiveListUpdater(
        self.osc, f["address"], f=func, count=kwargs["count"]
    )
    f["type"] = "list"
    f["length"] = kwargs["length"]
    self.dict["receive"][f["name"]] = f
    if self.export is not None:
        self.export_dict()
    return f

export_dict()

Save the OSCMap dict as XML

Source code in src/tolvera/osc/oscmap.py
def export_dict(self):
    """
    Save the OSCMap dict as XML
    """
    client_ip, client_port = self.osc.client_names[self.client_name]
    # TODO: This should be defined in the OSCMap dict / on init
    metadata = {
        "HostIP": self.osc.host,
        "HostPort": str(self.osc.port),
        "ClientName": self.client_name,
        "ClientIP": client_ip,
        "ClientPort": str(client_port),
    }
    root = ET.Element("OpenSoundControlSchema")
    metadata_element = ET.SubElement(root, "Metadata", **metadata)
    sends = self.dict["send"]
    receives = self.dict["receive"]
    for io in ["Send", "Receive"]:
        ET.SubElement(root, io)
    for io in ["send", "receive"]:
        for name in self.dict[io]:
            f = self.dict[io][name]
            if f["type"] == "args":
                self.xml_add_args_params(root, name, io, f)
            elif f["type"] == "list":
                self.xml_add_list_param(root, name, io, f)
            elif f["type"] == "kwargs":
                raise NotImplementedError("kwargs not implemented yet")
    self.export_update(root)

receive_kwargs(**kwargs)

Same as receive_args but with named params

Source code in src/tolvera/osc/oscmap.py
def receive_kwargs(self, **kwargs):
    """
    Same as receive_args but with named params
    """
    raise NotImplementedError("receive_kwargs not implemented yet")

receive_list_with_idx(name, receiver, idx_len, vec_len, attr=None)

Create an OSC list handler that assumes that the first idx_len values are indices into some struct being modified by a receiver function, and the rest are args as a list, i.e. /name idx0 idx1 ... idxN arg0 arg1 ... argM ... receiver((idx0 idx1 ... idxN), args) Intended as a utility function to be used by external classes where it's not possible to use a decorator like receive_list.

Source code in src/tolvera/osc/oscmap.py
def receive_list_with_idx(
    self, name: str, receiver, idx_len: int, vec_len: int, attr=None
):
    """
    Create an OSC list handler that assumes that the first `idx_len` values are indices into some struct being modified by a receiver function, and the rest are args as a list, i.e.
        /name idx0 idx1 ... idxN arg0 arg1 ... argM
        ...
        receiver((idx0 idx1 ... idxN), args)
    Intended as a utility function to be used by external classes where it's not possible to use a decorator like `receive_list`.
    """

    def handler(vector: list[float]):
        arg_len = len(vector[idx_len:])
        assert (
            arg_len == vec_len
        ), f"len(args) != len(list) ({arg_len} != {vec_len})"
        if idx_len:
            indices = tuple([int(v) for v in vector[:idx_len]])
            if attr is None:
                receiver(indices, vector[idx_len:])
            else:
                receiver(indices, attr, vector[idx_len:])
        else:
            if attr is None:
                receiver(vector)
            else:
                receiver(attr, vector)

    kwargs = {
        "vector": (0, 0, 1),
        "length": vec_len + idx_len,
        "count": 1,
        "name": name,
    }
    self.receive_list(**kwargs)(handler)