import socket import sys import struct import time import xml.etree.ElementTree as ET import threading import optparse from packet import Packet, CMD, itos parser = optparse.OptionParser() parser.add_option('-t', '--test', dest='test', action='store_true', help='Play a test tone (440, 880) on all clients in sequence (the last overlaps with the first of the next)') parser.add_option('-q', '--quit', dest='quit', action='store_true', help='Instruct all clients to quit') parser.add_option('-f', '--factor', dest='factor', type='int', help='Rescale time by this factor (0 2: factor = float(sys.argv[2]) else: factor = 1 print 'Factor:', factor s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) s.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1) clients = [] uid_groups = {} type_groups = {} s.sendto(str(Packet(CMD.PING)), ('255.255.255.255', PORT)) s.settimeout(0.5) try: while True: data, src = s.recvfrom(4096) clients.append(src) except socket.timeout: pass print 'Clients:' for cl in clients: print cl, s.sendto(str(Packet(CMD.CAPS)), cl) data, _ = s.recvfrom(4096) pkt = Packet.FromStr(data) print 'ports', pkt.data[0], tp = itos(pkt.data[1]) print 'type', tp, uid = ''.join([itos(i) for i in pkt.data[2:]]).rstrip('\x00') print 'uid', uid if uid == '': uid = None uid_groups.setdefault(uid, []).append(cl) type_groups.setdefault(tp, []).append(cl) if options.test: s.sendto(str(Packet(CMD.PLAY, 0, 250000, 440, 255)), cl) time.sleep(0.25) s.sendto(str(Packet(CMD.PLAY, 0, 250000, 880, 255)), cl) if options.quit: s.sendto(str(Packet(CMD.QUIT)), cl) if options.test or options.quit: print uid_groups print type_groups exit() try: iv = ET.parse(sys.argv[1]).getroot() except IOError: print 'Bad file' exit() notestreams = iv.findall("./streams/stream[@type='ns']") groups = set([ns.get('group') for ns in notestreams if 'group' in ns.keys()]) print len(notestreams), 'notestreams' print len(clients), 'clients' print len(groups), 'groups' class NSThread(threading.Thread): def run(self): nsq, cl = self._Thread__args for note in nsq: ttime = float(note.get('time')) pitch = int(note.get('pitch')) vel = int(note.get('vel')) dur = factor*float(note.get('dur')) while time.time() - BASETIME < factor*ttime: time.sleep(factor*ttime - (time.time() - BASETIME)) s.sendto(str(Packet(CMD.PLAY, int(dur), int((dur*1000000)%1000000), int(440.0 * 2**((pitch-69)/12.0)), vel*2)), cl) time.sleep(dur) threads = [] for ns in notestreams: if not clients: print 'WARNING: Out of clients!', break nsq = ns.findall('note') threads.append(NSThread(args=(nsq, clients.pop(0)))) BASETIME = time.time() for thr in threads: thr.start() for thr in threads: thr.join()