This repository has been archived on 2025-06-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
fl0w-old/Shared/Routing.py

44 lines
No EOL
997 B
Python

BROADCAST = 0
ROUTE = 1
class InvalidRouteSetup(AttributeError):
def __init__(self, msg):
super(AttributeError, self).__init__(msg)
class ServerRoute:
def __init__(self, **kwargs):
self.setup(**kwargs)
def setup(self, **kwargs):
pass
def run(self, data, handler):
pass
def start(self, handler):
pass
def stop(self, handler):
pass
class ClientRoute:
def run(self, data, handler):
pass
def create_routes(routes, handler):
routes = routes.copy()
reverse_routes = {}
for prefix in routes:
if type(routes[prefix]) is tuple or type(routes[prefix]) is list:
routes[prefix] = routes[prefix][0](**routes[prefix][1])
reverse_routes[routes[prefix]] = prefix
for prefix in routes:
attrs = dir(routes[prefix])
if "REQUIRED" in attrs:
for required in type(routes[prefix]).REQUIRED:
if required == BROADCAST:
routes[prefix].broadcast = handler.broadcast
elif required == ROUTE:
routes[prefix].route = reverse_routes[routes[prefix]]
return routes