/usr/bin/dump_osc is in pyliblo-utils 0.9.2-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #!/usr/bin/python
# -*- coding: utf-8 -*-
#
# pyliblo - Python bindings for the liblo OSC library
#
# Copyright (C) 2007-2011 Dominic Sacré <dominic.sacre@gmx.de>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
import sys
import liblo
class DumpOSC:
def blob_to_hex(self, b):
return " ".join([ (hex(v/16).upper()[-1] + hex(v%16).upper()[-1]) for v in b ])
def callback(self, path, args, types, src):
write = sys.stdout.write
## print source
#write("from " + src.get_url() + ": ")
# print path
write(path + " ,")
# print typespec
write(types)
# loop through arguments and print them
for a, t in zip(args, types):
write(" ")
if t == None:
#unknown type
write("[unknown type]")
elif t == 'b':
# it's a blob
write("[" + self.blob_to_hex(a) + "]")
else:
# anything else
write(str(a))
write('\n')
def __init__(self, port = None):
# create server object
try:
self.server = liblo.Server(port)
except liblo.ServerError as err:
sys.exit(str(err))
print("listening on URL: " + self.server.get_url())
# register callback function for all messages
self.server.add_method(None, None, self.callback)
def run(self):
# just loop and dispatch messages every 10ms
while True:
self.server.recv(10)
if __name__ == '__main__':
# display help
if len(sys.argv) == 1 or sys.argv[1] in ("-h", "--help"):
sys.exit("Usage: " + sys.argv[0] + " port")
# require one argument (port number)
if len(sys.argv) < 2:
sys.exit("please specify a port or URL")
app = DumpOSC(sys.argv[1])
try:
app.run()
except KeyboardInterrupt:
del app
|