2020-03-21 21:40:39 +00:00
|
|
|
from owrx.config import Config
|
2019-12-21 19:58:28 +00:00
|
|
|
import threading
|
|
|
|
|
|
|
|
import logging
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class TooManyClientsException(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class ClientRegistry(object):
|
|
|
|
sharedInstance = None
|
|
|
|
creationLock = threading.Lock()
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def getSharedInstance():
|
|
|
|
with ClientRegistry.creationLock:
|
|
|
|
if ClientRegistry.sharedInstance is None:
|
|
|
|
ClientRegistry.sharedInstance = ClientRegistry()
|
|
|
|
return ClientRegistry.sharedInstance
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.clients = []
|
2021-02-26 23:01:21 +00:00
|
|
|
Config.get().wireProperty("max_clients", self._checkClientCount)
|
2019-12-21 19:58:28 +00:00
|
|
|
super().__init__()
|
|
|
|
|
|
|
|
def broadcast(self):
|
|
|
|
n = self.clientCount()
|
|
|
|
for c in self.clients:
|
|
|
|
c.write_clients(n)
|
|
|
|
|
|
|
|
def addClient(self, client):
|
2020-03-21 21:40:39 +00:00
|
|
|
pm = Config.get()
|
2019-12-21 19:58:28 +00:00
|
|
|
if len(self.clients) >= pm["max_clients"]:
|
|
|
|
raise TooManyClientsException()
|
|
|
|
self.clients.append(client)
|
|
|
|
self.broadcast()
|
|
|
|
|
|
|
|
def clientCount(self):
|
|
|
|
return len(self.clients)
|
|
|
|
|
|
|
|
def removeClient(self, client):
|
|
|
|
try:
|
|
|
|
self.clients.remove(client)
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
self.broadcast()
|
2021-02-26 23:01:21 +00:00
|
|
|
|
|
|
|
def _checkClientCount(self, new_count):
|
|
|
|
for client in self.clients[new_count:]:
|
|
|
|
logger.debug("closing one connection...")
|
|
|
|
client.close()
|