]> sigrok.org Git - libsigrok.git/blame - bindings/cxx/enums.py
bindings: Better error handling in enumeration get() function.
[libsigrok.git] / bindings / cxx / enums.py
CommitLineData
c23c8659
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
3532ed01 20from xml.etree import ElementTree
c23c8659
ML
21from collections import OrderedDict
22import sys, os, re
23
3532ed01 24index_file = sys.argv[1]
6884b52b 25
c23c8659
ML
26# Get directory this script is in.
27dirname = os.path.dirname(os.path.realpath(__file__))
28
33c84e81
MC
29outdirname = "bindings/cxx"
30if not os.path.exists(os.path.join(outdirname, 'include/libsigrok')):
31 os.makedirs(os.path.join(outdirname, 'include/libsigrok'))
32
c23c8659 33mapping = dict([
84c87085
ML
34 ('sr_loglevel', ('LogLevel', 'Log verbosity level')),
35 ('sr_packettype', ('PacketType', 'Type of datafeed packet')),
36 ('sr_mq', ('Quantity', 'Measured quantity')),
37 ('sr_unit', ('Unit', 'Unit of measurement')),
38 ('sr_mqflag', ('QuantityFlag', 'Flag applied to measured quantity')),
39 ('sr_configkey', ('ConfigKey', 'Configuration key')),
40 ('sr_datatype', ('DataType', 'Configuration data type')),
41 ('sr_channeltype', ('ChannelType', 'Channel type')),
42 ('sr_trigger_matches', ('TriggerMatchType', 'Trigger match type'))])
c23c8659 43
3532ed01 44index = ElementTree.parse(index_file)
c23c8659
ML
45
46# Build mapping between class names and enumerations.
3532ed01
ML
47
48classes = OrderedDict()
49
50for compound in index.findall('compound'):
51 if compound.attrib['kind'] != 'file':
52 continue
53 filename = os.path.join(
54 os.path.dirname(index_file),
55 '%s.xml' % compound.attrib['refid'])
56 doc = ElementTree.parse(filename)
57 for section in doc.find('compounddef').findall('sectiondef'):
58 if section.attrib["kind"] != 'enum':
59 continue
60 for member in section.findall('memberdef'):
61 if member.attrib["kind"] != 'enum':
62 continue
63 name = member.find('name').text
64 if name in mapping:
65 classes[member] = mapping[name]
c23c8659 66
33c84e81
MC
67header = open(os.path.join(outdirname, 'include/libsigrok/enums.hpp'), 'w')
68code = open(os.path.join(outdirname, 'enums.cpp'), 'w')
c23c8659
ML
69
70for file in (header, code):
71 print >> file, "/* Generated file - edit enums.py instead! */"
72
73# Template for beginning of class declaration and public members.
74header_public_template = """
84c87085 75/** {brief} */
c23c8659
ML
76class SR_API {classname} : public EnumValue<enum {enumname}>
77{{
78public:
79 static const {classname} *get(int id);
80"""
81
82# Template for beginning of private members.
83header_private_template = """
84private:
3b161085 85 static const std::map<enum {enumname}, const {classname} *> _values;
c23c8659
ML
86 {classname}(enum {enumname} id, const char name[]);
87"""
88
89# Template for class method definitions.
90code_template = """
91{classname}::{classname}(enum {enumname} id, const char name[]) :
92 EnumValue<enum {enumname}>(id, name)
93{{
94}}
95
96const {classname} *{classname}::get(int id)
97{{
174bf146
JS
98 if (_values.find(static_cast<{enumname}>(id)) == _values.end())
99 throw Error(SR_ERR_ARG);
100
3b161085 101 return {classname}::_values.at(static_cast<{enumname}>(id));
c23c8659
ML
102}}
103"""
104
84c87085
ML
105def get_text(node):
106 return str.join('\n\n',
107 [p.text.rstrip() for p in node.findall('para')])
108
109for enum, (classname, classbrief) in classes.items():
3532ed01
ML
110
111 enum_name = enum.find('name').text
84c87085
ML
112 members = enum.findall('enumvalue')
113 member_names = [m.find('name').text for m in members]
3532ed01 114 trimmed_names = [re.sub("^SR_[A-Z]+_", "", n) for n in member_names]
84c87085 115 briefs = [get_text(m.find('briefdescription')) for m in members]
c23c8659
ML
116
117 # Begin class and public declarations
118 print >> header, header_public_template.format(
84c87085 119 brief=classbrief, classname=classname, enumname=enum_name)
c23c8659
ML
120
121 # Declare public pointers for each enum value
84c87085
ML
122 for trimmed_name, brief in zip(trimmed_names, briefs):
123 if brief:
124 print >> header, '\t/** %s */' % brief
3532ed01
ML
125 print >> header, '\tstatic const %s * const %s;' % (
126 classname, trimmed_name)
c23c8659
ML
127
128 # Declare additional methods if present
129 filename = os.path.join(dirname, "%s_methods.hpp" % classname)
130 if os.path.exists(filename):
131 print >> header, str.join('', open(filename).readlines())
132
133 # Begin private declarations
134 print >> header, header_private_template.format(
3532ed01 135 classname=classname, enumname=enum_name)
c23c8659
ML
136
137 # Declare private constants for each enum value
3532ed01 138 for trimmed_name in trimmed_names:
c23c8659
ML
139 print >> header, '\tstatic const %s _%s;' % (classname, trimmed_name)
140
141 # End class declaration
142 print >> header, '};'
143
144 # Begin class code
145 print >> code, code_template.format(
3532ed01 146 classname=classname, enumname=enum_name)
c23c8659
ML
147
148 # Define private constants for each enum value
3532ed01 149 for name, trimmed_name in zip(member_names, trimmed_names):
c23c8659
ML
150 print >> code, 'const %s %s::_%s = %s(%s, "%s");' % (
151 classname, classname, trimmed_name, classname, name, trimmed_name)
152
153 # Define public pointers for each enum value
3532ed01 154 for trimmed_name in trimmed_names:
c23c8659
ML
155 print >> code, 'const %s * const %s::%s = &%s::_%s;' % (
156 classname, classname, trimmed_name, classname, trimmed_name)
157
158 # Define map of enum values to constants
3b161085 159 print >> code, 'const std::map<enum %s, const %s *> %s::_values = {' % (
3532ed01
ML
160 enum_name, classname, classname)
161 for name, trimmed_name in zip(member_names, trimmed_names):
c23c8659
ML
162 print >> code, '\t{%s, %s::%s},' % (name, classname, trimmed_name)
163 print >> code, '};'
164
165 # Define additional methods if present
166 filename = os.path.join(dirname, "%s_methods.cpp" % classname)
167 if os.path.exists(filename):
168 print >> code, str.join('', open(filename).readlines())