MTPyroger/pyrogram/api/core/object.py

73 lines
2.1 KiB
Python
Raw Normal View History

2017-12-05 11:32:23 +00:00
# Pyrogram - Telegram MTProto API Client Library for Python
2019-01-01 11:36:16 +00:00
# Copyright (C) 2017-2019 Dan Tès <https://github.com/delivrance>
2017-12-05 11:32:23 +00:00
#
# This file is part of Pyrogram.
#
# Pyrogram is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Pyrogram is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
from collections import OrderedDict
from datetime import datetime
from io import BytesIO
2019-03-16 14:30:55 +00:00
from json import dumps
2017-12-05 11:32:23 +00:00
class Object:
2017-12-11 10:35:38 +00:00
all = {}
2019-03-16 14:30:55 +00:00
__slots__ = []
QUALNAME = "Base"
2017-12-05 11:32:23 +00:00
@staticmethod
def read(b: BytesIO, *args):
return Object.all[int.from_bytes(b.read(4), "little")].read(b, *args)
2017-12-05 11:32:23 +00:00
def write(self, *args) -> bytes:
pass
def __str__(self) -> str:
return dumps(self, indent=4, default=default, ensure_ascii=False)
2017-12-05 11:32:23 +00:00
def __len__(self) -> int:
return len(self.write())
def __getitem__(self, item):
return getattr(self, item)
2017-12-05 11:32:23 +00:00
2018-03-26 13:16:09 +00:00
def remove_none(obj):
if isinstance(obj, (list, tuple, set)):
return type(obj)(remove_none(x) for x in obj if x is not None)
elif isinstance(obj, dict):
return type(obj)((remove_none(k), remove_none(v)) for k, v in obj.items() if k is not None and v is not None)
else:
return obj
2019-03-16 14:30:55 +00:00
def default(o: "Object"):
try:
content = {i: getattr(o, i) for i in o.__slots__}
return remove_none(
OrderedDict(
[("_", o.QUALNAME)]
+ [i for i in content.items()]
)
)
except AttributeError:
if isinstance(o, datetime):
return o.strftime("%d-%b-%Y %H:%M:%S")
2018-03-26 13:16:09 +00:00
else:
2019-03-16 14:30:55 +00:00
return repr(o)