libsigrok/bindings/cxx/enums.py

164 lines
6.2 KiB
Python
Raw Normal View History

2014-07-17 17:39:49 +00:00
##
## This file is part of the libsigrok project.
##
## Copyright (C) 2014 Martin Ling <martin-sigrok@earth.li>
##
## This program is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/>.
##
from xml.etree import ElementTree
2014-07-17 17:39:49 +00:00
from collections import OrderedDict
import sys, os, re
index_file = sys.argv[1]
2014-07-17 17:39:49 +00:00
# Get directory this script is in.
dirname = os.path.dirname(os.path.realpath(__file__))
outdirname = "bindings/cxx"
if not os.path.exists(os.path.join(outdirname, 'include/libsigrok')):
os.makedirs(os.path.join(outdirname, 'include/libsigrok'))
2014-07-17 17:39:49 +00:00
mapping = dict([
('sr_loglevel', ('LogLevel', 'Log verbosity level')),
('sr_packettype', ('PacketType', 'Type of datafeed packet')),
('sr_mq', ('Quantity', 'Measured quantity')),
('sr_unit', ('Unit', 'Unit of measurement')),
('sr_mqflag', ('QuantityFlag', 'Flag applied to measured quantity')),
('sr_configkey', ('ConfigKey', 'Configuration key')),
('sr_datatype', ('DataType', 'Configuration data type')),
('sr_channeltype', ('ChannelType', 'Channel type')),
('sr_trigger_matches', ('TriggerMatchType', 'Trigger match type'))])
2014-07-17 17:39:49 +00:00
index = ElementTree.parse(index_file)
2014-07-17 17:39:49 +00:00
# Build mapping between class names and enumerations.
classes = OrderedDict()
for compound in index.findall('compound'):
if compound.attrib['kind'] != 'file':
continue
filename = os.path.join(
os.path.dirname(index_file),
'%s.xml' % compound.attrib['refid'])
doc = ElementTree.parse(filename)
for section in doc.find('compounddef').findall('sectiondef'):
if section.attrib["kind"] != 'enum':
continue
for member in section.findall('memberdef'):
if member.attrib["kind"] != 'enum':
continue
name = member.find('name').text
if name in mapping:
classes[member] = mapping[name]
2014-07-17 17:39:49 +00:00
header = open(os.path.join(outdirname, 'include/libsigrok/enums.hpp'), 'w')
code = open(os.path.join(outdirname, 'enums.cpp'), 'w')
2014-10-29 14:36:45 +00:00
swig = open(os.path.join(outdirname, '../swig/enums.i'), 'w')
2014-07-17 17:39:49 +00:00
for file in (header, code):
print >> file, "/* Generated file - edit enums.py instead! */"
# Template for beginning of class declaration and public members.
header_public_template = """
/** {brief} */
class SR_API {classname} : public EnumValue<{classname}, enum {enumname}>
2014-07-17 17:39:49 +00:00
{{
public:
"""
# Template for beginning of private members.
header_private_template = """
protected:
{classname}(enum {enumname} id, const char name[]) : EnumValue(id, name) {{}}
2014-07-17 17:39:49 +00:00
"""
def get_text(node):
return str.join('\n\n',
[p.text.rstrip() for p in node.findall('para')])
for enum, (classname, classbrief) in classes.items():
enum_name = enum.find('name').text
members = enum.findall('enumvalue')
member_names = [m.find('name').text for m in members]
trimmed_names = [re.sub("^SR_[A-Z]+_", "", n) for n in member_names]
briefs = [get_text(m.find('briefdescription')) for m in members]
2014-07-17 17:39:49 +00:00
# Begin class and public declarations
print >> header, header_public_template.format(
brief=classbrief, classname=classname, enumname=enum_name)
2014-07-17 17:39:49 +00:00
# Declare public pointers for each enum value
for trimmed_name, brief in zip(trimmed_names, briefs):
if brief:
print >> header, '\t/** %s */' % brief
print >> header, '\tstatic const %s * const %s;' % (
classname, trimmed_name)
2014-07-17 17:39:49 +00:00
# Declare additional methods if present
filename = os.path.join(dirname, "%s_methods.hpp" % classname)
if os.path.exists(filename):
print >> header, str.join('', open(filename).readlines())
# Begin private declarations
print >> header, header_private_template.format(
classname=classname, enumname=enum_name)
2014-07-17 17:39:49 +00:00
# Declare private constants for each enum value
for trimmed_name in trimmed_names:
2014-07-17 17:39:49 +00:00
print >> header, '\tstatic const %s _%s;' % (classname, trimmed_name)
# End class declaration
print >> header, '};'
# Define private constants for each enum value
for name, trimmed_name in zip(member_names, trimmed_names):
2014-07-17 17:39:49 +00:00
print >> code, 'const %s %s::_%s = %s(%s, "%s");' % (
classname, classname, trimmed_name, classname, name, trimmed_name)
# Define public pointers for each enum value
for trimmed_name in trimmed_names:
2014-07-17 17:39:49 +00:00
print >> code, 'const %s * const %s::%s = &%s::_%s;' % (
classname, classname, trimmed_name, classname, trimmed_name)
# Define map of enum values to constants
print >> code, 'template<> const std::map<const enum %s, const %s * const> EnumValue<%s, enum %s>::_values = {' % (
enum_name, classname, classname, enum_name)
for name, trimmed_name in zip(member_names, trimmed_names):
2014-07-17 17:39:49 +00:00
print >> code, '\t{%s, %s::%s},' % (name, classname, trimmed_name)
print >> code, '};'
# Define additional methods if present
filename = os.path.join(dirname, "%s_methods.cpp" % classname)
if os.path.exists(filename):
print >> code, str.join('', open(filename).readlines())
2014-10-29 14:36:45 +00:00
# Map EnumValue::id() and EnumValue::name() as SWIG attributes.
print >> swig, '%%attribute(sigrok::%s, int, id, id);' % classname
print >> swig, '%%attributestring(sigrok::%s, std::string, name, name);' % classname
# Instantiate EnumValue template for SWIG
print >> swig, '%%template(EnumValue%s) sigrok::EnumValue<sigrok::%s, enum %s>;' % (
2014-10-29 14:36:45 +00:00
classname, classname, enum_name)
# Apply any language-specific extras.
print >> swig, '%%enumextras(%s);' % classname
# Declare additional attributes if present
filename = os.path.join(dirname, "%s_methods.i" % classname)
if os.path.exists(filename):
print >> swig, str.join('', open(filename).readlines())