mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-05-31 19:53:11 +03:00
Add a new .stringify() function to visualize TLObjects more easily
This commit is contained in:
parent
632fcb7c00
commit
8fd0d7eadd
|
@ -30,7 +30,79 @@ class MTProtoRequest:
|
||||||
self.confirmed and not self.confirm_received and
|
self.confirmed and not self.confirm_received and
|
||||||
datetime.now() - self.send_time > timedelta(seconds=3))
|
datetime.now() - self.send_time > timedelta(seconds=3))
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def pretty_format(obj, indent=None):
|
||||||
|
"""Pretty formats the given object as a string which is returned.
|
||||||
|
If indent is None, a single line will be returned.
|
||||||
|
"""
|
||||||
|
if indent is None:
|
||||||
|
if isinstance(obj, MTProtoRequest):
|
||||||
|
return '{{{}: {}}}'.format(
|
||||||
|
type(obj).__name__,
|
||||||
|
MTProtoRequest.pretty_format(obj.to_dict())
|
||||||
|
)
|
||||||
|
if isinstance(obj, dict):
|
||||||
|
return '{{{}}}'.format(', '.join(
|
||||||
|
'{}: {}'.format(
|
||||||
|
k, MTProtoRequest.pretty_format(v)
|
||||||
|
) for k, v in obj.items()
|
||||||
|
))
|
||||||
|
elif isinstance(obj, str):
|
||||||
|
return '"{}"'.format(obj)
|
||||||
|
elif hasattr(obj, '__iter__'):
|
||||||
|
return '[{}]'.format(
|
||||||
|
', '.join(MTProtoRequest.pretty_format(x) for x in obj)
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
return str(obj)
|
||||||
|
else:
|
||||||
|
result = []
|
||||||
|
if isinstance(obj, MTProtoRequest):
|
||||||
|
result.append('{')
|
||||||
|
result.append(type(obj).__name__)
|
||||||
|
result.append(': ')
|
||||||
|
result.append(MTProtoRequest.pretty_format(
|
||||||
|
obj.to_dict(), indent
|
||||||
|
))
|
||||||
|
|
||||||
|
elif isinstance(obj, dict):
|
||||||
|
result.append('{\n')
|
||||||
|
indent += 1
|
||||||
|
for k, v in obj.items():
|
||||||
|
result.append('\t' * indent)
|
||||||
|
result.append(k)
|
||||||
|
result.append(': ')
|
||||||
|
result.append(MTProtoRequest.pretty_format(v, indent))
|
||||||
|
result.append(',\n')
|
||||||
|
indent -= 1
|
||||||
|
result.append('\t' * indent)
|
||||||
|
result.append('}')
|
||||||
|
|
||||||
|
elif isinstance(obj, str):
|
||||||
|
result.append('"')
|
||||||
|
result.append(obj)
|
||||||
|
result.append('"')
|
||||||
|
|
||||||
|
elif hasattr(obj, '__iter__'):
|
||||||
|
result.append('[\n')
|
||||||
|
indent += 1
|
||||||
|
for x in obj:
|
||||||
|
result.append('\t' * indent)
|
||||||
|
result.append(MTProtoRequest.pretty_format(x, indent))
|
||||||
|
result.append(',\n')
|
||||||
|
indent -= 1
|
||||||
|
result.append('\t' * indent)
|
||||||
|
result.append(']')
|
||||||
|
|
||||||
|
else:
|
||||||
|
result.append(str(obj))
|
||||||
|
|
||||||
|
return ''.join(result)
|
||||||
|
|
||||||
# These should be overrode
|
# These should be overrode
|
||||||
|
def to_dict(self):
|
||||||
|
return {}
|
||||||
|
|
||||||
def on_send(self, writer):
|
def on_send(self, writer):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
|
@ -179,6 +179,7 @@ class TLGenerator:
|
||||||
|
|
||||||
# Both types and functions inherit from
|
# Both types and functions inherit from
|
||||||
# MTProtoRequest so they all can be sent
|
# MTProtoRequest so they all can be sent
|
||||||
|
# TODO MTProtoRequest is not the best name for a type
|
||||||
builder.writeln('from {}.tl.mtproto_request import MTProtoRequest'
|
builder.writeln('from {}.tl.mtproto_request import MTProtoRequest'
|
||||||
.format('.' * depth))
|
.format('.' * depth))
|
||||||
|
|
||||||
|
@ -408,9 +409,12 @@ class TLGenerator:
|
||||||
builder.end_block()
|
builder.end_block()
|
||||||
|
|
||||||
builder.writeln('def __str__(self):')
|
builder.writeln('def __str__(self):')
|
||||||
builder.writeln('return {}'.format(str(tlobject)))
|
builder.writeln('return MTProtoRequest.pretty_format(self)')
|
||||||
# builder.end_block() # No need to end the last block
|
builder.end_block()
|
||||||
|
|
||||||
|
builder.writeln('def stringify(self):')
|
||||||
|
builder.writeln('return MTProtoRequest.pretty_format(self, indent=0)')
|
||||||
|
# builder.end_block() # No need to end the last block
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_class_name(tlobject):
|
def get_class_name(tlobject):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user