-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpysphinx.py
executable file
·489 lines (401 loc) · 19.3 KB
/
pysphinx.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
"""Вспомогательный модуль для скрипта
Содержит функции для парсинга конструкций языка python"""
import os
import re
import ast
import json
import tokenize
from typing import Union
from typing import Any
from io import StringIO
_path = str
_ast_body = list
def _get_docstring_line(
filepath: _path,
construction: Union[ast.ClassDef, ast.FunctionDef]
) -> int:
"""
Получить номер строки, куда вставить docstring;
-----------------------------------------------
.. Получает на вход объект конструкции
ast и путь до файла .py где она находиться,
и возвращает номер строки, где нужно
вставлять docstring
:param filepath: ``_path``
.. Путь до файла с конструкцией;
:param construction: ``Union[
ast.ClassDef,
ast.Functiondef,
ast.AsyncFunctionDef
]``
.. Ast объект конструкции;
:returns: ``int``
.. Возвращает номер строки;
"""
# Получаем сегмент кода для парсинга
with open(filepath) as f:
segment = StringIO(
ast.get_source_segment(
f.read(),
construction,
padded=False
)
)
# Разбираем переданную конструкцию
unparsed_construction = ast.unparse(construction).split("\n");
# Перебираем её элементы (игнорируем декораторы)
for index, line in enumerate(unparsed_construction):
if line[0] != '@':
# Поскольку драный ast не сохраняет
# целостность конструкции, а именно,
# меняет одинарные ковычки на двойные и
# наоборот, удаляет комментарии и т.д.
# приходиться адаптировать разобранные
# и полученные строки к одному формату
unparsed_construction = line\
.replace(" ", "")\
.replace('"', "'");
break;
prev_results = [] # Предыдущие совпадения
results_line = "" # "Результативная" собранная строка
# Перебираем "токены"
for token in tokenize.generate_tokens(segment.readline):
if token.start[0] > 0:
# Поскольку драный ast не сохраняет
# целостность конструкции, а именно,
# меняет одинарные ковычки на двойные и
# наоборот, удаляет комментарии и т.д.
# приходиться адаптировать разобранные
# и полученные строки к одному формату
trimmed_line = token.line.strip()\
.replace(" ", "")\
.replace('"', "'")
trimmed_line = re.sub(r'#.*', '', trimmed_line)
# Если не пустая строка
if trimmed_line:
# Считаем совпадения и
# генерируем идентичную строку
res = None;
# Одно лишнее условие по вышеописанной
# проблеме
if trimmed_line in unparsed_construction:
if trimmed_line not in prev_results:
res = trimmed_line;
elif trimmed_line.replace('():', ':') in unparsed_construction:
if trimmed_line not in prev_results:
res = trimmed_line.replace('():', ':');
# Если найдено совпадение, то
# запоминаем его
if res:
results_line += res
prev_results.append(res)
# Если собранная строка совпадает
# с переданной, разобранной выше, то
# вычисляем корректное местоположение
# строки документации и выдаем его (номер строки)
if results_line == unparsed_construction:
if isinstance(construction.body[0], ast.Expr):
return construction.body[0].lineno
return construction.lineno + len(prev_results)
return construction.lineno
def _parse_entry(module,
line: int,
near_line: int = 0,
level: int = 1
) -> list:
"""
Функция для получения конструкции (рекурсивная);
------------------------------------------------
.. Получает на вход тело файла/текст, где
находиться конструкция и возращает её
и её вложенность;
:param module: ``module ast from parse`` - default: None
.. Модуль (Python код), полученный из ast.parse('filepath');
:param line: ``int``
.. Номер строки, на которой сейчас находится курсор;
:param near_line: ``int`` - default: 0
.. Номер строки ближайшей конструкции - Не обязательный параметр;
:param level: ``int`` - default: 1
.. Уровень вложенности конструкции - Не обязательный параметр;
:returns; ``list/False``
.. Возвращает список [
Уровень вложенности/False,
Конструкцию/"текст ошибки",
Тип конструкции/None
]/False
"""
# Обработка аргументов
line = int(line)
near_line = int(near_line)
level = int(level)
construction_types = (ast.FunctionDef, ast.ClassDef, ast.AsyncFunctionDef)
message = "Код пуст или не найдено ближайших конструкций \"_parse_entry\""
type_construction = None
construction = None
for el in module.body:
if type(el) in construction_types:
if el.lineno <= line:
if near_line < el.lineno:
near_line = el.lineno
construction = el
if not construction:
return [None, [message]]
result_entry = _parse_entry(construction, line, near_line, (level + 1))
if result_entry[0]:
level = result_entry[0]
construction = result_entry[1]
type_construction = result_entry[2]
if isinstance(module, ast.ClassDef):
type_construction = "method"
return [level, construction, type_construction]
def _parse_construct(
code: _path,
line: int
) -> list:
"""
Распарсить переданную конструкцию python;
-----------------------------------------
.. Получает на вход текст кода (или путь до файла с кодом) и
возвращает разобранную конструкцию в виде
``[
Уровень вложенности,
"Тип конструкции",
["тип returns", "описание", [аргументы...]]
]``
Но если была передана конструкция, в которой допущена ошибка, то
вернет текст ошибки;
:param code: ``Union[str, path]``
.. Путь до файла с конструкциями;
:param line: ``int`` - default: 0
.. Номер строки, где находиться курсор;
:returns: ``list[Union[str, list]]``
.. Возвращает список [
Уровень вложенности,
"Тип конструкции"/None,
Номер строки, где вставить docstring,
[
номер строки где начинается docstring,
номер строки где кончается,
]/None,
[
"Тип returns"/None,
"Description"/None
[
["name", "type", "default_value"],
["name", False, "default_value"],
["name", False, False],
]
],
Номер строки, где находиться конструкция
]
"""
# Обработка аргументов
code = str(code)
line = int(line)
# Обработка исключений
# Если код с ошибкой, то возвращаем её
try:
# Если передан файл, то получаем содержимое и
# передаем в ast.parse
code = os.path.abspath(os.path.expanduser(code))
with open(code) as f:
module = ast.parse(f.read())
except Exception as error:
return [None, [str(error)]]
# Если код имеет больше одной конструкции и
# не был передан аргумент "name", то возвращаем ошибку
len_constructs = len(module.body)
if not len_constructs:
message = "Файл с кодом пустой: \"{code}\""
return [None, [message]]
# Рекурсивно перебирая все элементы получаем нужный
result_entry = _parse_entry(module, line)
# Если конструкции не найдены
# то необходимо писать документацию
# для модуля
if not result_entry[0]:
expr = module.body[0];
lines, description = (
[expr.lineno, expr.end_lineno] if isinstance(expr, ast.Expr) else None,
ast.unparse(expr) if isinstance(expr, ast.Expr) else None
)
return [
0, 'module', 0, lines, [
code.split('/')[-1], description, []
]
];
level = result_entry[0]
type_construction = result_entry[2] # Тип конструкции (функция, класс, метод)
construct = result_entry[1]
returns = "None" # Типизация функции (что она возвращает)
description = None # Описание (если оно есть)
arguments = [] # Аргументы
# Получаем аргументы/аттрибуты. Их:
# Название
# Типизацию
# Значение по умолчанию
argument: Any # Написал, чтобы не вылезала ошибка incopitable assigment...
default_value: Any # Написал, чтобы не вылезала ошибка incopitable assigment...
start_docstring_line = float('inf') # Номер строки, где начинается docstring
end_docstring_line = 0 # Номер строки, где заканчивается docstring
# Описание конструкции (если она есть)
# А также получение номера строк, где
# начинается и заканчивается уже созданный docstring
if isinstance(construct.body[0], ast.Expr):
if "targets" not in construct.body[0].__dict__:
for el in construct.body:
if not isinstance(el, ast.Expr):
break
elif isinstance(el.value, ast.Constant):
if el.lineno < start_docstring_line:
start_docstring_line = el.lineno
if el.end_lineno:
if el.end_lineno > end_docstring_line:
end_docstring_line = el.end_lineno
unparsed = ast.unparse(el)
if description:
if len(description) > description:
description = unparsed
else:
description = unparsed
def detect_function(type_construction, async_function = False):
async_function = "async-" if async_function else ""
if construct.decorator_list:
declist = construct.decorator_list
if isinstance(declist[0], ast.Name):
if declist[0].id == "staticmethod":
type_construction = f"{async_function}static-method"
elif declist[0].id == "classmethod":
type_construction = f"{async_function}class-method"
elif declist[0].id == "abstractmethod":
type_construction = f"{async_function}abstract-method"
elif declist[0].id == "abstractproperty":
type_construction = f"{async_function}abstract-property-method"
elif type_construction == "method":
type_construction = f"{async_function}decorated-method"
else:
type_construction = f"{async_function}decorated-function"
elif type_construction == "method":
type_construction = f"{async_function}{type_construction}"
else:
if not type_construction:
type_construction = f"{async_function}function"
len_args = len(construct.args.args)
len_defaults = len(construct.args.defaults)
for i in range(len_args):
argument = construct.args.args[i]
# Типизация аргумента (если не None, то str название, иначе None)
annotation = ast.unparse(argument.annotation) if argument.annotation else argument.annotation
j = (len_args - i)
default_value = ast.unparse(construct.args.defaults[-j]) if j <= len_defaults else None
arguments.append([
argument.arg,
annotation,
default_value
])
return type_construction
if isinstance(construct, ast.FunctionDef):
type_construction = detect_function(type_construction)
# Типизация возвращения (если не None, то str название, иначе None)
returns = ast.unparse(construct.returns) if construct.returns else "None"
# Тип конструкции (функция, класс, метод...)
elif isinstance(construct, ast.AsyncFunctionDef):
type_construction = detect_function(type_construction, True)
# Типизация возвращения (если не None, то str название, иначе None)
returns = ast.unparse(construct.returns) if construct.returns else "None"
elif isinstance(construct, ast.ClassDef):
# Тип конструкции (функция, класс, метод...)
names_abstract = ("ABC", "ABCMeta", "abc.ABC", "abc.ABCMeta")
names_interface = ("zope.interface.Interface", "Interface", "interface.Interface")
async_class = ""
if len(construct.body) > 0:
for arg in construct.body:
if (isinstance(arg, ast.AsyncFunctionDef) and arg.name == "__init__"):
async_class = "async-"
break
decorated_class = ""
if construct.decorator_list:
decorated_class = "decorated-"
if construct.bases:
baseslist = construct.bases
if isinstance(baseslist[0], ast.Name):
if baseslist[0].id in names_abstract:
type_construction = f"{async_class}{decorated_class}abstract-class"
elif baseslist[0].id in names_interface:
type_construction = f"{async_class}{decorated_class}interface"
if not type_construction:
type_construction = "inheritance-class"
elif construct.keywords:
keywords = construct.keywords
if isinstance(keywords[0].value, ast.Name):
if keywords[0].value.id in names_abstract:
type_construction = f"{async_class}{decorated_class}abstract-class"
elif keywords[0].value.id in names_interface:
type_construction = f"{async_class}{decorated_class}interface"
if not type_construction:
type_construction = f"{async_class}{decorated_class}inheritance-class"
elif len(construct.body) > 1:
for arg in construct.body:
if isinstance(arg, ast.Assign) and isinstance(arg.targets[0], ast.Name) and isinstance(arg.value, ast.Name):
if arg.targets[0].id == "__metaclass__":
if arg.value.id in names_abstract:
type_construction = f"{async_class}{decorated_class}abstract-class"
if not type_construction:
type_construction = f"{async_class}{decorated_class}class"
# Типизация возвращения
returns = construct.name
len_args = len(construct.body)
for i in range(len_args):
argument = construct.body[i]
if isinstance(argument, ast.AnnAssign):
name = ast.unparse(argument.target)
# Типизация аргумента (если не None, то str название, иначе None)
annotation = ast.unparse(argument.annotation) if argument.annotation else argument.annotation
default_value = ast.unparse(argument.value) if argument.value else argument.value
arguments.append([
name,
annotation,
default_value
])
# Убираем ковычки
if description:
description = description[:-1][1:]
# Если конструкция не найдена, то возвращаем None
if isinstance(start_docstring_line, float):
lines_docstring = None
else:
lines_docstring = [start_docstring_line, end_docstring_line]
return [
level,
type_construction,
_get_docstring_line(code, construct),
lines_docstring,
[
returns,
description,
arguments
],
]
def print_construct(
code: Union[str, _path],
line: int
):
"""
Вывести в stdout результат работы parse_construct;
:param code: ``Union[str, _path]``
.. Либо строку кода, либо путь до файла
с кодом
:param line: ``int``
.. На какой линии находятся курсор
"""
try:
printmessage = _parse_construct(code, line)
except Exception as error:
err = str(error)
printmessage = [err, [err]]
print(
json.dumps(
printmessage,
ensure_ascii=False
)
)