]> sigrok.org Git - libsigrok.git/blame - bindings/swig/doc.py
python: Give all enum values __doc__ strings.
[libsigrok.git] / bindings / swig / doc.py
CommitLineData
bd4fda24
ML
1##
2## This file is part of the libsigrok project.
3##
4## Copyright (C) 2014 Martin Ling <martin-sigrok@earth.li>
5##
6## This program is free software: you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation, either version 3 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
17## along with this program. If not, see <http://www.gnu.org/licenses/>.
18##
19
8fa3fc7c 20from __future__ import print_function
bd4fda24
ML
21from xml.etree import ElementTree
22import sys, os
23
df979d6d
ML
24language, input_file = sys.argv[1:3]
25if len(sys.argv) == 4:
26 mode = sys.argv[3]
bd4fda24
ML
27input_dir = os.path.dirname(input_file)
28
29index = ElementTree.parse(input_file)
30
31def get_text(node):
32 paras = node.findall('para')
33 return str.join('\n\n', [p.text.rstrip() for p in paras if p.text])
34
35for compound in index.findall('compound'):
36 if compound.attrib['kind'] != 'class':
37 continue
38 class_name = compound.find('name').text
39 if not class_name.startswith('sigrok::'):
40 continue
ef9643a2 41 trimmed_name = class_name.split('::')[1]
bd4fda24
ML
42 doc = ElementTree.parse("%s/%s.xml" % (input_dir, compound.attrib['refid']))
43 cls = doc.find('compounddef')
44 brief = get_text(cls.find('briefdescription'))
45 if brief:
46 if language == 'python':
8fa3fc7c 47 print('%%feature("docstring") %s "%s";' % (class_name, brief))
bd4fda24 48 elif language == 'java':
8fa3fc7c
ML
49 print('%%typemap(javaclassmodifiers) %s "/** %s */\npublic class"' % (
50 class_name, brief))
8fb7efe2 51 constants = []
bd4fda24 52 for section in cls.findall('sectiondef'):
8fb7efe2
ML
53 kind = section.attrib['kind']
54 if kind not in ('public-func', 'public-static-attrib'):
bd4fda24 55 continue
8fb7efe2
ML
56 for member in section.findall('memberdef'):
57 member_name = member.find('name').text
58 brief = get_text(member.find('briefdescription')).replace('"', '\\"')
5cad31c7 59 parameters = {}
8fb7efe2 60 for para in member.find('detaileddescription').findall('para'):
5cad31c7
ML
61 paramlist = para.find('parameterlist')
62 if paramlist is not None:
63 for param in paramlist.findall('parameteritem'):
64 namelist = param.find('parameternamelist')
65 name = namelist.find('parametername').text
66 description = get_text(param.find('parameterdescription'))
67 if description:
68 parameters[name] = description
bd4fda24 69 if brief:
ef9643a2 70 if language == 'python' and kind == 'public-func':
8fa3fc7c 71 print(str.join('\n', [
5cad31c7 72 '%%feature("docstring") %s::%s "%s' % (
8fb7efe2 73 class_name, member_name, brief)] + [
5cad31c7 74 '@param %s %s' % (name, desc)
8fa3fc7c 75 for name, desc in parameters.items()]) + '";')
ef9643a2 76 elif language == 'java' and kind == 'public-func':
8fb7efe2
ML
77 print(str.join('\n', [
78 '%%javamethodmodifiers %s::%s "/** %s' % (
79 class_name, member_name, brief)] + [
80 ' * @param %s %s' % (name, desc)
81 for name, desc in parameters.items()])
82 + ' */\npublic"')
ef9643a2
ML
83 elif kind == 'public-static-attrib':
84 constants.append((member_name, brief))
8fb7efe2
ML
85 if language == 'java' and constants:
86 print('%%typemap(javacode) %s %%{' % class_name)
87 for member_name, brief in constants:
8fb7efe2
ML
88 print(' /** %s */\n public static final %s %s = new %s(classesJNI.%s_%s_get(), false);\n' % (
89 brief, trimmed_name, member_name, trimmed_name,
90 trimmed_name, member_name))
91 print('%}')
ef9643a2 92 elif language == 'python' and constants:
df979d6d
ML
93 if mode == 'start':
94 print('%%extend %s {\n%%pythoncode %%{' % class_name)
95 for member_name, brief in constants:
96 print(' ## @brief %s\n %s = None' % (brief, member_name))
97 print('%}\n}')
98 elif mode == 'end':
99 print('%pythoncode %{')
100 for member_name, brief in constants:
101 print('%s.%s.__doc__ = """%s"""' % (
102 trimmed_name, member_name, brief))
103 print('%}')