2020-03-21 14:43:32 +00:00
|
|
|
# Pyrogram - Telegram MTProto API Client Library for Python
|
2022-01-07 09:23:45 +00:00
|
|
|
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
|
2017-12-05 11:16:39 +00:00
|
|
|
#
|
2020-03-21 14:43:32 +00:00
|
|
|
# This file is part of Pyrogram.
|
2017-12-05 11:16:39 +00:00
|
|
|
#
|
2020-03-21 14:43:32 +00:00
|
|
|
# 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.
|
2017-12-05 11:16:39 +00:00
|
|
|
#
|
2020-03-21 14:43:32 +00:00
|
|
|
# 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.
|
2017-12-05 11:16:39 +00:00
|
|
|
#
|
2020-03-21 14:43:32 +00:00
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
2017-12-05 11:16:39 +00:00
|
|
|
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import shutil
|
2020-08-22 06:05:05 +00:00
|
|
|
from functools import partial
|
|
|
|
from pathlib import Path
|
|
|
|
from typing import NamedTuple, List, Tuple
|
2017-12-05 11:16:39 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
# from autoflake import fix_code
|
|
|
|
# from black import format_str, FileMode
|
|
|
|
|
|
|
|
HOME_PATH = Path("compiler/api")
|
|
|
|
DESTINATION_PATH = Path("pyrogram/raw")
|
2018-01-20 19:16:42 +00:00
|
|
|
NOTICE_PATH = "NOTICE"
|
2020-08-22 06:05:05 +00:00
|
|
|
|
2018-01-04 15:29:10 +00:00
|
|
|
SECTION_RE = re.compile(r"---(\w+)---")
|
|
|
|
LAYER_RE = re.compile(r"//\sLAYER\s(\d+)")
|
2020-08-22 06:05:05 +00:00
|
|
|
COMBINATOR_RE = re.compile(r"^([\w.]+)#([0-9a-f]+)\s(?:.*)=\s([\w<>.]+);$", re.MULTILINE)
|
2020-07-12 04:43:30 +00:00
|
|
|
ARGS_RE = re.compile(r"[^{](\w+):([\w?!.<>#]+)")
|
2022-04-11 12:29:17 +00:00
|
|
|
FLAGS_RE = re.compile(r"flags(\d?)\.(\d+)\?")
|
2022-04-11 10:46:29 +00:00
|
|
|
FLAGS_RE_2 = re.compile(r"flags(\d?)\.(\d+)\?([\w<>.]+)")
|
|
|
|
FLAGS_RE_3 = re.compile(r"flags(\d?):#")
|
2018-01-21 11:35:36 +00:00
|
|
|
INT_RE = re.compile(r"int(\d+)")
|
2017-12-05 11:16:39 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
CORE_TYPES = ["int", "long", "int128", "int256", "double", "bytes", "string", "Bool", "true"]
|
2018-01-06 11:55:37 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
WARNING = """
|
|
|
|
# # # # # # # # # # # # # # # # # # # # # # # #
|
|
|
|
# !!! WARNING !!! #
|
|
|
|
# This is a generated file! #
|
|
|
|
# All changes made in this file will be lost! #
|
|
|
|
# # # # # # # # # # # # # # # # # # # # # # # #
|
|
|
|
""".strip()
|
2018-01-06 11:55:37 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
# noinspection PyShadowingBuiltins
|
|
|
|
open = partial(open, encoding="utf-8")
|
2018-01-06 11:55:37 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
types_to_constructors = {}
|
|
|
|
types_to_functions = {}
|
|
|
|
constructors_to_functions = {}
|
|
|
|
namespaces_to_types = {}
|
|
|
|
namespaces_to_constructors = {}
|
|
|
|
namespaces_to_functions = {}
|
|
|
|
|
|
|
|
|
|
|
|
class Combinator(NamedTuple):
|
|
|
|
section: str
|
|
|
|
qualname: str
|
|
|
|
namespace: str
|
|
|
|
name: str
|
|
|
|
id: str
|
|
|
|
has_flags: bool
|
|
|
|
args: List[Tuple[str, str]]
|
|
|
|
qualtype: str
|
|
|
|
typespace: str
|
|
|
|
type: str
|
|
|
|
|
|
|
|
|
|
|
|
def snake(s: str):
|
|
|
|
# https://stackoverflow.com/q/1175208
|
|
|
|
s = re.sub(r"(.)([A-Z][a-z]+)", r"\1_\2", s)
|
|
|
|
return re.sub(r"([a-z0-9])([A-Z])", r"\1_\2", s).lower()
|
2018-01-06 11:55:37 +00:00
|
|
|
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
def camel(s: str):
|
|
|
|
return "".join([i[0].upper() + i[1:] for i in s.split("_")])
|
2018-01-06 11:55:37 +00:00
|
|
|
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
# noinspection PyShadowingBuiltins, PyShadowingNames
|
|
|
|
def get_type_hint(type: str) -> str:
|
|
|
|
is_flag = FLAGS_RE.match(type)
|
|
|
|
is_core = False
|
2018-01-06 11:55:37 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
if is_flag:
|
|
|
|
type = type.split("?")[1]
|
2018-01-06 11:55:37 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
if type in CORE_TYPES:
|
|
|
|
is_core = True
|
2018-01-06 11:55:37 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
if type == "long" or "int" in type:
|
|
|
|
type = "int"
|
|
|
|
elif type == "double":
|
|
|
|
type = "float"
|
|
|
|
elif type == "string":
|
|
|
|
type = "str"
|
|
|
|
elif type in ["Bool", "true"]:
|
|
|
|
type = "bool"
|
|
|
|
else: # bytes and object
|
|
|
|
type = "bytes"
|
2018-01-06 11:55:37 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
if type in ["Object", "!X"]:
|
|
|
|
return "TLObject"
|
2017-12-05 11:16:39 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
if re.match("^vector", type, re.I):
|
|
|
|
is_core = True
|
2017-12-05 11:16:39 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
sub_type = type.split("<")[1][:-1]
|
|
|
|
type = f"List[{get_type_hint(sub_type)}]"
|
2018-04-25 10:55:38 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
if is_core:
|
2022-04-11 12:34:29 +00:00
|
|
|
return f"Optional[{type}] = None" if is_flag else type
|
2018-04-25 10:55:38 +00:00
|
|
|
else:
|
2020-08-22 06:05:05 +00:00
|
|
|
ns, name = type.split(".") if "." in type else ("", type)
|
|
|
|
type = f'"raw.base.' + ".".join([ns, name]).strip(".") + '"'
|
2017-12-05 11:16:39 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
return f'{type}{" = None" if is_flag else ""}'
|
2017-12-05 11:16:39 +00:00
|
|
|
|
|
|
|
|
2018-01-04 15:29:10 +00:00
|
|
|
def sort_args(args):
|
|
|
|
"""Put flags at the end"""
|
|
|
|
args = args.copy()
|
|
|
|
flags = [i for i in args if FLAGS_RE.match(i[1])]
|
2017-12-05 11:16:39 +00:00
|
|
|
|
2018-01-04 15:29:10 +00:00
|
|
|
for i in flags:
|
|
|
|
args.remove(i)
|
2017-12-05 11:16:39 +00:00
|
|
|
|
2022-04-11 10:46:29 +00:00
|
|
|
for i in args[:]:
|
2022-04-11 12:52:59 +00:00
|
|
|
if re.match(r"flags\d?", i[0]) and i[1] == "#":
|
2022-04-11 10:46:29 +00:00
|
|
|
args.remove(i)
|
2020-08-22 06:05:05 +00:00
|
|
|
|
2018-01-04 15:29:10 +00:00
|
|
|
return args + flags
|
2017-12-05 11:16:39 +00:00
|
|
|
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
def remove_whitespaces(source: str) -> str:
|
|
|
|
"""Remove whitespaces from blank lines"""
|
|
|
|
lines = source.split("\n")
|
|
|
|
|
|
|
|
for i, _ in enumerate(lines):
|
|
|
|
if re.match(r"^\s+$", lines[i]):
|
|
|
|
lines[i] = ""
|
|
|
|
|
|
|
|
return "\n".join(lines)
|
|
|
|
|
|
|
|
|
|
|
|
def get_docstring_arg_type(t: str, is_list: bool = False, is_pyrogram_type: bool = False):
|
|
|
|
if t in CORE_TYPES:
|
|
|
|
if t == "long":
|
|
|
|
return "``int`` ``64-bit``"
|
|
|
|
elif "int" in t:
|
|
|
|
size = INT_RE.match(t)
|
|
|
|
return f"``int`` ``{size.group(1)}-bit``" if size else "``int`` ``32-bit``"
|
|
|
|
elif t == "double":
|
|
|
|
return "``float`` ``64-bit``"
|
|
|
|
elif t == "string":
|
|
|
|
return "``str``"
|
|
|
|
elif t == "true":
|
|
|
|
return "``bool``"
|
|
|
|
else:
|
|
|
|
return f"``{t.lower()}``"
|
|
|
|
elif t == "TLObject" or t == "X":
|
|
|
|
return "Any object from :obj:`~pyrogram.raw.types`"
|
|
|
|
elif t == "!X":
|
|
|
|
return "Any method from :obj:`~pyrogram.raw.functions`"
|
|
|
|
elif t.lower().startswith("vector"):
|
|
|
|
return "List of " + get_docstring_arg_type(t.split("<", 1)[1][:-1], True)
|
|
|
|
else:
|
|
|
|
return f":obj:`{t} <pyrogram.raw.base.{t}>`"
|
|
|
|
|
|
|
|
|
|
|
|
def get_references(t: str, kind: str):
|
|
|
|
if kind == "constructors":
|
|
|
|
t = constructors_to_functions.get(t)
|
|
|
|
elif kind == "types":
|
|
|
|
t = types_to_functions.get(t)
|
|
|
|
else:
|
|
|
|
raise ValueError("Invalid kind")
|
|
|
|
|
|
|
|
if t:
|
|
|
|
return "\n ".join(
|
|
|
|
f"- :obj:`{i} <pyrogram.raw.functions.{i}>`"
|
|
|
|
for i in t
|
|
|
|
), len(t)
|
2018-01-04 15:29:10 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
return None, 0
|
2018-01-04 15:29:10 +00:00
|
|
|
|
2018-04-01 11:09:32 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
# noinspection PyShadowingBuiltins
|
|
|
|
def start(format: bool = False):
|
|
|
|
shutil.rmtree(DESTINATION_PATH / "types", ignore_errors=True)
|
|
|
|
shutil.rmtree(DESTINATION_PATH / "functions", ignore_errors=True)
|
|
|
|
shutil.rmtree(DESTINATION_PATH / "base", ignore_errors=True)
|
|
|
|
|
|
|
|
with open(HOME_PATH / "source/auth_key.tl") as f1, \
|
|
|
|
open(HOME_PATH / "source/sys_msgs.tl") as f2, \
|
|
|
|
open(HOME_PATH / "source/main_api.tl") as f3:
|
|
|
|
schema = (f1.read() + f2.read() + f3.read()).splitlines()
|
|
|
|
|
|
|
|
with open(HOME_PATH / "template/type.txt") as f1, \
|
|
|
|
open(HOME_PATH / "template/combinator.txt") as f2:
|
|
|
|
type_tmpl = f1.read()
|
|
|
|
combinator_tmpl = f2.read()
|
2018-01-04 15:29:10 +00:00
|
|
|
|
2018-01-21 16:39:16 +00:00
|
|
|
with open(NOTICE_PATH, encoding="utf-8") as f:
|
2018-01-04 15:29:10 +00:00
|
|
|
notice = []
|
|
|
|
|
|
|
|
for line in f.readlines():
|
2020-08-22 06:05:05 +00:00
|
|
|
notice.append(f"# {line}".strip())
|
2018-01-04 15:29:10 +00:00
|
|
|
|
|
|
|
notice = "\n".join(notice)
|
|
|
|
|
|
|
|
section = None
|
|
|
|
layer = None
|
|
|
|
combinators = []
|
|
|
|
|
2018-01-04 16:09:28 +00:00
|
|
|
for line in schema:
|
2018-01-04 15:29:10 +00:00
|
|
|
# Check for section changer lines
|
2020-08-22 06:05:05 +00:00
|
|
|
section_match = SECTION_RE.match(line)
|
|
|
|
if section_match:
|
|
|
|
section = section_match.group(1)
|
2018-01-04 15:29:10 +00:00
|
|
|
continue
|
|
|
|
|
|
|
|
# Save the layer version
|
2020-08-22 06:05:05 +00:00
|
|
|
layer_match = LAYER_RE.match(line)
|
|
|
|
if layer_match:
|
|
|
|
layer = layer_match.group(1)
|
2018-01-04 15:29:10 +00:00
|
|
|
continue
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
combinator_match = COMBINATOR_RE.match(line)
|
|
|
|
if combinator_match:
|
|
|
|
# noinspection PyShadowingBuiltins
|
|
|
|
qualname, id, qualtype = combinator_match.groups()
|
|
|
|
|
|
|
|
namespace, name = qualname.split(".") if "." in qualname else ("", qualname)
|
|
|
|
name = camel(name)
|
|
|
|
qualname = ".".join([namespace, name]).lstrip(".")
|
|
|
|
|
|
|
|
typespace, type = qualtype.split(".") if "." in qualtype else ("", qualtype)
|
|
|
|
type = camel(type)
|
|
|
|
qualtype = ".".join([typespace, type]).lstrip(".")
|
2018-01-04 15:29:10 +00:00
|
|
|
|
2018-01-05 01:38:29 +00:00
|
|
|
# Pingu!
|
|
|
|
has_flags = not not FLAGS_RE_3.findall(line)
|
2018-01-04 15:29:10 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
args = ARGS_RE.findall(line)
|
2018-01-04 15:29:10 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
# Fix arg name being "self" (reserved python keyword)
|
2018-01-04 15:29:10 +00:00
|
|
|
for i, item in enumerate(args):
|
|
|
|
if item[0] == "self":
|
|
|
|
args[i] = ("is_self", item[1])
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
combinator = Combinator(
|
|
|
|
section=section,
|
|
|
|
qualname=qualname,
|
|
|
|
namespace=namespace,
|
|
|
|
name=name,
|
|
|
|
id=f"0x{id}",
|
|
|
|
has_flags=has_flags,
|
|
|
|
args=args,
|
|
|
|
qualtype=qualtype,
|
|
|
|
typespace=typespace,
|
|
|
|
type=type
|
2018-01-04 15:29:10 +00:00
|
|
|
)
|
2017-12-05 11:16:39 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
combinators.append(combinator)
|
|
|
|
|
2018-01-05 01:13:08 +00:00
|
|
|
for c in combinators:
|
2020-08-22 06:05:05 +00:00
|
|
|
qualtype = c.qualtype
|
2018-01-06 11:55:37 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
if qualtype.startswith("Vector"):
|
|
|
|
qualtype = qualtype.split("<")[1][:-1]
|
2018-01-05 01:13:08 +00:00
|
|
|
|
2018-01-06 11:55:37 +00:00
|
|
|
d = types_to_constructors if c.section == "types" else types_to_functions
|
2018-01-05 01:13:08 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
if qualtype not in d:
|
|
|
|
d[qualtype] = []
|
|
|
|
|
|
|
|
d[qualtype].append(c.qualname)
|
|
|
|
|
|
|
|
if c.section == "types":
|
|
|
|
key = c.namespace
|
2018-01-06 11:55:37 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
if key not in namespaces_to_types:
|
|
|
|
namespaces_to_types[key] = []
|
|
|
|
|
|
|
|
if c.type not in namespaces_to_types[key]:
|
|
|
|
namespaces_to_types[key].append(c.type)
|
2018-01-06 11:55:37 +00:00
|
|
|
|
|
|
|
for k, v in types_to_constructors.items():
|
|
|
|
for i in v:
|
|
|
|
try:
|
|
|
|
constructors_to_functions[i] = types_to_functions[k]
|
|
|
|
except KeyError:
|
|
|
|
pass
|
2018-01-05 01:13:08 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
# import json
|
|
|
|
# print(json.dumps(namespaces_to_types, indent=2))
|
|
|
|
|
|
|
|
for qualtype in types_to_constructors:
|
|
|
|
typespace, type = qualtype.split(".") if "." in qualtype else ("", qualtype)
|
|
|
|
dir_path = DESTINATION_PATH / "base" / typespace
|
|
|
|
|
|
|
|
module = type
|
|
|
|
|
|
|
|
if module == "Updates":
|
|
|
|
module = "UpdatesT"
|
2018-01-04 16:09:28 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
os.makedirs(dir_path, exist_ok=True)
|
2017-12-05 11:16:39 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
constructors = sorted(types_to_constructors[qualtype])
|
|
|
|
constr_count = len(constructors)
|
|
|
|
items = "\n ".join([f"- :obj:`{c} <pyrogram.raw.types.{c}>`" for c in constructors])
|
2017-12-05 11:16:39 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
docstring = f"This base type has {constr_count} constructor{'s' if constr_count > 1 else ''} available.\n\n"
|
|
|
|
docstring += f" Constructors:\n .. hlist::\n :columns: 2\n\n {items}"
|
2017-12-05 11:16:39 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
references, ref_count = get_references(qualtype, "types")
|
|
|
|
|
|
|
|
if references:
|
|
|
|
docstring += f"\n\n See Also:\n This object can be returned by " \
|
|
|
|
f"{ref_count} method{'s' if ref_count > 1 else ''}:" \
|
|
|
|
f"\n\n .. hlist::\n :columns: 2\n\n " + references
|
|
|
|
|
|
|
|
with open(dir_path / f"{snake(module)}.py", "w") as f:
|
|
|
|
f.write(
|
|
|
|
type_tmpl.format(
|
|
|
|
notice=notice,
|
|
|
|
warning=WARNING,
|
|
|
|
docstring=docstring,
|
|
|
|
name=type,
|
|
|
|
qualname=qualtype,
|
2020-08-29 13:12:45 +00:00
|
|
|
types=", ".join([f"raw.types.{c}" for c in constructors]),
|
|
|
|
doc_name=snake(type).replace("_", "-")
|
2020-08-22 06:05:05 +00:00
|
|
|
)
|
|
|
|
)
|
2017-12-05 11:16:39 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
for c in combinators:
|
2018-01-04 15:29:10 +00:00
|
|
|
sorted_args = sort_args(c.args)
|
2017-12-05 11:16:39 +00:00
|
|
|
|
2019-03-16 15:50:40 +00:00
|
|
|
arguments = (
|
2020-08-22 06:05:05 +00:00
|
|
|
(", *, " if c.args else "") +
|
|
|
|
(", ".join(
|
|
|
|
[f"{i[0]}: {get_type_hint(i[1])}"
|
|
|
|
for i in sorted_args]
|
|
|
|
) if sorted_args else "")
|
2019-03-16 15:50:40 +00:00
|
|
|
)
|
2017-12-05 11:16:39 +00:00
|
|
|
|
|
|
|
fields = "\n ".join(
|
2020-08-22 06:05:05 +00:00
|
|
|
[f"self.{i[0]} = {i[0]} # {i[1]}"
|
|
|
|
for i in sorted_args]
|
|
|
|
) if sorted_args else "pass"
|
2017-12-05 11:16:39 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
docstring = ""
|
2018-01-03 16:40:38 +00:00
|
|
|
docstring_args = []
|
|
|
|
|
|
|
|
for i, arg in enumerate(sorted_args):
|
|
|
|
arg_name, arg_type = arg
|
2022-04-16 18:01:38 +00:00
|
|
|
is_optional = FLAGS_RE.match(arg_type)
|
|
|
|
flag_number = is_optional.group(1) if is_optional else -1
|
2018-01-03 16:40:38 +00:00
|
|
|
arg_type = arg_type.split("?")[-1]
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
docstring_args.append(
|
|
|
|
"{}{}: {}".format(
|
|
|
|
arg_name,
|
2022-04-16 18:01:38 +00:00
|
|
|
" (optional)".format(flag_number) if is_optional else "",
|
2020-08-22 06:05:05 +00:00
|
|
|
get_docstring_arg_type(arg_type, is_pyrogram_type=c.namespace == "pyrogram")
|
2018-01-03 16:40:38 +00:00
|
|
|
)
|
2020-08-22 06:05:05 +00:00
|
|
|
)
|
2018-01-03 16:40:38 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
if c.section == "types":
|
|
|
|
docstring += f"This object is a constructor of the base type :obj:`~pyrogram.raw.base.{c.qualtype}`.\n\n"
|
2018-01-03 16:40:38 +00:00
|
|
|
else:
|
2020-08-22 06:05:05 +00:00
|
|
|
docstring += f"Telegram API method.\n\n"
|
2018-01-03 16:40:38 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
docstring += f" Details:\n - Layer: ``{layer}``\n - ID: ``{c.id}``\n\n"
|
2018-01-04 02:06:24 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
if docstring_args:
|
|
|
|
docstring += " Parameters:\n " + "\n ".join(docstring_args)
|
|
|
|
else:
|
|
|
|
docstring += " **No parameters required.**"
|
2019-05-09 02:28:46 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
if c.section == "functions":
|
|
|
|
docstring += "\n\n Returns:\n " + get_docstring_arg_type(c.qualtype)
|
2018-01-06 11:55:37 +00:00
|
|
|
else:
|
2020-08-22 06:05:05 +00:00
|
|
|
references, count = get_references(c.qualname, "constructors")
|
2018-01-06 11:55:37 +00:00
|
|
|
|
|
|
|
if references:
|
2020-08-22 06:05:05 +00:00
|
|
|
docstring += f"\n\n See Also:\n This object can be returned by " \
|
|
|
|
f"{count} method{'s' if count > 1 else ''}:" \
|
|
|
|
f"\n\n .. hlist::\n :columns: 2\n\n " + references
|
2018-01-04 02:06:24 +00:00
|
|
|
|
2019-01-05 14:26:40 +00:00
|
|
|
write_types = read_types = "" if c.has_flags else "# No flags\n "
|
2017-12-05 11:16:39 +00:00
|
|
|
|
2018-01-04 15:29:10 +00:00
|
|
|
for arg_name, arg_type in c.args:
|
2020-12-25 11:08:48 +00:00
|
|
|
flag = FLAGS_RE_2.match(arg_type)
|
2017-12-05 11:16:39 +00:00
|
|
|
|
2022-04-11 10:46:29 +00:00
|
|
|
if re.match(r"flags\d?", arg_name) and arg_type == "#":
|
2019-01-05 14:26:40 +00:00
|
|
|
write_flags = []
|
|
|
|
|
|
|
|
for i in c.args:
|
2020-12-25 11:08:48 +00:00
|
|
|
flag = FLAGS_RE_2.match(i[1])
|
|
|
|
|
2019-01-05 14:26:40 +00:00
|
|
|
if flag:
|
2022-04-11 10:46:29 +00:00
|
|
|
if arg_name != f"flags{flag.group(1)}":
|
|
|
|
continue
|
|
|
|
|
|
|
|
if flag.group(3) == "true" or flag.group(3).startswith("Vector"):
|
|
|
|
write_flags.append(f"{arg_name} |= (1 << {flag.group(2)}) if self.{i[0]} else 0")
|
2020-12-25 11:08:48 +00:00
|
|
|
else:
|
2022-04-16 18:02:10 +00:00
|
|
|
write_flags.append(
|
|
|
|
f"{arg_name} |= (1 << {flag.group(2)}) if self.{i[0]} is not None else 0")
|
2019-01-05 14:26:40 +00:00
|
|
|
|
|
|
|
write_flags = "\n ".join([
|
2022-04-11 10:46:29 +00:00
|
|
|
f"{arg_name} = 0",
|
2019-01-05 14:26:40 +00:00
|
|
|
"\n ".join(write_flags),
|
2022-04-11 10:46:29 +00:00
|
|
|
f"b.write(Int({arg_name}))\n "
|
2019-01-05 14:26:40 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
write_types += write_flags
|
2022-04-11 10:46:29 +00:00
|
|
|
read_types += f"\n {arg_name} = Int.read(b)\n "
|
2019-01-05 14:26:40 +00:00
|
|
|
|
|
|
|
continue
|
|
|
|
|
2017-12-05 11:16:39 +00:00
|
|
|
if flag:
|
2022-04-11 10:46:29 +00:00
|
|
|
number, index, flag_type = flag.groups()
|
2017-12-05 11:16:39 +00:00
|
|
|
|
|
|
|
if flag_type == "true":
|
|
|
|
read_types += "\n "
|
2022-04-11 10:46:29 +00:00
|
|
|
read_types += f"{arg_name} = True if flags{number} & (1 << {index}) else False"
|
2020-08-22 06:05:05 +00:00
|
|
|
elif flag_type in CORE_TYPES:
|
2017-12-05 11:16:39 +00:00
|
|
|
write_types += "\n "
|
2020-08-22 06:05:05 +00:00
|
|
|
write_types += f"if self.{arg_name} is not None:\n "
|
2021-08-28 08:01:12 +00:00
|
|
|
write_types += f"b.write({flag_type.title()}(self.{arg_name}))\n "
|
2017-12-05 11:16:39 +00:00
|
|
|
|
|
|
|
read_types += "\n "
|
2022-04-11 10:46:29 +00:00
|
|
|
read_types += f"{arg_name} = {flag_type.title()}.read(b) if flags{number} & (1 << {index}) else None"
|
2017-12-05 11:16:39 +00:00
|
|
|
elif "vector" in flag_type.lower():
|
|
|
|
sub_type = arg_type.split("<")[1][:-1]
|
|
|
|
|
|
|
|
write_types += "\n "
|
2022-01-11 16:24:17 +00:00
|
|
|
write_types += f"if self.{arg_name}:\n "
|
2021-08-28 08:01:12 +00:00
|
|
|
write_types += "b.write(Vector(self.{}{}))\n ".format(
|
2020-08-22 06:05:05 +00:00
|
|
|
arg_name, f", {sub_type.title()}" if sub_type in CORE_TYPES else ""
|
2017-12-05 11:16:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
read_types += "\n "
|
2022-04-11 10:46:29 +00:00
|
|
|
read_types += "{} = TLObject.read(b{}) if flags{} & (1 << {}) else []\n ".format(
|
|
|
|
arg_name, f", {sub_type.title()}" if sub_type in CORE_TYPES else "", number, index
|
2017-12-05 11:16:39 +00:00
|
|
|
)
|
|
|
|
else:
|
|
|
|
write_types += "\n "
|
2020-08-22 06:05:05 +00:00
|
|
|
write_types += f"if self.{arg_name} is not None:\n "
|
2021-08-28 08:01:12 +00:00
|
|
|
write_types += f"b.write(self.{arg_name}.write())\n "
|
2017-12-05 11:16:39 +00:00
|
|
|
|
|
|
|
read_types += "\n "
|
2022-04-11 10:46:29 +00:00
|
|
|
read_types += f"{arg_name} = TLObject.read(b) if flags{number} & (1 << {index}) else None\n "
|
2017-12-05 11:16:39 +00:00
|
|
|
else:
|
2020-08-22 06:05:05 +00:00
|
|
|
if arg_type in CORE_TYPES:
|
2017-12-05 11:16:39 +00:00
|
|
|
write_types += "\n "
|
2021-08-28 08:01:12 +00:00
|
|
|
write_types += f"b.write({arg_type.title()}(self.{arg_name}))\n "
|
2017-12-05 11:16:39 +00:00
|
|
|
|
|
|
|
read_types += "\n "
|
2021-08-28 08:01:12 +00:00
|
|
|
read_types += f"{arg_name} = {arg_type.title()}.read(b)\n "
|
2017-12-05 11:16:39 +00:00
|
|
|
elif "vector" in arg_type.lower():
|
|
|
|
sub_type = arg_type.split("<")[1][:-1]
|
|
|
|
|
|
|
|
write_types += "\n "
|
2021-08-28 08:01:12 +00:00
|
|
|
write_types += "b.write(Vector(self.{}{}))\n ".format(
|
2020-08-22 06:05:05 +00:00
|
|
|
arg_name, f", {sub_type.title()}" if sub_type in CORE_TYPES else ""
|
2017-12-05 11:16:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
read_types += "\n "
|
2021-08-28 08:01:12 +00:00
|
|
|
read_types += "{} = TLObject.read(b{})\n ".format(
|
2020-08-22 06:05:05 +00:00
|
|
|
arg_name, f", {sub_type.title()}" if sub_type in CORE_TYPES else ""
|
2017-12-05 11:16:39 +00:00
|
|
|
)
|
|
|
|
else:
|
|
|
|
write_types += "\n "
|
2021-08-28 08:01:12 +00:00
|
|
|
write_types += f"b.write(self.{arg_name}.write())\n "
|
2017-12-05 11:16:39 +00:00
|
|
|
|
|
|
|
read_types += "\n "
|
2021-08-28 08:01:12 +00:00
|
|
|
read_types += f"{arg_name} = TLObject.read(b)\n "
|
2020-08-22 06:05:05 +00:00
|
|
|
|
|
|
|
slots = ", ".join([f'"{i[0]}"' for i in sorted_args])
|
|
|
|
return_arguments = ", ".join([f"{i[0]}={i[0]}" for i in sorted_args])
|
|
|
|
|
|
|
|
compiled_combinator = combinator_tmpl.format(
|
|
|
|
notice=notice,
|
|
|
|
warning=WARNING,
|
|
|
|
name=c.name,
|
|
|
|
docstring=docstring,
|
|
|
|
slots=slots,
|
|
|
|
id=c.id,
|
2020-08-30 09:17:20 +00:00
|
|
|
qualname=f"{c.section}.{c.qualname}",
|
2020-08-22 06:05:05 +00:00
|
|
|
arguments=arguments,
|
|
|
|
fields=fields,
|
|
|
|
read_types=read_types,
|
|
|
|
write_types=write_types,
|
|
|
|
return_arguments=return_arguments
|
|
|
|
)
|
|
|
|
|
|
|
|
directory = "types" if c.section == "types" else c.section
|
|
|
|
|
|
|
|
dir_path = DESTINATION_PATH / directory / c.namespace
|
|
|
|
|
|
|
|
os.makedirs(dir_path, exist_ok=True)
|
|
|
|
|
|
|
|
module = c.name
|
|
|
|
|
|
|
|
if module == "Updates":
|
|
|
|
module = "UpdatesT"
|
|
|
|
|
|
|
|
with open(dir_path / f"{snake(module)}.py", "w") as f:
|
|
|
|
f.write(compiled_combinator)
|
|
|
|
|
|
|
|
d = namespaces_to_constructors if c.section == "types" else namespaces_to_functions
|
|
|
|
|
|
|
|
if c.namespace not in d:
|
|
|
|
d[c.namespace] = []
|
|
|
|
|
|
|
|
d[c.namespace].append(c.name)
|
|
|
|
|
|
|
|
for namespace, types in namespaces_to_types.items():
|
|
|
|
with open(DESTINATION_PATH / "base" / namespace / "__init__.py", "w") as f:
|
|
|
|
f.write(f"{notice}\n\n")
|
|
|
|
f.write(f"{WARNING}\n\n")
|
|
|
|
|
|
|
|
for t in types:
|
|
|
|
module = t
|
2017-12-05 11:16:39 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
if module == "Updates":
|
|
|
|
module = "UpdatesT"
|
|
|
|
|
|
|
|
f.write(f"from .{snake(module)} import {t}\n")
|
|
|
|
|
|
|
|
if not namespace:
|
|
|
|
f.write(f"from . import {', '.join(filter(bool, namespaces_to_types))}")
|
|
|
|
|
|
|
|
for namespace, types in namespaces_to_constructors.items():
|
|
|
|
with open(DESTINATION_PATH / "types" / namespace / "__init__.py", "w") as f:
|
|
|
|
f.write(f"{notice}\n\n")
|
|
|
|
f.write(f"{WARNING}\n\n")
|
|
|
|
|
|
|
|
for t in types:
|
|
|
|
module = t
|
|
|
|
|
|
|
|
if module == "Updates":
|
|
|
|
module = "UpdatesT"
|
|
|
|
|
|
|
|
f.write(f"from .{snake(module)} import {t}\n")
|
|
|
|
|
|
|
|
if not namespace:
|
|
|
|
f.write(f"from . import {', '.join(filter(bool, namespaces_to_constructors))}\n")
|
|
|
|
|
|
|
|
for namespace, types in namespaces_to_functions.items():
|
|
|
|
with open(DESTINATION_PATH / "functions" / namespace / "__init__.py", "w") as f:
|
|
|
|
f.write(f"{notice}\n\n")
|
|
|
|
f.write(f"{WARNING}\n\n")
|
|
|
|
|
|
|
|
for t in types:
|
|
|
|
module = t
|
|
|
|
|
|
|
|
if module == "Updates":
|
|
|
|
module = "UpdatesT"
|
|
|
|
|
|
|
|
f.write(f"from .{snake(module)} import {t}\n")
|
|
|
|
|
|
|
|
if not namespace:
|
|
|
|
f.write(f"from . import {', '.join(filter(bool, namespaces_to_functions))}")
|
|
|
|
|
|
|
|
with open(DESTINATION_PATH / "all.py", "w", encoding="utf-8") as f:
|
2018-01-04 15:29:10 +00:00
|
|
|
f.write(notice + "\n\n")
|
2020-08-22 06:05:05 +00:00
|
|
|
f.write(WARNING + "\n\n")
|
|
|
|
f.write(f"layer = {layer}\n\n")
|
2018-01-04 15:29:10 +00:00
|
|
|
f.write("objects = {")
|
2017-12-05 11:16:39 +00:00
|
|
|
|
2018-01-04 15:29:10 +00:00
|
|
|
for c in combinators:
|
2020-08-22 06:05:05 +00:00
|
|
|
f.write(f'\n {c.id}: "pyrogram.raw.{c.section}.{c.qualname}",')
|
2018-04-24 14:08:33 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
f.write('\n 0xbc799737: "pyrogram.raw.core.BoolFalse",')
|
|
|
|
f.write('\n 0x997275b5: "pyrogram.raw.core.BoolTrue",')
|
|
|
|
f.write('\n 0x1cb5c415: "pyrogram.raw.core.Vector",')
|
|
|
|
f.write('\n 0x73f1f8dc: "pyrogram.raw.core.MsgContainer",')
|
|
|
|
f.write('\n 0xae500895: "pyrogram.raw.core.FutureSalts",')
|
|
|
|
f.write('\n 0x0949d9dc: "pyrogram.raw.core.FutureSalt",')
|
|
|
|
f.write('\n 0x3072cfa1: "pyrogram.raw.core.GzipPacked",')
|
|
|
|
f.write('\n 0x5bb8e511: "pyrogram.raw.core.Message",')
|
2017-12-05 11:16:39 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
f.write("\n}\n")
|
2017-12-05 11:16:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
if "__main__" == __name__:
|
2020-08-22 06:05:05 +00:00
|
|
|
HOME_PATH = Path(".")
|
|
|
|
DESTINATION_PATH = Path("../../pyrogram/raw")
|
|
|
|
NOTICE_PATH = Path("../../NOTICE")
|
|
|
|
|
|
|
|
start(format=False)
|