forked from SergeySatskiy/cdm-pythonparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cdmpyparser.py
629 lines (497 loc) · 21 KB
/
cdmpyparser.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
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
# -*- coding: utf-8 -*-
#
# codimension - graphics python two-way code editor and analyzer
# Copyright (C) 2010-2017 Sergey Satskiy <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
"""The file holds types and a glue code between python and C python parser"""
from sys import maxsize
import _cdmpyparser
def trim_docstring(docstring):
"""Taken from http://www.python.org/dev/peps/pep-0257/"""
if not docstring:
return ''
# Convert tabs to spaces (following the normal Python rules)
# and split into a list of lines:
lines = docstring.expandtabs().splitlines()
# Determine minimum indentation (first line doesn't count):
indent = maxsize
for line in lines[1:]:
stripped = line.lstrip()
if stripped:
indent = min(indent, len(line) - len(stripped))
# Remove indentation (first line is special):
lines[0] = lines[0].strip()
if indent < maxsize:
index = 1
for line in lines[1:]:
lines[index] = line[indent:].rstrip()
index += 1
# Strip off trailing and leading blank lines:
while lines and not lines[-1]:
del lines[-1]
while lines and not lines[0]:
del lines[0]
# Return a single string:
return '\n'.join(lines)
class ModuleInfoBase(object):
"""Common part for the module information"""
__slots__ = ["name", "line", "pos", "absPosition"]
def __init__(self, name, line, pos, absPosition):
self.name = name # Item identifier
self.line = line # Line number where item is found (1-based)
self.pos = pos # Item position in the line (1-based)
self.absPosition = absPosition # Absolute position of the first item
# identifier character starting from
# the beginning of the input stream
# (0-based)
def isPrivate(self):
"""True if it is private"""
return self.name.startswith('__')
def isProtected(self):
"""True if it is protected"""
return not self.isPrivate() and self.name.startswith('_')
def _getLPA(self):
"""Provides line, pos and absPosition line as string"""
return ':'.join([str(self.line), str(self.pos), str(self.absPosition)])
def getDisplayName(self):
"""Provides a name for display purpose.
It is going to be overriden in deriving classes
"""
return self.name
class Encoding(ModuleInfoBase):
"""Holds information about encoding string"""
__slots__ = []
def __init__(self, encName, line, pos, absPosition):
ModuleInfoBase.__init__(self, encName, line, pos, absPosition)
def __str__(self):
return "Encoding[" + self._getLPA() + "]: '" + self.name + "'"
class ImportWhat(ModuleInfoBase):
"""Holds information about a single imported item"""
__slots__ = ["alias"]
def __init__(self, whatName, line, pos, absPosition):
ModuleInfoBase.__init__(self, whatName, line, pos, absPosition)
self.alias = ''
def __str__(self):
if self.alias == '':
return self.name + "[" + self._getLPA() + "]"
return self.name + "[" + self._getLPA() + "] as " + self.alias
def getDisplayName(self):
"""Provides a name for display purpose respecting the alias"""
if self.alias == "":
return self.name
return self.name + " as " + self.alias
class Import(ModuleInfoBase):
"""Holds information about a single import name"""
__slots__ = ["alias", "what"]
def __init__(self, importName, line, pos, absPosition):
ModuleInfoBase.__init__(self, importName, line, pos, absPosition)
self.alias = ""
self.what = []
def __str__(self):
out = "Import[" + self._getLPA() + "]: '" + self.name + "'"
if self.alias != "":
out += " as '" + self.alias + "'"
whatPart = ""
for item in self.what:
whatPart += "\n " + str(item)
return out + whatPart
def getDisplayName(self):
"""Provides a name for display purpose respecting the alias"""
if self.alias == "":
return self.name
return self.name + " as " + self.alias
class Global(ModuleInfoBase):
"""Holds information about a single global variable"""
__slots__ = []
def __init__(self, globalName, line, pos, absPosition):
ModuleInfoBase.__init__(self, globalName, line, pos, absPosition)
def __str__(self):
return "Global[" + self._getLPA() + "]: '" + self.name + "'"
class ClassAttribute(ModuleInfoBase):
"""Holds information about a class attribute"""
__slots__ = []
def __init__(self, attrName, line, pos, absPosition):
ModuleInfoBase.__init__(self, attrName, line, pos, absPosition)
def __str__(self):
return "Class attribute[" + self._getLPA() + "]: '" + self.name + "'"
class InstanceAttribute(ModuleInfoBase):
"""Holds information about a class instance attribute"""
__slots__ = []
def __init__(self, attrName, line, pos, absPosition):
ModuleInfoBase.__init__(self, attrName, line, pos, absPosition)
def __str__(self):
return "Instance attribute[" + self._getLPA() + "]: '" + \
self.name + "'"
class Decorator(ModuleInfoBase):
"""Holds information about a class/function decorator"""
__slots__ = ["arguments"]
def __init__(self, decorName, line, pos, absPosition):
ModuleInfoBase.__init__(self, decorName, line, pos, absPosition)
self.arguments = []
def __str__(self):
val = "Decorator[" + self._getLPA() + "]: '" + self.name
if self.arguments:
val += "( "
first = True
for item in self.arguments:
if first:
val += item
first = False
else:
val += ", " + item
val += " )"
val += "'"
return val
def getDisplayName(self):
"""Provides a name for display purpose"""
displayName = self.name
if self.arguments:
displayName += "( " + ", ".join(self.arguments) + " )"
return displayName
class Docstring(object):
"""Holds a docstring information"""
__slots__ = ["line", "text"]
def __init__(self, text, line):
self.line = line
self.text = text
def __str__(self):
return "Docstring[" + str(self.line) + "]: '" + self.text + "'"
class Argument:
"""Holds an information about an argument"""
__slots__ = ["name", "annotation", "value"]
def __init__(self, name, annotation):
self.name = name
self.annotation = annotation
self.value = None
def __str__(self):
output = self.name
if self.annotation is not None:
output += ': ' + self.annotation
if self.value is not None:
output += ' = ' + self.value
return output
class Function(ModuleInfoBase):
"""Holds information about a single function"""
__slots__ = ["keywordLine", "keywordPos", "colonLine", "colonPos",
"docstring", "arguments", "decorators", "functions",
"classes", "isAsync", "returnAnnotation"]
def __init__(self, funcName, line, pos, absPosition,
keywordLine, keywordPos,
colonLine, colonPos, isAsync,
returnAnnotation):
ModuleInfoBase.__init__(self, funcName, line, pos, absPosition)
self.keywordLine = keywordLine # line where 'def' keyword
# starts (1-based).
self.keywordPos = keywordPos # pos where 'def' keyword
# starts (1-based).
self.colonLine = colonLine # line where ':' char starts (1-based)
self.colonPos = colonPos # pos where ':' char starts (1-based)
self.isAsync = isAsync
self.returnAnnotation = returnAnnotation
self.docstring = None
self.arguments = [] # instances of the Argument class
self.decorators = []
self.functions = [] # nested functions
self.classes = [] # nested classes
def isStaticMethod(self):
"""Returns True if it is a static method"""
for item in self.decorators:
if item.name == 'staticmethod':
return True
return False
def niceStringify(self, level):
"""Returns a string representation with new lines and shifts"""
out = level * " " + \
"Function[" + str(self.keywordLine) + \
":" + str(self.keywordPos) + \
":" + self._getLPA() + \
":" + str(self.colonLine) + \
":" + str(self.colonPos) + \
"]: '" + self.name + "'"
if self.isAsync:
out += " (async)"
if self.returnAnnotation is not None:
out += " -> '" + self.returnAnnotation + "'"
for item in self.arguments:
out += '\n' + level * " " + "Argument: '" + str(item) + "'"
for item in self.decorators:
out += '\n' + level * " " + str(item)
if self.docstring is not None:
out += '\n' + level * " " + str(self.docstring)
for item in self.functions:
out += '\n' + item.niceStringify(level + 1)
for item in self.classes:
out += '\n' + item.niceStringify(level + 1)
return out
def getDisplayName(self):
"""Provides a name for display purpose"""
displayName = self.name + "("
if self.isAsync:
displayName = "async " + displayName
first = True
for arg in self.arguments:
if first:
displayName += " " + str(arg)
first = False
else:
displayName += ", " + str(arg)
if self.arguments:
displayName += " "
displayName += ")"
if self.returnAnnotation is not None:
displayName += ' -> ' + self.returnAnnotation
return displayName
class Class(ModuleInfoBase):
"""Holds information about a single class"""
__slots__ = ["keywordLine", "keywordPos", "colonLine", "colonPos",
"docstring", "base", "decorators", "classAttributes",
"instanceAttributes", "functions", "classes"]
def __init__(self, className, line, pos, absPosition,
keywordLine, keywordPos,
colonLine, colonPos):
ModuleInfoBase.__init__(self, className, line, pos, absPosition)
self.keywordLine = keywordLine # line where 'def' keyword
# starts (1-based).
self.keywordPos = keywordPos # pos where 'def' keyword
# starts (1-based).
self.colonLine = colonLine # line where ':' char starts (1-based)
self.colonPos = colonPos # pos where ':' char starts (1-based)
self.docstring = None
self.base = []
self.decorators = []
self.classAttributes = []
self.instanceAttributes = []
self.functions = [] # member functions
self.classes = [] # nested classes
def niceStringify(self, level):
"""Returns a string representation with new lines and shifts"""
out = level * " " + \
"Class[" + str(self.keywordLine) + \
":" + str(self.keywordPos) + \
":" + self._getLPA() + \
":" + str(self.colonLine) + \
":" + str(self.colonPos) + \
"]: '" + self.name + "'"
for item in self.base:
out += '\n' + level * " " + "Base class: '" + item + "'"
for item in self.decorators:
out += '\n' + level * " " + str(item)
if self.docstring is not None:
out += '\n' + level * " " + str(self.docstring)
for item in self.classAttributes:
out += '\n' + level * " " + str(item)
for item in self.instanceAttributes:
out += '\n' + level * " " + str(item)
for item in self.functions:
out += '\n' + item.niceStringify(level + 1)
for item in self.classes:
out += '\n' + item.niceStringify(level + 1)
return out
def getDisplayName(self):
" Provides a name for display purpose "
displayName = self.name
if self.base:
displayName += "( " + ", ".join(self.base) + " )"
return displayName
class BriefModuleInfo(object):
"""Holds a single module content information"""
__slots__ = ["isOK", "docstring", "encoding", "imports", "globals",
"functions", "classes", "errors", "lexerErrors",
"objectsStack", "__lastImport", "__lastDecorators"]
def __init__(self):
self.isOK = True
self.docstring = None
self.encoding = None
self.imports = []
self.globals = []
self.functions = []
self.classes = []
self.errors = []
self.lexerErrors = []
self.objectsStack = []
self.__lastImport = None
self.__lastDecorators = None
def niceStringify(self):
"""Returns a string representation with new lines and shifts"""
out = ""
if self.docstring is not None:
out += str(self.docstring)
if self.encoding is not None:
if out != "":
out += '\n'
out += str(self.encoding)
for item in self.imports:
if out != "":
out += '\n'
out += str(item)
for item in self.globals:
if out != "":
out += '\n'
out += str(item)
for item in self.functions:
if out != "":
out += '\n'
out += item.niceStringify(0)
for item in self.classes:
if out != "":
out += '\n'
out += item.niceStringify(0)
return out
def flush(self):
"""Flushes the collected information"""
self.__flushLevel(0)
if self.__lastImport is not None:
self.imports.append(self.__lastImport)
def __flushLevel(self, level):
"""Merge the found objects to the required level"""
objectsCount = len(self.objectsStack)
while objectsCount > level:
lastIndex = objectsCount - 1
if lastIndex == 0:
# We have exactly one element in the stack
if self.objectsStack[0].__class__.__name__ == "Class":
self.classes.append(self.objectsStack[0])
else:
self.functions.append(self.objectsStack[0])
self.objectsStack = []
break
# Append to the previous level
if self.objectsStack[lastIndex].__class__.__name__ == "Class":
self.objectsStack[lastIndex - 1].classes. \
append(self.objectsStack[lastIndex])
else:
self.objectsStack[lastIndex - 1].functions. \
append(self.objectsStack[lastIndex])
del self.objectsStack[lastIndex]
objectsCount -= 1
def _onEncoding(self, encString, line, pos, absPosition):
"""Memorizes module encoding"""
self.encoding = Encoding(encString, line, pos, absPosition)
def _onGlobal(self, name, line, pos, absPosition, level):
"""Memorizes a global variable"""
# level is ignored
for item in self.globals:
if item.name == name:
return
self.globals.append(Global(name, line, pos, absPosition))
def _onClass(self, name, line, pos, absPosition,
keywordLine, keywordPos,
colonLine, colonPos, level):
"""Memorizes a class"""
self.__flushLevel(level)
c = Class(name, line, pos, absPosition, keywordLine, keywordPos,
colonLine, colonPos)
if self.__lastDecorators is not None:
c.decorators = self.__lastDecorators
self.__lastDecorators = None
self.objectsStack.append(c)
def _onFunction(self, name, line, pos, absPosition,
keywordLine, keywordPos,
colonLine, colonPos, level,
isAsync, returnAnnotation):
"""Memorizes a function"""
self.__flushLevel(level)
f = Function(name, line, pos, absPosition, keywordLine, keywordPos,
colonLine, colonPos, isAsync, returnAnnotation)
if self.__lastDecorators is not None:
f.decorators = self.__lastDecorators
self.__lastDecorators = None
self.objectsStack.append(f)
def _onImport(self, name, line, pos, absPosition):
"""Memorizes an import"""
if self.__lastImport is not None:
self.imports.append(self.__lastImport)
self.__lastImport = Import(name, line, pos, absPosition)
def _onAs(self, name):
"""Memorizes an alias for an import or an imported item"""
if self.__lastImport.what:
self.__lastImport.what[-1].alias = name
else:
self.__lastImport.alias = name
def _onWhat(self, name, line, pos, absPosition):
"""Memorizes an imported item"""
self.__lastImport.what.append(ImportWhat(name, line, pos, absPosition))
def _onClassAttribute(self, name, line, pos, absPosition, level):
"""Memorizes a class attribute"""
# A class must be on the top of the stack
attributes = self.objectsStack[level].classAttributes
for item in attributes:
if item.name == name:
return
attributes.append(ClassAttribute(name, line, pos, absPosition))
def _onInstanceAttribute(self, name, line, pos, absPosition, level):
"""Memorizes a class instance attribute"""
# Instance attributes may appear in member functions only so we already
# have a function on the stack of objects. To get the class object one
# more step is required so we -1 here.
attributes = self.objectsStack[level - 1].instanceAttributes
for item in attributes:
if item.name == name:
return
attributes.append(InstanceAttribute(name, line, pos, absPosition))
def _onDecorator(self, name, line, pos, absPosition):
"""Memorizes a function or a class decorator"""
# A class or a function must be on the top of the stack
d = Decorator(name, line, pos, absPosition)
if self.__lastDecorators is None:
self.__lastDecorators = [d]
else:
self.__lastDecorators.append(d)
def _onDecoratorArgument(self, name):
"""Memorizes a decorator argument"""
self.__lastDecorators[-1].arguments.append(name)
def _onDocstring(self, docstr, line):
"""Memorizes a function/class/module docstring"""
if self.objectsStack:
self.objectsStack[-1].docstring = \
Docstring(trim_docstring(docstr), line)
else:
self.docstring = Docstring(trim_docstring(docstr), line)
def _onArgument(self, name, annotation):
"""Memorizes a function argument"""
self.objectsStack[-1].arguments.append(Argument(name, annotation))
def _onArgumentValue(self, value):
"""Memorizes a function argument value"""
self.objectsStack[-1].arguments[-1].value = value
def _onBaseClass(self, name):
"""Memorizes a class base class"""
# A class must be on the top of the stack
self.objectsStack[-1].base.append(name)
def _onError(self, message):
"""Memorizies a parser error message"""
self.isOK = False
if message.strip() != "":
self.errors.append(message)
def _onLexerError(self, message):
"""Memorizes a lexer error message"""
self.isOK = False
if message.strip() != "":
self.lexerErrors.append(message)
def getBriefModuleInfoFromFile(fileName):
"""Builds the brief module info from file"""
modInfo = BriefModuleInfo()
_cdmpyparser.getBriefModuleInfoFromFile(modInfo, fileName)
modInfo.flush()
return modInfo
def getBriefModuleInfoFromMemory(content):
"""Builds the brief module info from memory"""
modInfo = BriefModuleInfo()
_cdmpyparser.getBriefModuleInfoFromMemory(modInfo, content)
modInfo.flush()
return modInfo
def getVersion():
"""Provides the parser version"""
return _cdmpyparser.version