-
Notifications
You must be signed in to change notification settings - Fork 0
/
doxygen_filter_dragonscript.py
executable file
·616 lines (504 loc) · 15.6 KB
/
doxygen_filter_dragonscript.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os.path
import string
import sys
import re
## regular expression matching a newline
reNewline = re.compile(r''' \n | : ''', re.VERBOSE)
## regular expression white spaces including line splicing but not a newline itself
reWhitespaces = re.compile(r''' ([ \t] | \\ \n)+ ''', re.VERBOSE)
## regular expression matching a single line comment
reCommentSingleLine = re.compile(r''' // [^\n]* \n ''', re.VERBOSE)
## regular expression matching a multiline comment
reCommentMultiline = re.compile(r''' / \* .*? \* / ''', re.VERBOSE | re.DOTALL)
## regular expression matching anything until the end of line including line splicing
reLineRemaining = re.compile(r''' (\\ \n | [^:\n])* (: | \n) ''', re.VERBOSE)
## regular expression for an identifier
reIdentifier = re.compile(r''' \w+ ''', re.VERBOSE | re.DOTALL)
## regular expression for an operator
reOperator = re.compile(r'''
\<\<= | \>\>= |
\+\+ | \-\- | \<\< | \>\> | \<= | \>= | &= | \|= | \^= | %= | \+= | \-= | \*= | /= |
\+ | \- | \* | % | / | & | \| | \^ | \< | \> | ~
''', re.VERBOSE)
## regular expression for a type
reType = re.compile(r'''
\w+ ([ \t] | \\ \n)* (\. ([ \t] | \\ \n)* \w+ ([ \t] | \\ \n)*)*
''', re.VERBOSE | re.DOTALL)
## regular expression for an equal sign
reInitVariable = re.compile(r''' = ''', re.VERBOSE | re.DOTALL)
## regular expression for a comma
reFuncArgDelimiter = re.compile(r''' , ''', re.VERBOSE | re.DOTALL)
## regular expression for an opening paranthesis
reFuncArgBegin = re.compile(r''' \( ''', re.VERBOSE | re.DOTALL)
## regular expression for a closing paranthesis
reFuncArgEnd = re.compile(r''' \) ''', re.VERBOSE | re.DOTALL)
## regular expression for end keyword
reKeywordEnd = re.compile(r''' end ''', re.VERBOSE | re.DOTALL)
## regular expression for script up to next keyword
reScriptKeyword = re.compile(r'''
(?P<modifiers> (((public | protected | private | abstract | static | fixed) ([ \t] | \\ \n)+)*)*)
(?P<keyword> namespace | pin | requires | class | interface)
''', re.VERBOSE | re.DOTALL)
## regular expression for namespace
reNamespace = re.compile(r'''
([ \t] | \\ \n)+
(?P<name> \w+ ([ \t] | \\ \n)* (\. ([ \t] | \\ \n)* \w+ ([ \t] | \\ \n)*)*)
(: | \n)
''', re.VERBOSE)
## regular expression for pinning
rePin = re.compile(r'''
([ \t] | \\ \n)+
(?P<name> \w+ ([ \t] | \\ \n)* (\. ([ \t] | \\ \n)* \w+ ([ \t] | \\ \n)*)*)
(: | \n)
''', re.VERBOSE)
## regular expression for require package
reRequires = re.compile(r'''
([ \t] | \\ \n)+
(?P<name> \w+ ([ \t] | \\ \n)* (\. ([ \t] | \\ \n)* \w+ ([ \t] | \\ \n)*)*)
(: | \n)
''', re.VERBOSE)
## regular expression for class
reClass = re.compile(r'''
([ \t] | \\ \n)+
(?P<name> \w+)
([ \t] | \\ \n)*
(extends ([ \t] | \\ \n)+
(?P<extend> \w+ ([ \t] | \\ \n)* (\. ([ \t] | \\ \n)* \w+ ([ \t] | \\ \n)*)*))?
(implements ([ \t] | \\ \n)+
(?P<implements> \w+ ([ \t] | \\ \n)* (\. ([ \t] | \\ \n)* \w+ ([ \t] | \\ \n)*)*
(, ([ \t] | \\ \n)* \w+ ([ \t] | \\ \n)* (\. ([ \t] | \\ \n)* \w+ ([ \t] | \\ \n)*)*)*))?
(: | \n)
''', re.VERBOSE)
## regular expression for modifier keywords
reModifiers = re.compile(r'''
(((public | protected | private | abstract | static | fixed) ([ \t] | \\ \n)+)*)
''', re.VERBOSE | re.DOTALL)
## regular expresion for class body keyword
reClassBodyKeyword = re.compile(r'''
class | interface | enum | func | var | end
''', re.VERBOSE | re.DOTALL)
## regular expresion for interface body keyword
reInterfaceBodyKeyword = re.compile(r'''
class | interface | enum | func | end
''', re.VERBOSE | re.DOTALL)
## regular expression for interface
reInterface = re.compile(r'''
([ \t] | \\ \n)+
(?P<name> \w+)
([ \t] | \\ \n)*
(extends ([ \t] | \\ \n)+ (?P<extend> \w+ ([ \t] | \\ \n)* (\. ([ \t] | \\ \n)* \w+ ([ \t] | \\ \n)*)*))?
(: | \n)
''', re.VERBOSE)
## regular expression for handling function body skipping
reFuncBodyFirstKeyword = re.compile(r'''
(?P<keyword> if | select | for | while | try | end)
[ \t:\n/"']
''', re.VERBOSE)
reFuncBodyInlineKeyword = re.compile(r'''
(
(/[*] .* [*]/)
| (" (\\" | [^"\n])* ")
| (' (\\' | [^'\n])* ')
| [^"':\n]
)+
block [ \t:\n/"']
''', re.VERBOSE)
reFuncBodySkip = re.compile(r'''
(.* | \\n)* (\n | :)
''', re.VERBOSE)
## parse comments and empty lines. returns content afterwards
def parseWhitespaces(content, printContent = True):
while True:
m = reWhitespaces.match(content)
if not m:
m = reCommentSingleLine.match(content)
if not m:
m = reCommentMultiline.match(content)
if not m:
break
if printContent:
sys.stdout.write(content[:m.end()])
content = content[m.end():]
return content
## parse whitespaces and newlines
def parseWhitespacesNewline(content, printContent = True):
while True:
m = reWhitespaces.match(content)
if not m:
m = reCommentSingleLine.match(content)
if not m:
m = reCommentMultiline.match(content)
if not m:
m = reNewline.match(content)
if not m:
break
if printContent:
sys.stdout.write(content[:m.end()])
content = content[m.end():]
return content
## parse remaining line until newline
def parseRemainingLine(content, printContent = False):
m = reLineRemaining.match(content)
if m:
if printContent:
sys.stdout.write(content[:m.end()])
content = content[m.end():]
return content
## parse remaining line until newline returning the parsed content
def parseRemainingLineReturn(content):
m = reLineRemaining.match(content)
if m:
return (content[m.end():], content[:m.end()])
return (content, '')
## parse script content
def parseScript(content):
namespaceOpen = False
while True:
content = parseWhitespacesNewline(content)
m = reScriptKeyword.match(content)
if not m:
sys.stdout.write(content)
break
#sys.stdout.write(content[:m.start('keyword')])
content = content[m.end():]
modifiers = m.group('modifiers').strip() if m.group('modifiers') else None
keyword = m.group('keyword')
if keyword == 'namespace':
if namespaceOpen:
sys.stdout.write('};\n')
namespaceOpen = False
m = reNamespace.match(content)
if not m:
sys.stdout.write('namespace')
continue
sys.stdout.write('package {};\n'.format(m.group('name')))
content = content[m.end():]
namespaceOpen = True
elif keyword == 'pin':
m = rePin.match(content)
if not m:
sys.stdout.write('pin')
continue
sys.stdout.write('import {}.*;\n'.format(m.group('name')))
content = content[m.end():]
elif keyword == 'requires':
m = reRequires.match(content)
if not m:
sys.stdout.write('requires')
continue
sys.stdout.write('import {}.*;\n'.format(m.group('name')))
content = content[m.end():]
elif keyword == 'class':
content = parseClass(content, modifiers)
elif keyword == 'interface':
content = parseInterface(content, modifiers)
else:
sys.stdout.write(content)
content = ''
## parse class. return content after class end
def parseClass(content, modifiers = None):
m = reClass.match(content)
if not m:
sys.stdout.write('class')
return content
content = content[m.end():]
className = m.group('name').strip()
extendName = m.group('extend').strip() if m.group('extend') else 'Object'
implements = m.group('implements').strip() if m.group('implements') else None
if modifiers:
printModifiers(modifiers)
else:
sys.stdout.write('public ')
sys.stdout.write('class {}'.format(className))
sys.stdout.write(' extends {}'.format(extendName))
if implements:
sys.stdout.write(' implements {}'.format(implements))
sys.stdout.write(' {\n')
# parse body
while True:
content = parseWhitespacesNewline(content)
m = reModifiers.match(content)
if not m:
sys.stdout.write(content)
content = ''
break
modifiers = m.group().strip().split()
content = content[m.end():]
content = parseWhitespaces(content, False)
m = reClassBodyKeyword.match(content)
if not m:
sys.stdout.write(content)
content = ''
break
keyword = m.group().strip()
content = content[m.end():]
if keyword == 'class':
content = parseClass(content, modifiers)
elif keyword == 'interface':
content = parseInterface(content, modifiers)
elif keyword == 'enum':
content = parseClassEnum(content, modifiers)
elif keyword == 'var':
content = parseClassVar(content, modifiers)
elif keyword == 'func':
content = parseClassFunc(content, modifiers, className)
elif keyword == 'end':
content = parseRemainingLine(content, False)
break
sys.stdout.write('};\n')
return content
## print modifiers
def printModifiers(modifiers):
if 'public' in modifiers:
sys.stdout.write('public ')
elif 'protected' in modifiers:
sys.stdout.write('protected ')
elif 'private' in modifiers:
sys.stdout.write('private ')
else:
sys.stdout.write('public ')
if 'static' in modifiers:
sys.stdout.write('static ')
if 'fixed' in modifiers:
sys.stdout.write('final ')
## parse class body enumeration
def parseClassEnum(content, modifiers):
content = parseWhitespaces(content, False)
m = reIdentifier.match(content)
if not m:
sys.stdout.write(content)
return ''
name = m.group().strip()
content = content[m.end():]
content = parseRemainingLine(content)
printModifiers(modifiers)
sys.stdout.write('enum {}{{\n'.format(name))
# parse entries
while True:
content = parseWhitespacesNewline(content)
m = reKeywordEnd.match(content)
if m:
content = parseRemainingLine(content[m.end():])
break
m = reIdentifier.match(content)
if not m:
sys.stdout.write(content)
content = ''
break
name = m.group().strip()
content = parseRemainingLine(content[m.end():], False)
sys.stdout.write('{},\n'.format(name.strip()))
sys.stdout.write('};\n')
return content
## parse class body variable
def parseClassVar(content, modifiers):
content = parseWhitespaces(content, False)
m = reType.match(content)
if not m:
sys.stdout.write(content)
return ''
vartype = m.group().strip()
content = content[m.end():]
content = parseWhitespaces(content, False)
m = reIdentifier.match(content)
if not m:
sys.stdout.write(content)
return ''
name = m.group().strip()
content = content[m.end():]
content = parseWhitespaces(content, False)
init = None
m = reInitVariable.match(content)
if m:
content = parseWhitespaces(content[m.end():], False)
(content, remaining) = parseRemainingLineReturn(content)
init = remaining.strip()
else:
content = parseRemainingLine(content)
printModifiers(modifiers)
if init:
sys.stdout.write('{} {} = {};\n'.format(vartype, name, init))
else:
sys.stdout.write('{} {};\n'.format(vartype, name))
return content
## parse class body function
def parseClassFunc(content, modifiers, constrType):
printModifiers(modifiers)
content = parseFuncDef(content, constrType)
# super constructor if present
content = parseRemainingLine(content, False)
# function body
sys.stdout.write(';\n')
content = parseFuncBody(content)
return content
## parse function definition
def parseFuncDef(content, constrType = ''):
content = parseWhitespaces(content, False)
m = reType.match(content)
if not m:
sys.stdout.write(content)
return ''
vartype = m.group().strip()
content = content[m.end():]
operator = ''
m = reFuncArgBegin.match(content)
if m:
name = vartype
vartype = constrType
else:
content = parseWhitespaces(content, False)
m = reOperator.match(content)
if m:
operator = True
else:
m = reIdentifier.match(content)
if not m:
sys.stdout.write(content)
return ''
name = m.group().strip()
content = content[m.end():]
m = reFuncArgBegin.match(content)
if not m:
sys.stdout.write(content)
return ''
content = content[m.end():]
if operator:
sys.stdout.write('{} operator{}('.format(vartype, name))
else:
sys.stdout.write('{} {}('.format(vartype, name))
m = reFuncArgEnd.match(content)
if m:
content = content[m.end():]
else:
while True:
content = parseWhitespaces(content, False)
m = reType.match(content)
if not m:
sys.stdout.write(content)
return ''
vartype = m.group().strip()
content = content[m.end():]
content = parseWhitespaces(content, False)
m = reIdentifier.match(content)
if not m:
sys.stdout.write(content)
return ''
name = m.group().strip()
content = content[m.end():]
sys.stdout.write('{} {}'.format(vartype, name))
content = parseWhitespaces(content, False)
m = reFuncArgEnd.match(content)
if m:
content = content[m.end():]
break
m = reFuncArgDelimiter.match(content)
if not m:
sys.stdout.write(content)
return ''
content = content[m.end():]
sys.stdout.write(', ')
sys.stdout.write(')')
return content
## parse function body skipping all content
#counter = 0
def parseFuncBody(content):
#global counter
#counter = counter+1
while True:
# skip white spaces from the start of the line
content = parseWhitespacesNewline(content, False)
# check if this is a keyword with a body at the start of the line
m = reFuncBodyFirstKeyword.match(content)
if m:
#print(counter, 'reFuncBodyFirstKeyword', content[:m.end()])
if m.group('keyword') == 'end':
#counter = counter-1
return content[m.end():]
content = parseFuncBody(content[m.end():])
continue
# check if the line contains an inline keyword with a body
m = reFuncBodyInlineKeyword.match(content)
if m:
#print(counter, 'reFuncBodyInlineKeyword', content[:m.end()])
content = parseFuncBody(content[m.end():])
continue
# skip the rest of the line
m = reFuncBodySkip.match(content)
if m:
#print(counter, 'reFuncBodySkip', content[:m.end()])
content = content[m.end():]
else:
return ''
return content
## parse interface. return content after interface end
def parseInterface(content, modifiers = None):
m = reInterface.match(content)
if not m:
sys.stdout.write('class')
return content
content = content[m.end():]
interfaceName = m.group('name').strip()
extendName = m.group('extend').strip() if m.group('extend') else None
if modifiers:
printModifiers(modifiers)
sys.stdout.write('public interface {}'.format(interfaceName))
if extendName:
sys.stdout.write(' extends {}'.format(extendName))
sys.stdout.write(' {\n')
# parse body
while True:
content = parseWhitespacesNewline(content)
m = reModifiers.match(content)
if not m:
sys.stdout.write(content)
content = ''
break
modifiers = m.group().split()
content = content[m.end():]
content = parseWhitespaces(content, False)
m = reInterfaceBodyKeyword.match(content)
if not m:
sys.stdout.write(content)
content = ''
break
keyword = m.group()
content = content[m.end():]
if keyword == 'class':
content = parseClass(content, modifiers)
elif keyword == 'interface':
content = parseInterface(content, modifiers)
elif keyword == 'enum':
content = parseClassEnum(content, modifiers)
elif keyword == 'func':
content = parseInterfaceFunc(content, modifiers)
elif keyword == 'end':
content = parseRemainingLine(content, False)
break
sys.stdout.write('};\n')
return content
## parse interface body function
def parseInterfaceFunc(content, modifiers):
printModifiers(modifiers)
sys.stdout.write('public ')
content = parseFuncDef(content)
sys.stdout.write(';\n')
return content
## open file and filter content
def filter(filename):
try:
with open(filename, 'r') as f:
content = f.read()
parseScript(content)
except UnicodeDecodeError as e:
sys.stderr.write('{}: contains non-UTF8 characters!\n'.format(filename))
sys.exit(2)
except IOError as e:
sys.stderr.write('{}\n'.format(e[1]))
sys.exit(3)
if len(sys.argv) != 2:
print('usage: {} filename'.format(sys.argv[0]))
sys.exit(1)
filter(sys.argv[1])
sys.exit(0)