1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/royalherald/request.py

31 lines
907 B
Python
Raw Permalink Normal View History

2019-10-20 16:28:47 +00:00
import typing
2019-10-15 09:07:04 +00:00
class Request:
"""A request sent from a :py:class:`Link` to another.
It contains the name of the requested handler, in addition to the data."""
2019-10-20 16:28:47 +00:00
def __init__(self, handler: str, data: dict, msg_type: typing.Optional[str] = None):
2019-10-15 09:07:04 +00:00
super().__init__()
2019-10-20 16:28:47 +00:00
if msg_type is not None:
assert msg_type == self.__class__.__name__
self.msg_type = self.__class__.__name__
2019-10-15 09:07:04 +00:00
self.handler: str = handler
self.data: dict = data
def to_dict(self):
return self.__dict__
2019-10-20 16:12:12 +00:00
@classmethod
def from_dict(cls, d: dict):
return cls(**d)
2019-10-15 09:07:04 +00:00
def __eq__(self, other):
2019-10-20 16:12:12 +00:00
if isinstance(other, self.__class__):
2019-10-15 09:07:04 +00:00
return self.handler == other.handler and self.data == other.data
return False
def __repr__(self):
return f"{self.__class__.__qualname__}(handler={self.handler}, data={self.data})"