]>
git.saurik.com Git - wxWidgets.git/blob - docs/doxygen/doxymlparser.py
4 License: wxWidgets License
8 Takes the output of Doxygen XML and parses it to retrieve metadata about the classes and methods.
10 To create the Doxygen XML files, from the wxWidgets/docs/doxygen directory, do:
14 To see the results from parsing a particular class, do:
16 python doxymlparser.py --report out/xml/classwx_<whatever>.xml
26 from xml
.dom
import minidom
29 "report" : (False, "Print out the classes and methods found by this script."),
32 parser
= optparse
.OptionParser(usage
="usage: %prog [options] <doxyml files to parse>\n" + __description__
, version
="%prog 1.0")
34 for opt
in option_dict
:
35 default
= option_dict
[opt
][0]
38 if type(default
) == types
.BooleanType
:
40 parser
.add_option("--" + opt
, default
=default
, action
=action
, dest
=opt
, help=option_dict
[opt
][1])
42 options
, arguments
= parser
.parse_args()
44 class ClassDefinition
:
48 self
.brief_description
= ""
49 self
.detailed_description
= ""
63 """ % (self
.name
, string
.join(self
.bases
, ", "), self
.includes
, self
.brief_description
, self
.detailed_description
)
64 str_repr
+= "Methods:\n"
66 for method
in self
.methods
:
67 str_repr
+= str(method
)
71 class MethodDefinition
:
78 self
.brief_description
= ""
79 self
.detailed_description
= ""
92 """ % (self
.name
, self
.return_type
, self
.params
, self
.definition
+ self
.argsstring
, self
.brief_description
, self
.detailed_description
)
95 def getTextValue(node
, recursive
=False):
97 for child
in node
.childNodes
:
98 if child
.nodeType
== child
.ELEMENT_NODE
and child
.nodeName
== "ref":
99 text
+= getTextValue(child
)
100 if child
.nodeType
== child
.TEXT_NODE
:
101 # Add a space to ensure we have a space between qualifiers and parameter names
102 text
+= child
.nodeValue
.strip() + " "
106 def doxyMLToText(node
):
113 def parse(self
, filename
):
114 self
.xmldoc
= minidom
.parse(filename
).documentElement
115 for node
in self
.xmldoc
.getElementsByTagName("compounddef"):
116 self
.classes
.append(self
.parse_class(node
))
118 def parse_class(self
, class_node
):
119 new_class
= ClassDefinition()
120 for node
in class_node
.childNodes
:
121 if node
.nodeName
== "compoundname":
122 new_class
.name
= getTextValue(node
)
123 print "Parsing class %s" % new_class
.name
124 elif node
.nodeName
== "basecompoundref":
125 new_class
.bases
.append(getTextValue(node
))
126 elif node
.nodeName
== "briefdescription":
127 # let the post-processor determ
128 new_class
.brief_description
= node
.toxml()
129 elif node
.nodeName
== "detaileddescription":
130 new_class
.detailed_description
= node
.toxml()
132 self
.parse_methods(new_class
, class_node
)
135 def parse_methods(self
, new_class
, root
):
136 for method
in root
.getElementsByTagName("memberdef"):
137 new_method
= MethodDefinition()
138 for node
in method
.childNodes
:
139 if node
.nodeName
== "name":
140 new_method
.name
= getTextValue(node
)
141 elif node
.nodeName
== "type":
142 new_method
.return_type
= getTextValue(node
)
143 elif node
.nodeName
== "definition":
144 new_method
.definition
= getTextValue(node
)
145 elif node
.nodeName
== "argsstring":
146 new_method
.argsstring
= getTextValue(node
)
147 elif node
.nodeName
== "param":
149 for child
in node
.childNodes
:
150 if child
.nodeType
== child
.ELEMENT_NODE
:
151 param
[child
.nodeName
] = getTextValue(child
)
152 new_method
.params
.append(param
)
153 print "Adding %s" % (new_method
.name
+ new_method
.argsstring
)
154 new_class
.methods
.append(new_method
)
156 if __name__
== "__main__":
157 if len(arguments
) < 1:
161 doxyparse
= DoxyMLParser()
162 for arg
in arguments
:
166 for aclass
in doxyparse
.classes
: