-
Notifications
You must be signed in to change notification settings - Fork 30
/
testbench.py
executable file
·495 lines (389 loc) · 13.3 KB
/
testbench.py
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
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
#!/usr/bin/env python
import optparse
from OSC import *
from OSC import _readString, _readFloat, _readInt
def testStreamingServerAndClient(listen_address):
""" Testbench for streaming OSC code (OSC over TCP).
We do not have to test the message generation etc. here. This is the job of
other tests. Therefore we start a server and a client and send some
messages around and make sure that bothe shut down cleanly. Then we
terminate the whole testbench.
"""
message = OSCMessage("/print")
message += [44, 11, 4.5, "the white cliffs of dover"]
strings = OSCMessage("/prin{ce,t}")
strings += ["Mary", "had", "a", "little", "lamb", 14.5, -400]
blob = OSCMessage("/pri*")
blob.append("","b")
blob.append("b","b")
blob.append("blob","b")
blob.append("blobs","b")
blob.append(42)
print1 = OSCMessage("/print")
print1.append("Hey man, that's cool.")
print1.append(42)
print1.append(3.1415926)
bundle = OSCBundle()
bundle.append(print1)
bundle.append({'addr':"/print", 'args':["bundled messages:", 2]})
bundle.setAddress("/*print")
bundle.append(("no,", 3, "actually."))
print "\nInstantiating OSCStreamingServer:"
# define a message-handler function for the server to call.
def printing_handler(addr, tags, stuff, source):
msg_string = "%s [%s] %s" % (addr, tags, str(stuff))
msg_string = "SERVER: Got '%s' from %s" % (msg_string, getUrlStr(source))
print msg_string
# send a reply to the client.
msg = OSCMessage("/printed")
msg.append(msg_string)
return msg
# define a message-handler function for the server to call.
def info_handler(addr, tags, stuff, source):
print "SERVER: Info ", addr
def default_handler(addr, tags, stuff, source):
print "SERVER: No handler registered for ", addr
return None
class DemoOSCStreamRequestHandler(OSCStreamRequestHandler):
""" A basic OSC connection/stream handler. For each connection the
server instantiates a new object of this type. A reference to the
server is available under self.server but it must be payed attention
to multi threading design guide lines to avoid corrupted data and
race conditions (the shared variable in this example
"""
def setupAddressSpace(self):
self.addMsgHandler("/exit", self.exit_handler)
self.addMsgHandler("/print", printing_handler)
self.addMsgHandler("/info", info_handler)
self.addMsgHandler("default", default_handler)
print "SERVER: Address space:"
for addr in self.getOSCAddressSpace():
print addr
def exit_handler(self, addr, tags, stuff, source):
print "SERVER: EXIT ", addr
self.server.run = False
return None
class DemoServer(OSCStreamingServerThreading):
RequestHandlerClass = DemoOSCStreamRequestHandler
def __init__(self, listen_address):
OSCStreamingServerThreading.__init__(self, listen_address)
self.run = True
s = DemoServer(listen_address)
print s
print "Starting ", s
s.start()
# Instantiate OSCClient
print "Instantiating OSCStreamingClient:"
def printed_handler(addr, tags, stuff, source):
print "CLIENT: Printed Handler: ", addr
def broadcast_handler(addr, tags, stuff, source):
print "CLIENT: Broadcast Handler: ", addr
c = OSCStreamingClient()
c.connect(listen_address)
c.addMsgHandler("/printed", printed_handler)
c.addMsgHandler("/broadcast", broadcast_handler)
print "\nSending Messages"
print2 = print1.copy()
print2.setAddress('/noprint')
for m in (message, print1, print2, strings, bundle):
print "sending: ", m
c.sendOSC(m)
time.sleep(0.1)
print "\nThe next message's address will match both the '/print' and '/printed' handlers..."
print "sending: ", blob
c.sendOSC(blob)
time.sleep(0.1)
print "\nBundles can be given a timestamp.\nThe receiving server should 'hold' the bundle until its time has come"
waitbundle = OSCBundle("/print")
waitbundle.setTimeTag(time.time() + 5)
waitbundle.append("Note how the (single-thread) server blocks while holding this bundle")
print "Set timetag 5 s into the future"
print "sending: ", waitbundle
c.sendOSC(waitbundle)
time.sleep(0.1)
print "Recursing bundles, with timetags set to 10 s [25 s, 20 s, 10 s]"
bb = OSCBundle("/print")
bb.setTimeTag(time.time() + 1)
b = OSCBundle("/print")
b.setTimeTag(time.time() + 3)
b.append("held for 3 sec")
bb.append(b)
b.clearData()
b.setTimeTag(time.time() + 5)
b.append("held for 5 sec")
bb.append(b)
b.clearData()
b.setTimeTag(time.time() + 4)
b.append("held for 4 sec")
bb.append(b)
print "sending: ", bb
c.sendOSC(bb)
time.sleep(0.1)
try:
# we let the server run autonomously for some seconds
count = 6
while s.run :
time.sleep(1)
# test broadcasting to all connected clients
msg = OSCMessage("/broadcast")
msg.append(count)
s.broadcastToClients(msg)
msg = OSCMessage("/print")
msg.append(count)
c.sendOSC(msg)
count -= 1
if count == 0:
# send termination message (test context message handlers)
msg = OSCMessage("/exit")
c.sendOSC(msg)
except KeyboardInterrupt:
print "Interrupted."
print "Closing client"
c.close()
print "Closing server"
# make sure server receiving thread is scheduled before we close the server
# so that it can recognize, that the client disconnected itself
time.sleep(1)
s.stop()
print "Done. Arrivederci!"
sys.exit()
###############################################################################
## MAIN TESTBENCH
###############################################################################
if __name__ == "__main__":
default_port = 2222
# define command-line options
op = optparse.OptionParser(description="OSC.py OpenSoundControl-for-Python Test Program")
op.add_option("-l", "--listen", dest="listen",
help="listen on given host[:port]. default = '0.0.0.0:%d'" % default_port)
op.add_option("-s", "--sendto", dest="sendto",
help="send to given host[:port]. default = '127.0.0.1:%d'" % default_port)
op.add_option("-t", "--threading", action="store_true", dest="threading",
help="Test ThreadingOSCServer")
op.add_option("-f", "--forking", action="store_true", dest="forking",
help="Test ForkingOSCServer")
op.add_option("-u", "--usage", action="help", help="show this help message and exit")
op.add_option("-c", "--streaming", action="store_true", dest="streaming",
help="Test streaming OSC (OSC over TCP)")
op.set_defaults(listen=":%d" % default_port)
op.set_defaults(sendto="")
op.set_defaults(threading=False)
op.set_defaults(forking=False)
op.set_defaults(streaming=False)
# Parse args
(opts, args) = op.parse_args()
addr, server_prefix = parseUrlStr(opts.listen)
if addr != None and addr[0] != None:
if addr[1] != None:
listen_address = addr
else:
listen_address = (addr[0], default_port)
else:
listen_address = ('', default_port)
targets = {}
for trg in opts.sendto.split(','):
(addr, prefix) = parseUrlStr(trg)
if len(prefix):
(prefix, filters) = parseFilterStr(prefix)
else:
filters = {}
if addr != None:
if addr[1] != None:
targets[addr] = [prefix, filters]
else:
targets[(addr[0], listen_address[1])] = [prefix, filters]
elif len(prefix) or len(filters):
targets[listen_address] = [prefix, filters]
# If the user selected the streaming test...
if opts.streaming:
testStreamingServerAndClient(listen_address)
sys.exit(0)
welcome = "Welcome to the OSC testing program."
print welcome
hexDump(welcome)
print
message = OSCMessage()
message.setAddress("/print")
message.append(44)
message.append(11)
message.append(4.5)
message.append("the white cliffs of dover")
print message
hexDump(message.getBinary())
print "\nMaking and unmaking a message.."
strings = OSCMessage("/prin{ce,t}")
strings.append("Mary had a little lamb")
strings.append("its fleece was white as snow")
strings.append("and everywhere that Mary went,")
strings.append("the lamb was sure to go.")
strings.append(14.5)
strings.append(14.5)
strings.append(-400)
raw = strings.getBinary()
print strings
hexDump(raw)
print "Retrieving arguments..."
data = raw
for i in range(6):
text, data = _readString(data)
print text
number, data = _readFloat(data)
print number
number, data = _readFloat(data)
print number
number, data = _readInt(data)
print number
print decodeOSC(raw)
print "\nTesting Blob types."
blob = OSCMessage("/pri*")
blob.append("","b")
blob.append("b","b")
blob.append("bl","b")
blob.append("blo","b")
blob.append("blob","b")
blob.append("blobs","b")
blob.append(42)
print blob
hexDump(blob.getBinary())
print1 = OSCMessage()
print1.setAddress("/print")
print1.append("Hey man, that's cool.")
print1.append(42)
print1.append(3.1415926)
print "\nTesting OSCBundle"
bundle = OSCBundle()
bundle.append(print1)
bundle.append({'addr':"/print", 'args':["bundled messages:", 2]})
bundle.setAddress("/*print")
bundle.append(("no,", 3, "actually."))
print bundle
hexDump(bundle.getBinary())
# Instantiate OSCClient
print "\nInstantiating OSCClient:"
if len(targets):
c = OSCMultiClient()
c.updateOSCTargets(targets)
else:
c = OSCClient()
c.connect(listen_address) # connect back to our OSCServer
print c
if hasattr(c, 'getOSCTargetStrings'):
print "Sending to:"
for (trg, filterstrings) in c.getOSCTargetStrings():
out = trg
for fs in filterstrings:
out += " %s" % fs
print out
# Now an OSCServer...
print "\nInstantiating OSCServer:"
# define a message-handler function for the server to call.
def printing_handler(addr, tags, stuff, source):
msg_string = "%s [%s] %s" % (addr, tags, str(stuff))
sys.stdout.write("OSCServer Got: '%s' from %s\n" % (msg_string, getUrlStr(source)))
# send a reply to the client.
msg = OSCMessage("/printed")
msg.append(msg_string)
return msg
if opts.threading:
s = ThreadingOSCServer(listen_address, c, return_port=listen_address[1])
elif opts.forking:
s = ForkingOSCServer(listen_address, c, return_port=listen_address[1])
else:
s = OSCServer(listen_address, c, return_port=listen_address[1])
print s
# Set Server to return errors as OSCMessages to "/error"
s.setSrvErrorPrefix("/error")
# Set Server to reply to server-info requests with OSCMessages to "/serverinfo"
s.setSrvInfoPrefix("/serverinfo")
# this registers a 'default' handler (for unmatched messages),
# an /'error' handler, an '/info' handler.
# And, if the client supports it, a '/subscribe' & '/unsubscribe' handler
s.addDefaultHandlers()
s.addMsgHandler("/print", printing_handler)
# if client & server are bound to 'localhost', server replies return to itself!
s.addMsgHandler("/printed", s.msgPrinter_handler)
s.addMsgHandler("/serverinfo", s.msgPrinter_handler)
print "Registered Callback-functions:"
for addr in s.getOSCAddressSpace():
print addr
print "\nStarting OSCServer. Use ctrl-C to quit."
st = threading.Thread(target=s.serve_forever)
st.start()
if hasattr(c, 'targets') and listen_address not in c.targets.keys():
print "\nSubscribing local Server to local Client"
c2 = OSCClient()
c2.connect(listen_address)
subreq = OSCMessage("/subscribe")
subreq.append(listen_address)
print "sending: ", subreq
c2.send(subreq)
c2.close()
time.sleep(0.1)
print "\nRequesting OSC-address-space and subscribed clients from OSCServer"
inforeq = OSCMessage("/info")
for cmd in ("info", "list", "clients"):
inforeq.clearData()
inforeq.append(cmd)
print "sending: ", inforeq
c.send(inforeq)
time.sleep(0.1)
print2 = print1.copy()
print2.setAddress('/noprint')
print "\nSending Messages"
for m in (message, print1, print2, strings, bundle):
print "sending: ", m
c.send(m)
time.sleep(0.1)
print "\nThe next message's address will match both the '/print' and '/printed' handlers..."
print "sending: ", blob
c.send(blob)
time.sleep(0.1)
print "\nBundles can be given a timestamp.\nThe receiving server should 'hold' the bundle until its time has come"
waitbundle = OSCBundle("/print")
waitbundle.setTimeTag(time.time() + 5)
if s.__class__ == OSCServer:
waitbundle.append("Note how the (single-thread) OSCServer blocks while holding this bundle")
else:
waitbundle.append("Note how the %s does not block while holding this bundle" % s.__class__.__name__)
print "Set timetag 5 s into the future"
print "sending: ", waitbundle
c.send(waitbundle)
time.sleep(0.1)
print "Recursing bundles, with timetags set to 10 s [25 s, 20 s, 10 s]"
bb = OSCBundle("/print")
bb.setTimeTag(time.time() + 10)
b = OSCBundle("/print")
b.setTimeTag(time.time() + 25)
b.append("held for 25 sec")
bb.append(b)
b.clearData()
b.setTimeTag(time.time() + 20)
b.append("held for 20 sec")
bb.append(b)
b.clearData()
b.setTimeTag(time.time() + 15)
b.append("held for 15 sec")
bb.append(b)
if s.__class__ == OSCServer:
bb.append("Note how the (single-thread) OSCServer handles the bundle's contents in order of appearance")
else:
bb.append("Note how the %s handles the sub-bundles in the order dictated by their timestamps" % s.__class__.__name__)
bb.append("Each bundle's contents, however, are processed in random order (dictated by the kernel's threading)")
print "sending: ", bb
c.send(bb)
time.sleep(0.1)
print "\nMessages sent!"
print "\nWaiting for OSCServer. Use ctrl-C to quit.\n"
try:
while True:
time.sleep(30)
except KeyboardInterrupt:
print "\nClosing OSCServer."
s.close()
print "Waiting for Server-thread to finish"
st.join()
print "Closing OSCClient"
c.close()
print "Done"
sys.exit(0)
# vim:noexpandtab