From ff7f4de7c146c742fbea963a2fad33f1bfaf78b2 Mon Sep 17 00:00:00 2001 From: Andrei Date: Sun, 25 Sep 2016 07:33:27 -0500 Subject: [PATCH] More voice implementation --- disco/voice/client.py | 132 ++++++++++++++++++++++++++++++++++++--- examples/basic_plugin.py | 8 ++- 2 files changed, 130 insertions(+), 10 deletions(-) diff --git a/disco/voice/client.py b/disco/voice/client.py index c45c66e..1954ce5 100644 --- a/disco/voice/client.py +++ b/disco/voice/client.py @@ -1,4 +1,7 @@ import gevent +import socket +import struct +import time from holster.enum import Enum from holster.emitter import Emitter @@ -19,6 +22,11 @@ VoiceState = Enum( VOICE_CONNECTED=6, ) +# TODO: +# - player implementation +# - encryption +# - cleanup + class VoiceException(Exception): def __init__(self, msg, client): @@ -26,8 +34,58 @@ class VoiceException(Exception): 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 + + 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 = data[4:].split('\x00', 1)[0] + port = struct.unpack('