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
|
"""Squeezebox/Logitech Media server discovery."""
import socket
from typing import Dict, List, Union # noqa: F401
from .const import ATTR_HOST, ATTR_PORT
DISCOVERY_PORT = 3483
DEFAULT_DISCOVERY_TIMEOUT = 2
class LMS:
"""Base class to discover Logitech Media servers."""
def __init__(self):
"""Initialize the Logitech discovery."""
self.entries = [] # type: List[Dict[str, Union[str, int]]]
self.last_scan = None
def scan(self):
"""Scan the network."""
self.update()
def all(self):
"""Scan and return all found entries."""
self.scan()
return list(self.entries)
def update(self):
"""Scan network for Logitech Media Servers."""
lms_ip = '<broadcast>'
lms_port = DISCOVERY_PORT
lms_msg = b"eJSON\0"
lms_timeout = DEFAULT_DISCOVERY_TIMEOUT
entries = []
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
sock.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1)
sock.settimeout(lms_timeout)
sock.bind(('', 0))
try:
sock.sendto(lms_msg, (lms_ip, lms_port))
while True:
try:
data, server = sock.recvfrom(1024)
if data.startswith(b'E'):
# Full response is EJSON\xYYXXXX
# Where YY is length of port string (ie 4)
# And XXXX is the web interface port (ie 9000)
port = None
# https://github.com/python/typeshed/pull/2696
if data.startswith(b'JSON', 1): # type: ignore
length = data[5:6][0]
port = int(data[0-length:])
entries.append({
ATTR_HOST: server[0],
ATTR_PORT: port,
})
except socket.timeout:
break
finally:
sock.close()
self.entries = entries
def main():
"""Test LMS discovery."""
from pprint import pprint
lms = LMS()
pprint("Scanning for Logitech Media Servers...")
lms.update()
pprint(lms.entries)
if __name__ == "__main__":
main()
|