sectionparser.py 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. # -*- Mode: Python -*-
  2. # Copyright (C) 2013 Hat, Inc.
  3. #
  4. # This library is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU Lesser General Public
  6. # License as published by the Free Software Foundation; either
  7. # version 2 of the License, or (at your option) any later version.
  8. #
  9. # This library is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. # Lesser General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU Lesser General Public
  15. # License along with this library; if not, write to the
  16. # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  17. # Boston, MA 02111-1307, USA.
  18. #
  19. from __future__ import absolute_import
  20. from __future__ import division
  21. from __future__ import print_function
  22. from __future__ import unicode_literals
  23. import re
  24. from . import ast
  25. from .utils import to_underscores
  26. class SectionsFile(object):
  27. def __init__(self, sections):
  28. self.sections = sections
  29. class Section(object):
  30. def __init__(self):
  31. self.file = None
  32. self.title = None
  33. self.includes = None
  34. self.subsections = []
  35. class Subsection(object):
  36. def __init__(self, name):
  37. self.name = name
  38. self.symbols = []
  39. def parse_sections_file(lines):
  40. sections = []
  41. current_section = None
  42. current_subsection = None
  43. for line in lines:
  44. line = line.rstrip()
  45. if not line or line.isspace():
  46. continue
  47. if line == "<SECTION>":
  48. current_section = Section()
  49. sections.append(current_section)
  50. current_subsection = Subsection(None)
  51. current_section.subsections.append(current_subsection)
  52. continue
  53. if line == "</SECTION>":
  54. current_section = None
  55. continue
  56. match = re.match(r"<FILE>(?P<contents>.*)</FILE>", line)
  57. if match:
  58. current_section.file = match.groupdict['contents']
  59. continue
  60. match = re.match(r"<TITLE>(?P<contents>.*)</TITLE>", line)
  61. if match:
  62. current_section.title = match.groupdict['contents']
  63. continue
  64. match = re.match(r"<INCLUDE>(?P<contents>.*)</INCLUDE>", line)
  65. if match:
  66. current_section.includes = match.groupdict['contents']
  67. continue
  68. match = re.match(r"<SUBSECTION(?: (?P<name>.*))?>", line)
  69. if match:
  70. current_subsection = Subsection(match.groupdict.get('name', None))
  71. current_section.subsections.append(current_subsection)
  72. continue
  73. if line.startswith("<") and line.endswith(">"):
  74. # Other directive to gtk-doc, not a symbol.
  75. continue
  76. current_subsection.symbols.append(line)
  77. return SectionsFile(sections)
  78. def write_sections_file(f, sections_file):
  79. for section in sections_file.sections:
  80. f.write("\n<SECTION>\n")
  81. if section.file is not None:
  82. f.write("<FILE>%s</FILE>\n" % (section.file, ))
  83. if section.title is not None:
  84. f.write("<TITLE>%s</TITLE>\n" % (section.title, ))
  85. if section.includes is not None:
  86. f.write("<INCLUDE>%s</INCLUDE>\n" % (section.includes, ))
  87. is_first_subsection = True
  88. for subsection in section.subsections:
  89. if subsection.name is not None:
  90. f.write("<SUBSECTION %s>\n" % (subsection.name, ))
  91. elif not is_first_subsection:
  92. f.write("\n<SUBSECTION>\n")
  93. is_first_subsection = False
  94. for symbol in subsection.symbols:
  95. f.write(symbol + "\n")
  96. def generate_sections_file(transformer):
  97. ns = transformer.namespace
  98. sections = []
  99. def new_section(file_, title):
  100. section = Section()
  101. section.file = file_
  102. section.title = title
  103. section.subsections.append(Subsection(None))
  104. sections.append(section)
  105. return section
  106. def append_symbol(section, sym):
  107. section.subsections[0].symbols.append(sym)
  108. general_section = new_section("main", "Main")
  109. for node in ns.values():
  110. if isinstance(node, ast.Function):
  111. append_symbol(general_section, node.symbol)
  112. elif isinstance(node, (ast.Class, ast.Interface)):
  113. gtype_name = node.gtype_name
  114. file_name = to_underscores(gtype_name).replace('_', '-').lower()
  115. section = new_section(file_name, gtype_name)
  116. append_symbol(section, gtype_name)
  117. append_symbol(section, node.glib_type_struct.target_giname.replace('.', ''))
  118. for meth in node.methods:
  119. append_symbol(section, meth.symbol)
  120. for meth in node.static_methods:
  121. append_symbol(section, meth.symbol)
  122. return SectionsFile(sections)