1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
|
/****************************************************************************
TTL2C - LV2 Port Enum Generator
This program reads an RDF file (in the Turtle syntax) describing
an LV2 plugin and generates a C header file with data structures
that contain information about the plugin.
Copyright (C) 2006-2007 Lars Luthman <lars.luthman@gmail.com>
Modified 2012 Michael Fisher <mfisher31@gmail.com>
- renamed to ttl2c to avoid conflict with lv2-c++-tools
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, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 01222-1307 USA
****************************************************************************/
#include <cfloat>
#include <cstdlib>
#include <fstream>
#include <iostream>
#include <map>
#include <string>
#include <vector>
#include "turtleparser.hpp"
#include "query.hpp"
#include "namespaces.hpp"
#ifndef VERSION
#define VERSION "UNKNOWNVERSION"
#endif
using namespace std;
using namespace PAQ;
struct PortInfo {
PortInfo()
: min(-FLT_MAX),
max(FLT_MAX),
default_value(min),
toggled(false),
integer(false),
logarithmic(false) { }
string name;
float min;
float max;
float default_value;
bool toggled;
bool integer;
bool logarithmic;
};
int main(int argc, char** argv) {
for (int i = 1; i < argc; ++i) {
if (string(argv[i]) == "-V" || string(argv[i]) == "--version") {
cout<<"ttl2c "<<VERSION<<" by Lars Luthman <lars.luthman@gmail.com>"
<<endl;
return 0;
}
}
if (argc < 3) {
cerr<<"Usage: ttl2c <input file> <output file> "<<endl;
return -1;
}
// parse turtle file
TurtleParser tp;
RDFData data;
if (!tp.parse_ttl_file(argv[1], data)) {
cerr<<"Could not parse input. Not valid Turtle syntax."<<endl;
return -1;
}
// find all plugins in the file
Namespace lv2("<http://lv2plug.in/ns/lv2core#>");
Namespace cx("<http://ll-plugins.nongnu.org/lv2/dev/contexts/1#>");
Namespace ll("<http://ll-plugins.nongnu.org/lv2/namespace#>");
Namespace pprops("<http://lv2plug.in/ns/ext/port-props#>");
Variable plugin, pegname;
vector<QueryResult> qr =
select(plugin, pegname)
.where(plugin, ll("pegName"), pegname)
.where(plugin, rdf("type"), lv2("Plugin"))
.run(data);
map<string, string> plugins;
for (unsigned i = 0; i < qr.size(); ++i)
plugins[qr[i][plugin]->name] = qr[i][pegname]->name;
// iterate over all plugins
map<string, map<int, PortInfo> > info;
map<string, string>::const_iterator plug_iter;
for (plug_iter = plugins.begin(); plug_iter != plugins.end(); ++plug_iter) {
// query the plugin ports
Variable port, index, symbol;
qr = select(index, symbol)
.where(plug_iter->first, lv2("port"), port)
.where(port, lv2("index"), index)
.where(port, lv2("symbol"), symbol)
.run(data);
// put ports in a map so they get sorted
map<int, PortInfo> ports;
for (size_t i = 0; i < qr.size(); ++i) {
int port_index = atoi(qr[i][index]->name.c_str());
if (ports.find(port_index) != ports.end()) {
cerr<<"Index "<<port_index<<" is used for more than one port"<<endl;
return -1;
}
ports[port_index].name = qr[i][symbol]->name;
}
// query the context ports
Variable cx_pred, context;
qr = select(index, symbol)
.where(plug_iter->first, cx_pred, context)
.where(context, cx("port"), port)
.where(port, lv2("index"), index)
.where(port, lv2("symbol"), symbol)
.filter(or_filter(cx_pred == cx("optionalContext"),
cx_pred == cx("requiredContext")))
.run(data);
// put them in the map too
for (size_t i = 0; i < qr.size(); ++i) {
int port_index = atoi(qr[i][index]->name.c_str());
if (ports.find(port_index) != ports.end()) {
cerr<<"Index "<<port_index<<" is used for more than one port"<<endl;
return -1;
}
ports[port_index].name = qr[i][symbol]->name;
}
// check that the port indices are OK
map<int, PortInfo>::const_iterator iter;
int next = 0;
for (iter = ports.begin(); iter != ports.end(); ++iter) {
if (iter->first != next) {
cerr<<"There was no description of port "<<next
<<" in plugin "<<plug_iter->first<<endl;
return -1;
}
++next;
}
// get min values
Variable value;
qr = select(index, value)
.where(plug_iter->first, lv2("port"), port)
.where(port, lv2("index"), index)
.where(port, lv2("minimum"), value)
.run(data);
for (unsigned i = 0; i < qr.size(); ++i)
ports[atoi(qr[i][index]->name.c_str())].min =
atof(qr[i][value]->name.c_str());
// get max values
qr = select(index, value)
.where(plug_iter->first, lv2("port"), port)
.where(port, lv2("index"), index)
.where(port, lv2("maximum"), value)
.run(data);
for (unsigned i = 0; i < qr.size(); ++i)
ports[atoi(qr[i][index]->name.c_str())].max =
atof(qr[i][value]->name.c_str());
// get default values
qr = select(index, value)
.where(plug_iter->first, lv2("port"), port)
.where(port, lv2("index"), index)
.where(port, lv2("default"), value)
.run(data);
for (unsigned i = 0; i < qr.size(); ++i)
ports[atoi(qr[i][index]->name.c_str())].default_value =
atof(qr[i][value]->name.c_str());
// get port properties
Variable property;
qr = select(index, property)
.where(plug_iter->first, lv2("port"), port)
.where(port, lv2("index"), index)
.where(port, lv2("portProperty"), property)
.run(data);
for (unsigned i = 0; i < qr.size(); ++i) {
if (qr[i][property]->name == lv2("toggled"))
ports[atoi(qr[i][index]->name.c_str())].toggled = true;
if (qr[i][property]->name == lv2("integer"))
ports[atoi(qr[i][index]->name.c_str())].integer = true;
if (qr[i][property]->name == pprops("logarithmic"))
ports[atoi(qr[i][index]->name.c_str())].logarithmic = true;
}
info[plug_iter->first] = ports;
}
// write the header file
string header_guard = argv[2];
for (size_t i = 0; i < header_guard.size(); ++i) {
char& c = header_guard[i];
if (!((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c == '_')))
header_guard[i] = '_';
}
ofstream fout(argv[2]);
fout<<"#ifndef "<<header_guard<<endl
<<"#define "<<header_guard<<endl<<endl<<endl;
// define data structure
fout<<"#ifndef PEG_STRUCT"<<endl
<<"#define PEG_STRUCT"<<endl
<<"typedef struct {"<<endl
<<" float min;"<<endl
<<" float max;"<<endl
<<" float default_value;"<<endl
<<" char toggled;"<<endl
<<" char integer;"<<endl
<<" char logarithmic;"<<endl
<<"} peg_data_t;"<<endl
<<"#endif"<<endl<<endl;
map<string, map<int, PortInfo> >::const_iterator piter;
for (piter = info.begin(); piter != info.end(); ++piter) {
fout<<"/* "<<piter->first<<" */"<<endl<<endl;
// write the URI
fout<<"static const char "<<plugins[piter->first]<<"_uri[] = \""
<<piter->first.substr(1, piter->first.size() - 2)<<"\";"<<endl<<endl;
// write port labels
fout<<"enum "<<plugins[piter->first]<<"_port_enum {"<<endl;
map<int, PortInfo>::const_iterator iter;
for (iter = piter->second.begin(); iter != piter->second.end(); ++iter)
fout<<" "<<plugins[piter->first]<<"_"<<iter->second.name<<","<<endl;
fout<<" "<<plugins[piter->first]<<"_n_ports"<<endl
<<"};"<<endl<<endl;
// write port info
fout<<"static const peg_data_t "
<<plugins[piter->first]<<"_ports[] = {"<<endl;
for (iter = piter->second.begin(); iter != piter->second.end(); ++iter) {
fout<<" { "
<<iter->second.min<<", "
<<iter->second.max<<", "
<<iter->second.default_value<<", "
<<(iter->second.toggled ? "1" : "0")<<", "
<<(iter->second.integer ? "1" : "0")<<", "
<<(iter->second.logarithmic ? "1" : "0")<<" }, "<<endl;
}
fout<<"};"<<endl<<endl<<endl;
}
fout<<"#endif /* "<<header_guard<<" */"<<endl;
return 0;
}
|