forked from mwicat/python2-osc
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathosc_message.py
More file actions
85 lines (68 loc) · 2.55 KB
/
osc_message.py
File metadata and controls
85 lines (68 loc) · 2.55 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
"""Representation of an OSC message in a pythonesque way."""
import logging
from pythonosc.parsing import osc_types
class ParseError(Exception):
"""Base exception raised when a datagram parsing error occurs."""
class OscMessage(object):
"""Representation of a parsed datagram representing an OSC message.
An OSC message consists of an OSC Address Pattern followed by an OSC
Type Tag String followed by zero or more OSC Arguments.
"""
def __init__(self, dgram):
self._dgram = dgram
self._parameters = []
self._parse_datagram()
def _parse_datagram(self):
try:
self._address_regexp, index = osc_types.get_string(self._dgram, 0)
if not self._dgram[index:]:
# No params is legit, just return now.
return
# Get the parameters types.
type_tag, index = osc_types.get_string(self._dgram, index)
if type_tag.startswith(','):
type_tag = type_tag[1:]
# Parse each parameter given its type.
for param in type_tag:
if param == "i": # Integer.
val, index = osc_types.get_int(self._dgram, index)
elif param == "f": # Float.
val, index = osc_types.get_float(self._dgram, index)
elif param == "s": # String.
val, index = osc_types.get_string(self._dgram, index)
elif param == "b": # Blob.
val, index = osc_types.get_blob(self._dgram, index)
elif param == "T": # True.
val = True
elif param == "F": # False.
val = False
# TODO: Support more exotic types as described in the specification.
else:
logging.warning('Unhandled parameter type: {0}'.format(param))
continue
self._parameters.append(val)
except osc_types.ParseError as pe:
raise ParseError('Found incorrect datagram, ignoring it', pe)
@property
def address(self):
"""Returns the OSC address regular expression."""
return self._address_regexp
@staticmethod
def dgram_is_message(dgram):
"""Returns whether this datagram starts as an OSC message."""
return dgram.startswith(b'/')
@property
def size(self):
"""Returns the length of the datagram for this message."""
return len(self._dgram)
@property
def dgram(self):
"""Returns the datagram from which this message was built."""
return self._dgram
@property
def params(self):
"""Convenience method for list(self) to get the list of parameters."""
return list(self)
def __iter__(self):
"""Returns an iterator over the parameters of this message."""
return iter(self._parameters)