import gevent import socket import struct import time from six.moves import queue from holster.enum import Enum from holster.emitter import Emitter from disco.gateway.encoding.json import JSONEncoder from disco.util.websocket import Websocket from disco.util.logging import LoggingClass from disco.voice.packets import VoiceOPCode from disco.gateway.packets import OPCode VoiceState = Enum( DISCONNECTED=0, AWAITING_ENDPOINT=1, AUTHENTICATING=2, CONNECTING=3, CONNECTED=4, VOICE_CONNECTING=5, VOICE_CONNECTED=6, ) # TODO: # - player implementation # - encryption # - cleanup class VoiceException(Exception): def __init__(self, msg, client): self.voice_client = client super(VoiceException, self).__init__(msg) class UDPVoiceClient(LoggingClass): def __init__(self, vc): super(UDPVoiceClient, self).__init__() self.vc = vc self.conn = None self.ip = None self.port = None self.run_task = None self.connected = False self.seq = 0 self.ts = 0 def send_frame(self, frame): self.seq += 1 data = '\x80\x78' data += struct.pack('>H', self.seq) data += struct.pack('>I', self.ts) data += struct.pack('>I', self.vc.ssrc) data += ''.join(frame) self.send(data) self.ts += 960 def run(self): while True: self.conn.recvfrom(4096) def send(self, data): self.conn.sendto(data, (self.ip, self.port)) def disconnect(self): self.run_task.kill() def connect(self, host, port, timeout=10): self.ip = socket.gethostbyname(host) self.port = port self.conn = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) # Send discovery packet packet = bytearray(70) struct.pack_into('>I', packet, 0, self.vc.ssrc) self.send(packet) # Wait for a response try: data, addr = gevent.spawn(lambda: self.conn.recvfrom(70)).get(timeout=timeout) except gevent.Timeout: return (None, None) # Read IP and port ip = str(data[4:]).split('\x00', 1)[0] port = struct.unpack('