]> git.uio.no Git - u/mrichter/AliRoot.git/blob - doxygen/thtml2doxy_clang.py
doxy: parsing member comments is now idempotent
[u/mrichter/AliRoot.git] / doxygen / thtml2doxy_clang.py
1 #!/usr/bin/env python
2
3 ## @package thtml2doxy_clang
4 #  Translates THtml C++ comments to Doxygen using libclang as parser.
5 #
6 #  This code relies on Python bindings for libclang: libclang's interface is pretty unstable, and
7 #  its Python bindings are unstable as well.
8 #
9 #  AST (Abstract Source Tree) traversal is performed entirely using libclang used as a C++ parser,
10 #  instead of attempting to write a parser ourselves.
11 #
12 #  This code (expecially AST traversal) was inspired by:
13 #
14 #   - [Implementing a code generator with libclang](http://szelei.me/code-generator/)
15 #     (this refers to API calls used here)
16 #   - [Parsing C++ in Python with Clang](http://eli.thegreenplace.net/2011/07/03/parsing-c-in-python-with-clang)
17 #     (outdated, API calls described there do not work anymore, but useful to understand some basic
18 #     concepts)
19 #
20 #  Usage:
21 #
22 #    `thtml2doxy_clang file1 [file2 [file3...]]`
23 #
24 #  @author Dario Berzano <dario.berzano@cern.ch>
25 #  @date 2014-12-05
26
27
28 import sys
29 import os
30 import re
31 import logging
32 import getopt
33 import clang.cindex
34
35
36 ## Brain-dead color output for terminal.
37 class Colt(str):
38
39   def red(self):
40     return self.color('\033[31m')
41
42   def green(self):
43     return self.color('\033[32m')
44
45   def yellow(self):
46     return self.color('\033[33m')
47
48   def blue(self):
49     return self.color('\033[34m')
50
51   def magenta(self):
52     return self.color('\033[35m')
53
54   def cyan(self):
55     return self.color('\033[36m')
56
57   def color(self, c):
58     return c + self + '\033[m'
59
60
61 ## Comment.
62 class Comment:
63
64   def __init__(self, lines, first_line, first_col, last_line, last_col, indent, func):
65     self.lines = lines
66     self.first_line = first_line
67     self.first_col = first_col
68     self.last_line = last_line
69     self.last_col = last_col
70     self.indent = indent
71     self.func = func
72
73   def has_comment(self, line):
74     return line >= self.first_line and line <= self.last_line
75
76   def __str__(self):
77     return "<Comment for %s: [%d,%d:%d,%d] %s>" % (self.func, self.first_line, self.first_col, self.last_line, self.last_col, self.lines)
78
79
80 ## A data member comment.
81 class MemberComment:
82
83   def __init__(self, text, is_transient, array_size, first_line, first_col, func):
84     self.lines = [ text ]
85     self.is_transient = is_transient
86     self.array_size = array_size
87     self.first_line = first_line
88     self.first_col = first_col
89     self.func = func
90
91   def has_comment(self, line):
92     return line == self.first_line
93
94   def __str__(self):
95
96     if self.is_transient:
97       tt = '!transient! '
98     else:
99       tt = ''
100
101     if self.array_size is not None:
102       ars = '[%s] ' % self.array_size
103     else:
104       ars = ''
105
106     return "<MemberComment for %s: [%d,%d] %s%s%s>" % (self.func, self.first_line, self.first_col, tt, ars, self.lines[0])
107
108
109 ## A dummy comment that removes comment lines.
110 class RemoveComment(Comment):
111
112   def __init__(self, first_line, last_line):
113     self.first_line = first_line
114     self.last_line = last_line
115     self.func = '<remove>'
116
117   def __str__(self):
118     return "<RemoveComment: [%d,%d]>" % (self.first_line, self.last_line)
119
120
121 ## Parses method comments.
122 #
123 #  @param cursor   Current libclang parser cursor
124 #  @param comments Array of comments: new ones will be appended there
125 def comment_method(cursor, comments):
126
127   # we are looking for the following structure: method -> compound statement -> comment, i.e. we
128   # need to extract the first comment in the compound statement composing the method
129
130   in_compound_stmt = False
131   expect_comment = False
132   emit_comment = False
133
134   comment = []
135   comment_function = cursor.spelling or cursor.displayname
136   comment_line_start = -1
137   comment_line_end = -1
138   comment_col_start = -1
139   comment_col_end = -1
140   comment_indent = -1
141
142   for token in cursor.get_tokens():
143
144     if token.cursor.kind == clang.cindex.CursorKind.COMPOUND_STMT:
145       if not in_compound_stmt:
146         in_compound_stmt = True
147         expect_comment = True
148         comment_line_end = -1
149     else:
150       if in_compound_stmt:
151         in_compound_stmt = False
152         emit_comment = True
153
154     # tkind = str(token.kind)[str(token.kind).index('.')+1:]
155     # ckind = str(token.cursor.kind)[str(token.cursor.kind).index('.')+1:]
156
157     if in_compound_stmt:
158
159       if expect_comment:
160
161         extent = token.extent
162         line_start = extent.start.line
163         line_end = extent.end.line
164
165         if token.kind == clang.cindex.TokenKind.PUNCTUATION and token.spelling == '{':
166           pass
167
168         elif token.kind == clang.cindex.TokenKind.COMMENT and (comment_line_end == -1 or (line_start == comment_line_end+1 and line_end-line_start == 0)):
169           comment_line_end = line_end
170           comment_col_end = extent.end.column
171
172           if comment_indent == -1 or (extent.start.column-1) < comment_indent:
173             comment_indent = extent.start.column-1
174
175           if comment_line_start == -1:
176             comment_line_start = line_start
177             comment_col_start = extent.start.column
178           comment.extend( token.spelling.split('\n') )
179
180           # multiline comments are parsed in one go, therefore don't expect subsequent comments
181           if line_end - line_start > 0:
182             emit_comment = True
183             expect_comment = False
184
185         else:
186           emit_comment = True
187           expect_comment = False
188
189     if emit_comment:
190
191       comment = refactor_comment( comment )
192
193       if len(comment) > 0:
194         logging.debug("Comment found for function %s" % Colt(comment_function).magenta())
195         comments.append( Comment(comment, comment_line_start, comment_col_start, comment_line_end, comment_col_end, comment_indent, comment_function) )
196
197       comment = []
198       comment_line_start = -1
199       comment_line_end = -1
200       comment_col_start = -1
201       comment_col_end = -1
202       comment_indent = -1
203
204       emit_comment = False
205       break
206
207
208 ## Parses comments to class data members.
209 #
210 #  @param cursor   Current libclang parser cursor
211 #  @param comments Array of comments: new ones will be appended there
212 def comment_datamember(cursor, comments):
213
214   # Note: libclang 3.5 seems to have problems parsing a certain type of FIELD_DECL, so we revert
215   # to a partial manual parsing. When parsing fails, the cursor's "extent" is not set properly,
216   # returning a line range 0-0. We therefore make the not-so-absurd assumption that the datamember
217   # definition is fully on one line, and we take the line number from cursor.location.
218
219   line_num = cursor.location.line
220   raw = None
221   prev = None
222   found = False
223
224   # Huge overkill
225   with open(str(cursor.location.file)) as fp:
226     cur_line = 0
227     for raw in fp:
228       cur_line = cur_line + 1
229       if cur_line == line_num:
230         found = True
231         break
232       prev = raw
233
234   assert found, 'A line that should exist was not found in file' % cursor.location.file
235
236   recomm = r'(//(!)|///?)(\[(.*?)\])?<?\s*(.*?)\s*$'
237   recomm_doxyary = r'^\s*///\s*(.*?)\s*$'
238
239   mcomm = re.search(recomm, raw)
240   if mcomm:
241     member_name = cursor.spelling;
242     is_transient = mcomm.group(2) is not None
243     array_size = mcomm.group(4)
244     text = mcomm.group(5)
245
246     col_num = mcomm.start()+1;
247
248     if array_size is not None and prev is not None:
249       # ROOT arrays with comments already converted to Doxygen have the member description on the
250       # previous line
251       mcomm_doxyary = re.search(recomm_doxyary, prev)
252       if mcomm_doxyary:
253         text = mcomm_doxyary.group(1)
254         comments.append(RemoveComment(line_num-1, line_num-1))
255
256     logging.debug('Comment found for member %s' % Colt(member_name).magenta())
257
258     comments.append( MemberComment(
259       text,
260       is_transient,
261       array_size,
262       line_num,
263       col_num,
264       member_name ))
265
266   else:
267     assert False, 'Regular expression does not match member comment'
268
269
270 ## Traverse the AST recursively starting from the current cursor.
271 #
272 #  @param cursor    A Clang parser cursor
273 #  @param filename  Name of the current file
274 #  @param comments  Array of comments: new ones will be appended there
275 #  @param recursion Current recursion depth
276 def traverse_ast(cursor, filename, comments, recursion=0):
277
278   # libclang traverses included files as well: we do not want this behavior
279   if cursor.location.file is not None and str(cursor.location.file) != filename:
280     logging.debug("Skipping processing of included %s" % cursor.location.file)
281     return
282
283   text = cursor.spelling or cursor.displayname
284   kind = str(cursor.kind)[str(cursor.kind).index('.')+1:]
285
286   indent = ''
287   for i in range(0, recursion):
288     indent = indent + '  '
289
290   if cursor.kind == clang.cindex.CursorKind.CXX_METHOD or cursor.kind == clang.cindex.CursorKind.CONSTRUCTOR or cursor.kind == clang.cindex.CursorKind.DESTRUCTOR:
291
292     # cursor ran into a C++ method
293     logging.debug( "%5d %s%s(%s)" % (cursor.extent.start.line, indent, Colt(kind).magenta(), Colt(text).blue()) )
294     comment_method(cursor, comments)
295
296   elif cursor.kind == clang.cindex.CursorKind.FIELD_DECL:
297
298     # cursor ran into a data member declaration
299     logging.debug( "%5d %s%s(%s)" % (cursor.extent.start.line, indent, Colt(kind).magenta(), Colt(text).blue()) )
300     comment_datamember(cursor, comments)
301
302   else:
303
304     logging.debug( "%5d %s%s(%s)" % (cursor.extent.start.line, indent, kind, text) )
305
306   for child_cursor in cursor.get_children():
307     traverse_ast(child_cursor, filename, comments, recursion+1)
308
309
310 ## Remove garbage from comments and convert special tags from THtml to Doxygen.
311 #
312 #  @param comment An array containing the lines of the original comment
313 def refactor_comment(comment):
314
315   recomm = r'^(/{2,}|/\*)?\s*(.*?)\s*((/{2,})?\s*|\*/)$'
316
317   new_comment = []
318   insert_blank = False
319   wait_first_non_blank = True
320   for line_comment in comment:
321     mcomm = re.search( recomm, line_comment )
322     if mcomm:
323       new_line_comment = mcomm.group(2)
324       if new_line_comment == '':
325         insert_blank = True
326       else:
327         if insert_blank and not wait_first_non_blank:
328           new_comment.append('')
329           insert_blank = False
330         wait_first_non_blank = False
331         new_comment.append( new_line_comment )
332     else:
333       assert False, 'Comment regexp does not match'
334
335   return new_comment
336
337
338 ## Rewrites all comments from the given file handler.
339 #
340 #  @param fhin     The file handler to read from
341 #  @param fhout    The file handler to write to
342 #  @param comments Array of comments
343 def rewrite_comments(fhin, fhout, comments):
344
345   line_num = 0
346   in_comment = False
347   skip_empty = False
348   comm = None
349   prev_comm = None
350
351   rindent = r'^(\s*)'
352
353   for line in fhin:
354
355     line_num = line_num + 1
356
357     # Find current comment
358     prev_comm = comm
359     comm = None
360     for c in comments:
361       if c.has_comment(line_num):
362         comm = c
363
364     if comm:
365
366       if isinstance(comm, MemberComment):
367         non_comment = line[ 0:comm.first_col-1 ]
368
369         if comm.array_size is not None:
370
371           mindent = re.search(rindent, line)
372           if comm.is_transient:
373             tt = '!'
374           else:
375             tt = ''
376
377           # Special case: we need multiple lines not to confuse ROOT's C++ parser
378           fhout.write('%s/// %s\n%s//%s[%s]\n' % (
379             mindent.group(1),
380             comm.lines[0],
381             non_comment,
382             tt,
383             comm.array_size
384           ))
385
386         else:
387
388           if comm.is_transient:
389             tt = '!'
390           else:
391             tt = '/'
392
393           fhout.write('%s//%s< %s\n' % (
394             non_comment,
395             tt,
396             comm.lines[0]
397           ))
398
399       elif isinstance(comm, RemoveComment):
400         # Do nothing: just skip line
401         pass
402
403       elif prev_comm is None:
404         # Beginning of a new comment block of type Comment
405         in_comment = True
406
407         # Extract the non-comment part and print it if it exists
408         non_comment = line[ 0:comm.first_col-1 ].rstrip()
409         if non_comment != '':
410           fhout.write( non_comment + '\n' )
411
412     else:
413
414       if in_comment:
415
416         # We have just exited a comment block of type Comment
417         in_comment = False
418
419         # Dump revamped comment, if applicable
420         text_indent = ''
421         for i in range(0,prev_comm.indent):
422           text_indent = text_indent + ' '
423
424         for lc in prev_comm.lines:
425           fhout.write( "%s/// %s\n" % (text_indent, lc) );
426         fhout.write('\n')
427         skip_empty = True
428
429       line_out = line.rstrip('\n')
430       if skip_empty:
431         skip_empty = False
432         if line_out.strip() != '':
433           fhout.write( line_out + '\n' )
434       else:
435         fhout.write( line_out + '\n' )
436
437
438 ## The main function.
439 #
440 #  Return value is the executable's return value.
441 def main(argv):
442
443   # Setup logging on stderr
444   log_level = logging.INFO
445   logging.basicConfig(
446     level=log_level,
447     format='%(levelname)-8s %(funcName)-20s %(message)s',
448     stream=sys.stderr
449   )
450
451   # Parse command-line options
452   output_on_stdout = False
453   try:
454     opts, args = getopt.getopt( argv, 'od', [ 'debug=', 'stdout' ] )
455     for o, a in opts:
456       if o == '--debug':
457         log_level = getattr( logging, a.upper(), None )
458         if not isinstance(log_level, int):
459           raise getopt.GetoptError('log level must be one of: DEBUG, INFO, WARNING, ERROR, CRITICAL')
460       elif o == '-d':
461         log_level = logging.DEBUG
462       elif o == '-o' or o == '--stdout':
463         logging.debug('Output on stdout instead of replacing original files')
464         output_on_stdout = True
465       else:
466         assert False, 'Unhandled argument'
467   except getopt.GetoptError as e:
468     logging.fatal('Invalid arguments: %s' % e)
469     return 1
470
471   logging.getLogger('').setLevel(log_level)
472
473   # Attempt to load libclang from a list of known locations
474   libclang_locations = [
475     '/usr/lib/llvm-3.5/lib/libclang.so.1',
476     '/usr/lib/libclang.so',
477     '/Library/Developer/CommandLineTools/usr/lib/libclang.dylib'
478   ]
479   libclang_found = False
480
481   for lib in libclang_locations:
482     if os.path.isfile(lib):
483       clang.cindex.Config.set_library_file(lib)
484       libclang_found = True
485       break
486
487   if not libclang_found:
488     logging.fatal('Cannot find libclang')
489     return 1
490
491   # Loop over all files
492   for fn in args:
493
494     logging.info('Input file: %s' % Colt(fn).magenta())
495     index = clang.cindex.Index.create()
496     translation_unit = index.parse(fn, args=['-x', 'c++'])
497
498     comments = []
499     traverse_ast( translation_unit.cursor, fn, comments )
500     for c in comments:
501
502       logging.debug("Comment found for entity %s:" % Colt(c.func).magenta())
503
504       if isinstance(c, MemberComment):
505
506         if c.is_transient:
507           transient_text = Colt('transient ').yellow()
508         else:
509           transient_text = ''
510
511         if c.array_size is not None:
512           array_text = Colt('arraysize=%s ' % c.array_size).yellow()
513         else:
514           array_text = ''
515
516         logging.debug(
517           "%s %s%s{%s}" % ( \
518             Colt("[%d,%d]" % (c.first_line, c.first_col)).green(),
519             transient_text,
520             array_text,
521             Colt(c.lines[0]).cyan()
522         ))
523
524       elif isinstance(c, RemoveComment):
525
526         logging.debug( Colt('[%d,%d]' % (c.first_line, c.last_line)).green() )
527
528       else:
529         for l in c.lines:
530           logging.debug(
531             Colt("[%d,%d:%d,%d] " % (c.first_line, c.first_col, c.last_line, c.last_col)).green() +
532             "{%s}" % Colt(l).cyan()
533           )
534
535     try:
536
537       if output_on_stdout:
538         with open(fn, 'r') as fhin:
539           rewrite_comments( fhin, sys.stdout, comments )
540       else:
541         fn_back = fn + '.thtml2doxy_backup'
542         os.rename( fn, fn_back )
543
544         with open(fn_back, 'r') as fhin, open(fn, 'w') as fhout:
545           rewrite_comments( fhin, fhout, comments )
546
547         os.remove( fn_back )
548         logging.info("File %s converted to Doxygen: check differences before committing!" % Colt(fn).magenta())
549     except (IOError,OSError) as e:
550       logging.error('File operation failed: %s' % e)
551
552   return 0
553
554
555 if __name__ == '__main__':
556   sys.exit( main( sys.argv[1:] ) )