c@5
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
c@5
|
2
|
c@5
|
3 #ifndef VAMP_JSON_H
|
c@5
|
4 #define VAMP_JSON_H
|
c@5
|
5
|
c@5
|
6 #include <vector>
|
c@5
|
7 #include <string>
|
c@5
|
8 #include <sstream>
|
c@5
|
9 #include <stdexcept>
|
c@5
|
10
|
c@5
|
11 #include <json11/json11.hpp>
|
c@5
|
12 #include <base-n/include/basen.hpp>
|
c@5
|
13
|
c@5
|
14 #include <vamp-hostsdk/Plugin.h>
|
c@5
|
15 #include <vamp-hostsdk/PluginLoader.h>
|
c@5
|
16
|
c@6
|
17 /**
|
c@6
|
18 * Convert the structures laid out in the Vamp SDK classes into JSON
|
c@6
|
19 * (and back again) following the schema in the vamp-json-schema
|
c@6
|
20 * project repo.
|
c@6
|
21 */
|
c@5
|
22 class VampJson
|
c@5
|
23 {
|
c@5
|
24 public:
|
c@5
|
25 class Failure : virtual public std::runtime_error {
|
c@5
|
26 public:
|
c@5
|
27 Failure(std::string s) : runtime_error(s) { }
|
c@5
|
28 };
|
c@5
|
29
|
c@5
|
30 template <typename T>
|
c@5
|
31 static json11::Json
|
c@5
|
32 fromBasicDescriptor(const T &t) {
|
c@5
|
33 return json11::Json::object {
|
c@5
|
34 { "identifier", t.identifier },
|
c@5
|
35 { "name", t.name },
|
c@5
|
36 { "description", t.description }
|
c@5
|
37 };
|
c@5
|
38 }
|
c@5
|
39
|
c@5
|
40 template <typename T>
|
c@5
|
41 static void
|
c@5
|
42 toBasicDescriptor(json11::Json j, T &t) {
|
c@5
|
43 if (!j.is_object()) {
|
c@5
|
44 throw Failure("object expected for basic descriptor content");
|
c@5
|
45 }
|
c@5
|
46 if (!j["identifier"].is_string()) {
|
c@5
|
47 throw Failure("string expected for identifier");
|
c@5
|
48 }
|
c@5
|
49 t.identifier = j["identifier"].string_value();
|
c@5
|
50 t.name = j["name"].string_value();
|
c@5
|
51 t.description = j["description"].string_value();
|
c@5
|
52 }
|
c@5
|
53
|
c@5
|
54 template <typename T>
|
c@5
|
55 static json11::Json
|
c@5
|
56 fromValueExtents(const T &t) {
|
c@5
|
57 return json11::Json::object {
|
c@5
|
58 { "min", t.minValue },
|
c@5
|
59 { "max", t.maxValue }
|
c@5
|
60 };
|
c@5
|
61 }
|
c@5
|
62
|
c@5
|
63 template <typename T>
|
c@5
|
64 static bool
|
c@5
|
65 toValueExtents(json11::Json j, T &t) {
|
c@5
|
66 if (j["extents"].is_null()) {
|
c@5
|
67 return false;
|
c@5
|
68 } else if (j["extents"].is_object()) {
|
c@5
|
69 if (j["extents"]["min"].is_number() &&
|
c@5
|
70 j["extents"]["max"].is_number()) {
|
c@5
|
71 t.minValue = j["extents"]["min"].number_value();
|
c@5
|
72 t.maxValue = j["extents"]["max"].number_value();
|
c@5
|
73 return true;
|
c@5
|
74 } else {
|
c@5
|
75 throw Failure("numbers expected for min and max");
|
c@5
|
76 }
|
c@5
|
77 } else {
|
c@5
|
78 throw Failure("object expected for extents (if present)");
|
c@5
|
79 }
|
c@5
|
80 }
|
c@5
|
81
|
c@5
|
82 static json11::Json
|
c@5
|
83 fromRealTime(const Vamp::RealTime &r) {
|
c@5
|
84 return json11::Json::object {
|
c@5
|
85 { "s", r.sec },
|
c@5
|
86 { "n", r.nsec }
|
c@5
|
87 };
|
c@5
|
88 }
|
c@5
|
89
|
c@5
|
90 static Vamp::RealTime
|
c@5
|
91 toRealTime(json11::Json j) {
|
c@5
|
92 json11::Json sec = j["s"];
|
c@5
|
93 json11::Json nsec = j["n"];
|
c@5
|
94 if (!sec.is_number() || !nsec.is_number()) {
|
c@5
|
95 throw Failure("invalid Vamp::RealTime object " + j.dump());
|
c@5
|
96 }
|
c@5
|
97 return Vamp::RealTime(sec.int_value(), nsec.int_value());
|
c@5
|
98 }
|
c@5
|
99
|
c@5
|
100 static std::string
|
c@5
|
101 fromSampleType(Vamp::Plugin::OutputDescriptor::SampleType type) {
|
c@5
|
102 switch (type) {
|
c@5
|
103 case Vamp::Plugin::OutputDescriptor::OneSamplePerStep:
|
c@5
|
104 return "OneSamplePerStep";
|
c@5
|
105 case Vamp::Plugin::OutputDescriptor::FixedSampleRate:
|
c@5
|
106 return "FixedSampleRate";
|
c@5
|
107 case Vamp::Plugin::OutputDescriptor::VariableSampleRate:
|
c@5
|
108 return "VariableSampleRate";
|
c@5
|
109 }
|
c@5
|
110 return "";
|
c@5
|
111 }
|
c@5
|
112
|
c@5
|
113 static Vamp::Plugin::OutputDescriptor::SampleType
|
c@5
|
114 toSampleType(std::string text) {
|
c@5
|
115 if (text == "OneSamplePerStep") {
|
c@5
|
116 return Vamp::Plugin::OutputDescriptor::OneSamplePerStep;
|
c@5
|
117 } else if (text == "FixedSampleRate") {
|
c@5
|
118 return Vamp::Plugin::OutputDescriptor::FixedSampleRate;
|
c@5
|
119 } else if (text == "VariableSampleRate") {
|
c@5
|
120 return Vamp::Plugin::OutputDescriptor::VariableSampleRate;
|
c@5
|
121 } else {
|
c@5
|
122 throw Failure("invalid sample type string: " + text);
|
c@5
|
123 }
|
c@5
|
124 }
|
c@5
|
125
|
c@5
|
126 static json11::Json
|
c@5
|
127 fromOutputDescriptor(const Vamp::Plugin::OutputDescriptor &desc) {
|
c@5
|
128 json11::Json::object jo {
|
c@5
|
129 { "basic", fromBasicDescriptor(desc) },
|
c@5
|
130 { "unit", desc.unit },
|
c@5
|
131 { "sampleType", fromSampleType(desc.sampleType) },
|
c@5
|
132 { "sampleRate", desc.sampleRate },
|
c@5
|
133 { "hasDuration", desc.hasDuration }
|
c@5
|
134 };
|
c@5
|
135 if (desc.hasFixedBinCount) {
|
c@5
|
136 jo["binCount"] = int(desc.binCount);
|
c@5
|
137 jo["binNames"] = json11::Json::array
|
c@5
|
138 (desc.binNames.begin(), desc.binNames.end());
|
c@5
|
139 }
|
c@5
|
140 if (desc.hasKnownExtents) {
|
c@5
|
141 jo["extents"] = fromValueExtents(desc);
|
c@5
|
142 }
|
c@5
|
143 if (desc.isQuantized) {
|
c@5
|
144 jo["quantizeStep"] = desc.quantizeStep;
|
c@5
|
145 }
|
c@5
|
146 return json11::Json(jo);
|
c@5
|
147 }
|
c@5
|
148
|
c@5
|
149 static Vamp::Plugin::OutputDescriptor
|
c@5
|
150 toOutputDescriptor(json11::Json j) {
|
c@5
|
151
|
c@5
|
152 Vamp::Plugin::OutputDescriptor od;
|
c@5
|
153 if (!j.is_object()) {
|
c@5
|
154 throw Failure("object expected for output descriptor");
|
c@5
|
155 }
|
c@5
|
156
|
c@5
|
157 toBasicDescriptor(j["basic"], od);
|
c@5
|
158
|
c@5
|
159 od.unit = j["unit"].string_value();
|
c@5
|
160
|
c@5
|
161 od.sampleType = toSampleType(j["sampleType"].string_value());
|
c@5
|
162
|
c@5
|
163 if (!j["sampleRate"].is_number()) {
|
c@5
|
164 throw Failure("number expected for sample rate");
|
c@5
|
165 }
|
c@5
|
166 od.sampleRate = j["sampleRate"].number_value();
|
c@5
|
167 od.hasDuration = j["hasDuration"].bool_value();
|
c@5
|
168
|
c@5
|
169 if (j["binCount"].is_number() && j["binCount"].int_value() > 0) {
|
c@5
|
170 od.hasFixedBinCount = true;
|
c@5
|
171 od.binCount = j["binCount"].int_value();
|
c@5
|
172 for (auto &n: j["binNames"].array_items()) {
|
c@5
|
173 if (!n.is_string()) {
|
c@5
|
174 throw Failure("string expected for bin name");
|
c@5
|
175 }
|
c@5
|
176 od.binNames.push_back(n.string_value());
|
c@5
|
177 }
|
c@5
|
178 } else {
|
c@5
|
179 od.hasFixedBinCount = false;
|
c@5
|
180 }
|
c@5
|
181
|
c@5
|
182 bool extentsPresent = toValueExtents(j, od);
|
c@5
|
183 od.hasKnownExtents = extentsPresent;
|
c@5
|
184
|
c@5
|
185 if (j["quantizeStep"].is_number()) {
|
c@5
|
186 od.isQuantized = true;
|
c@5
|
187 od.quantizeStep = j["quantizeStep"].number_value();
|
c@5
|
188 } else {
|
c@5
|
189 od.isQuantized = false;
|
c@5
|
190 }
|
c@5
|
191
|
c@5
|
192 return od;
|
c@5
|
193 }
|
c@5
|
194
|
c@5
|
195 static json11::Json
|
c@5
|
196 fromParameterDescriptor(const Vamp::PluginBase::ParameterDescriptor &desc) {
|
c@5
|
197
|
c@5
|
198 json11::Json::object jo {
|
c@5
|
199 { "basic", fromBasicDescriptor(desc) },
|
c@5
|
200 { "unit", desc.unit },
|
c@5
|
201 { "extents", fromValueExtents(desc) },
|
c@5
|
202 { "defaultValue", desc.defaultValue },
|
c@5
|
203 { "valueNames", json11::Json::array
|
c@5
|
204 (desc.valueNames.begin(), desc.valueNames.end()) }
|
c@5
|
205 };
|
c@5
|
206 if (desc.isQuantized) {
|
c@5
|
207 jo["quantizeStep"] = desc.quantizeStep;
|
c@5
|
208 }
|
c@5
|
209 return json11::Json(jo);
|
c@5
|
210 }
|
c@5
|
211
|
c@5
|
212 static Vamp::PluginBase::ParameterDescriptor
|
c@5
|
213 toParameterDescriptor(json11::Json j) {
|
c@5
|
214
|
c@5
|
215 Vamp::PluginBase::ParameterDescriptor pd;
|
c@5
|
216 if (!j.is_object()) {
|
c@5
|
217 throw Failure("object expected for parameter descriptor");
|
c@5
|
218 }
|
c@5
|
219
|
c@5
|
220 toBasicDescriptor(j["basic"], pd);
|
c@5
|
221
|
c@5
|
222 pd.unit = j["unit"].string_value();
|
c@5
|
223
|
c@5
|
224 bool extentsPresent = toValueExtents(j, pd);
|
c@5
|
225 if (!extentsPresent) {
|
c@5
|
226 throw Failure("extents must be present in parameter descriptor");
|
c@5
|
227 }
|
c@5
|
228
|
c@5
|
229 if (!j["defaultValue"].is_number()) {
|
c@5
|
230 throw Failure("number expected for default value");
|
c@5
|
231 }
|
c@5
|
232
|
c@5
|
233 pd.defaultValue = j["defaultValue"].number_value();
|
c@5
|
234
|
c@5
|
235 pd.valueNames.clear();
|
c@5
|
236 for (auto &n: j["valueNames"].array_items()) {
|
c@5
|
237 if (!n.is_string()) {
|
c@5
|
238 throw Failure("string expected for value name");
|
c@5
|
239 }
|
c@5
|
240 pd.valueNames.push_back(n.string_value());
|
c@5
|
241 }
|
c@5
|
242
|
c@5
|
243 if (j["quantizeStep"].is_number()) {
|
c@5
|
244 pd.isQuantized = true;
|
c@5
|
245 pd.quantizeStep = j["quantizeStep"].number_value();
|
c@5
|
246 } else {
|
c@5
|
247 pd.isQuantized = false;
|
c@5
|
248 }
|
c@5
|
249
|
c@5
|
250 return pd;
|
c@5
|
251 }
|
c@5
|
252
|
c@5
|
253 static std::string
|
c@5
|
254 fromFloatBuffer(const float *buffer, size_t nfloats) {
|
c@5
|
255 // must use char pointers, otherwise the converter will only
|
c@5
|
256 // encode every 4th byte (as it will count up in float* steps)
|
c@5
|
257 const char *start = reinterpret_cast<const char *>(buffer);
|
c@5
|
258 const char *end = reinterpret_cast<const char *>(buffer + nfloats);
|
c@5
|
259 std::string encoded;
|
c@5
|
260 bn::encode_b64(start, end, back_inserter(encoded));
|
c@5
|
261 return encoded;
|
c@5
|
262 }
|
c@5
|
263
|
c@5
|
264 static std::vector<float>
|
c@5
|
265 toFloatBuffer(std::string encoded) {
|
c@5
|
266 std::string decoded;
|
c@5
|
267 bn::decode_b64(encoded.begin(), encoded.end(), back_inserter(decoded));
|
c@5
|
268 const float *buffer = reinterpret_cast<const float *>(decoded.c_str());
|
c@5
|
269 size_t n = decoded.size() / sizeof(float);
|
c@5
|
270 return std::vector<float>(buffer, buffer + n);
|
c@5
|
271 }
|
c@5
|
272
|
c@5
|
273 static json11::Json
|
c@5
|
274 fromFeature(const Vamp::Plugin::Feature &f) {
|
c@5
|
275
|
c@5
|
276 json11::Json::object jo;
|
c@5
|
277 if (f.values.size() > 0) {
|
c@5
|
278 jo["b64values"] = fromFloatBuffer(f.values.data(), f.values.size());
|
c@5
|
279 }
|
c@5
|
280 if (f.label != "") {
|
c@5
|
281 jo["label"] = f.label;
|
c@5
|
282 }
|
c@5
|
283 if (f.hasTimestamp) {
|
c@5
|
284 jo["timestamp"] = fromRealTime(f.timestamp);
|
c@5
|
285 }
|
c@5
|
286 if (f.hasDuration) {
|
c@5
|
287 jo["duration"] = fromRealTime(f.duration);
|
c@5
|
288 }
|
c@5
|
289 return json11::Json(jo);
|
c@5
|
290 }
|
c@5
|
291
|
c@5
|
292 static Vamp::Plugin::Feature
|
c@5
|
293 toFeature(json11::Json j) {
|
c@5
|
294
|
c@5
|
295 Vamp::Plugin::Feature f;
|
c@5
|
296 if (!j.is_object()) {
|
c@5
|
297 throw Failure("object expected for feature");
|
c@5
|
298 }
|
c@5
|
299 if (j["timestamp"].is_object()) {
|
c@5
|
300 f.timestamp = toRealTime(j["timestamp"]);
|
c@5
|
301 f.hasTimestamp = true;
|
c@5
|
302 }
|
c@5
|
303 if (j["duration"].is_object()) {
|
c@5
|
304 f.duration = toRealTime(j["duration"]);
|
c@5
|
305 f.hasDuration = true;
|
c@5
|
306 }
|
c@5
|
307 if (j["b64values"].is_string()) {
|
c@5
|
308 f.values = toFloatBuffer(j["b64values"].string_value());
|
c@5
|
309 } else if (j["values"].is_array()) {
|
c@5
|
310 for (auto v : j["values"].array_items()) {
|
c@5
|
311 f.values.push_back(v.number_value());
|
c@5
|
312 }
|
c@5
|
313 }
|
c@5
|
314 f.label = j["label"].string_value();
|
c@5
|
315 return f;
|
c@5
|
316 }
|
c@5
|
317
|
c@5
|
318 static json11::Json
|
c@5
|
319 fromFeatureSet(const Vamp::Plugin::FeatureSet &fs) {
|
c@5
|
320
|
c@5
|
321 json11::Json::object jo;
|
c@5
|
322 for (const auto &fsi : fs) {
|
c@5
|
323 std::vector<json11::Json> fj;
|
c@5
|
324 for (const Vamp::Plugin::Feature &f: fsi.second) {
|
c@5
|
325 fj.push_back(fromFeature(f));
|
c@5
|
326 }
|
c@5
|
327 std::stringstream sstr;
|
c@5
|
328 sstr << fsi.first;
|
c@5
|
329 std::string n = sstr.str();
|
c@5
|
330 jo[n] = fj;
|
c@5
|
331 }
|
c@5
|
332 return json11::Json(jo);
|
c@5
|
333 }
|
c@5
|
334
|
c@5
|
335 static Vamp::Plugin::FeatureList
|
c@5
|
336 toFeatureList(json11::Json j) {
|
c@5
|
337
|
c@5
|
338 Vamp::Plugin::FeatureList fl;
|
c@5
|
339 if (!j.is_array()) {
|
c@5
|
340 throw Failure("array expected for feature list");
|
c@5
|
341 }
|
c@5
|
342 for (const json11::Json &fj : j.array_items()) {
|
c@5
|
343 fl.push_back(toFeature(fj));
|
c@5
|
344 }
|
c@5
|
345 return fl;
|
c@5
|
346 }
|
c@5
|
347
|
c@5
|
348 static Vamp::Plugin::FeatureSet
|
c@5
|
349 toFeatureSet(json11::Json j) {
|
c@5
|
350
|
c@5
|
351 Vamp::Plugin::FeatureSet fs;
|
c@5
|
352 if (!j.is_object()) {
|
c@5
|
353 throw Failure("object expected for feature set");
|
c@5
|
354 }
|
c@5
|
355 for (auto &entry : j.object_items()) {
|
c@5
|
356 std::string nstr = entry.first;
|
c@5
|
357 size_t count = 0;
|
c@5
|
358 int n = stoi(nstr, &count);
|
c@5
|
359 if (n < 0 || fs.find(n) != fs.end() || count < nstr.size()) {
|
c@5
|
360 throw Failure("invalid or duplicate numerical index for output");
|
c@5
|
361 }
|
c@5
|
362 fs[n] = toFeatureList(entry.second);
|
c@5
|
363 }
|
c@5
|
364 return fs;
|
c@5
|
365 }
|
c@5
|
366
|
c@5
|
367 static std::string
|
c@5
|
368 fromInputDomain(Vamp::Plugin::InputDomain domain) {
|
c@5
|
369
|
c@5
|
370 switch (domain) {
|
c@5
|
371 case Vamp::Plugin::TimeDomain:
|
c@5
|
372 return "TimeDomain";
|
c@5
|
373 case Vamp::Plugin::FrequencyDomain:
|
c@5
|
374 return "FrequencyDomain";
|
c@5
|
375 }
|
c@5
|
376 return "";
|
c@5
|
377 }
|
c@5
|
378
|
c@5
|
379 static Vamp::Plugin::InputDomain
|
c@5
|
380 toInputDomain(std::string text) {
|
c@5
|
381
|
c@5
|
382 if (text == "TimeDomain") {
|
c@5
|
383 return Vamp::Plugin::TimeDomain;
|
c@5
|
384 } else if (text == "FrequencyDomain") {
|
c@5
|
385 return Vamp::Plugin::FrequencyDomain;
|
c@5
|
386 } else {
|
c@5
|
387 throw Failure("invalid input domain string: " + text);
|
c@5
|
388 }
|
c@5
|
389 }
|
c@5
|
390
|
c@5
|
391 static json11::Json
|
c@5
|
392 fromPluginStaticData(const Vamp::HostExt::PluginStaticData &d) {
|
c@5
|
393
|
c@5
|
394 json11::Json::object jo;
|
c@5
|
395 jo["pluginKey"] = d.pluginKey;
|
c@5
|
396 jo["basic"] = fromBasicDescriptor(d.basic);
|
c@5
|
397 jo["maker"] = d.maker;
|
c@5
|
398 jo["copyright"] = d.copyright;
|
c@5
|
399 jo["pluginVersion"] = d.pluginVersion;
|
c@5
|
400
|
c@5
|
401 json11::Json::array cat;
|
c@5
|
402 for (const std::string &c: d.category) cat.push_back(c);
|
c@5
|
403 jo["category"] = cat;
|
c@5
|
404
|
c@5
|
405 jo["minChannelCount"] = d.minChannelCount;
|
c@5
|
406 jo["maxChannelCount"] = d.maxChannelCount;
|
c@5
|
407
|
c@5
|
408 json11::Json::array params;
|
c@5
|
409 Vamp::PluginBase::ParameterList vparams = d.parameters;
|
c@5
|
410 for (auto &p: vparams) params.push_back(fromParameterDescriptor(p));
|
c@5
|
411 jo["parameters"] = params;
|
c@5
|
412
|
c@5
|
413 json11::Json::array progs;
|
c@5
|
414 Vamp::PluginBase::ProgramList vprogs = d.programs;
|
c@5
|
415 for (auto &p: vprogs) progs.push_back(p);
|
c@5
|
416 jo["programs"] = progs;
|
c@5
|
417
|
c@5
|
418 jo["inputDomain"] = fromInputDomain(d.inputDomain);
|
c@5
|
419
|
c@5
|
420 json11::Json::array outinfo;
|
c@5
|
421 auto vouts = d.basicOutputInfo;
|
c@5
|
422 for (auto &o: vouts) outinfo.push_back(fromBasicDescriptor(o));
|
c@5
|
423 jo["basicOutputInfo"] = outinfo;
|
c@5
|
424
|
c@5
|
425 return json11::Json(jo);
|
c@5
|
426 }
|
c@5
|
427
|
c@5
|
428 static Vamp::HostExt::PluginStaticData
|
c@5
|
429 toPluginStaticData(json11::Json j) {
|
c@5
|
430
|
c@5
|
431 std::string err;
|
c@5
|
432 if (!j.has_shape({
|
c@5
|
433 { "pluginKey", json11::Json::STRING },
|
c@5
|
434 { "pluginVersion", json11::Json::NUMBER },
|
c@5
|
435 { "minChannelCount", json11::Json::NUMBER },
|
c@5
|
436 { "maxChannelCount", json11::Json::NUMBER },
|
c@5
|
437 { "inputDomain", json11::Json::STRING }}, err)) {
|
c@5
|
438 throw Failure("malformed plugin static data: " + err);
|
c@5
|
439 }
|
c@5
|
440
|
c@5
|
441 if (!j["basicOutputInfo"].is_array()) {
|
c@5
|
442 throw Failure("array expected for basic output info");
|
c@5
|
443 }
|
c@5
|
444
|
c@5
|
445 if (!j["maker"].is_null() &&
|
c@5
|
446 !j["maker"].is_string()) {
|
c@5
|
447 throw Failure("string expected for maker");
|
c@5
|
448 }
|
c@5
|
449
|
c@5
|
450 if (!j["copyright"].is_null() &&
|
c@5
|
451 !j["copyright"].is_string()) {
|
c@5
|
452 throw Failure("string expected for copyright");
|
c@5
|
453 }
|
c@5
|
454
|
c@5
|
455 if (!j["category"].is_null() &&
|
c@5
|
456 !j["category"].is_array()) {
|
c@5
|
457 throw Failure("array expected for category");
|
c@5
|
458 }
|
c@5
|
459
|
c@5
|
460 if (!j["parameters"].is_null() &&
|
c@5
|
461 !j["parameters"].is_array()) {
|
c@5
|
462 throw Failure("array expected for parameters");
|
c@5
|
463 }
|
c@5
|
464
|
c@5
|
465 if (!j["programs"].is_null() &&
|
c@5
|
466 !j["programs"].is_array()) {
|
c@5
|
467 throw Failure("array expected for programs");
|
c@5
|
468 }
|
c@5
|
469
|
c@5
|
470 if (!j["inputDomain"].is_null() &&
|
c@5
|
471 !j["inputDomain"].is_string()) {
|
c@5
|
472 throw Failure("string expected for inputDomain");
|
c@5
|
473 }
|
c@5
|
474
|
c@5
|
475 if (!j["basicOutputInfo"].is_null() &&
|
c@5
|
476 !j["basicOutputInfo"].is_array()) {
|
c@5
|
477 throw Failure("array expected for basicOutputInfo");
|
c@5
|
478 }
|
c@5
|
479
|
c@5
|
480 Vamp::HostExt::PluginStaticData psd;
|
c@5
|
481
|
c@5
|
482 psd.pluginKey = j["pluginKey"].string_value();
|
c@5
|
483
|
c@5
|
484 toBasicDescriptor(j["basic"], psd.basic);
|
c@5
|
485
|
c@5
|
486 psd.maker = j["maker"].string_value();
|
c@5
|
487 psd.copyright = j["copyright"].string_value();
|
c@5
|
488 psd.pluginVersion = j["pluginVersion"].int_value();
|
c@5
|
489
|
c@5
|
490 for (const auto &c : j["category"].array_items()) {
|
c@5
|
491 if (!c.is_string()) {
|
c@5
|
492 throw Failure("strings expected in category array");
|
c@5
|
493 }
|
c@5
|
494 psd.category.push_back(c.string_value());
|
c@5
|
495 }
|
c@5
|
496
|
c@5
|
497 psd.minChannelCount = j["minChannelCount"].int_value();
|
c@5
|
498 psd.maxChannelCount = j["maxChannelCount"].int_value();
|
c@5
|
499
|
c@5
|
500 for (const auto &p : j["parameters"].array_items()) {
|
c@5
|
501 auto pd = toParameterDescriptor(p);
|
c@5
|
502 psd.parameters.push_back(pd);
|
c@5
|
503 }
|
c@5
|
504
|
c@5
|
505 for (const auto &p : j["programs"].array_items()) {
|
c@5
|
506 if (!p.is_string()) {
|
c@5
|
507 throw Failure("strings expected in programs array");
|
c@5
|
508 }
|
c@5
|
509 psd.programs.push_back(p.string_value());
|
c@5
|
510 }
|
c@5
|
511
|
c@5
|
512 psd.inputDomain = toInputDomain(j["inputDomain"].string_value());
|
c@5
|
513
|
c@5
|
514 for (const auto &bo : j["basicOutputInfo"].array_items()) {
|
c@5
|
515 Vamp::HostExt::PluginStaticData::Basic b;
|
c@5
|
516 toBasicDescriptor(bo, b);
|
c@5
|
517 psd.basicOutputInfo.push_back(b);
|
c@5
|
518 }
|
c@5
|
519
|
c@5
|
520 return psd;
|
c@5
|
521 }
|
c@5
|
522
|
c@5
|
523 static json11::Json
|
c@5
|
524 fromPluginConfiguration(const Vamp::HostExt::PluginConfiguration &c) {
|
c@5
|
525
|
c@5
|
526 json11::Json::object jo;
|
c@5
|
527
|
c@5
|
528 json11::Json::object paramValues;
|
c@5
|
529 for (auto &vp: c.parameterValues) {
|
c@5
|
530 paramValues[vp.first] = vp.second;
|
c@5
|
531 }
|
c@5
|
532 jo["parameterValues"] = paramValues;
|
c@5
|
533
|
c@5
|
534 if (c.currentProgram != "") {
|
c@5
|
535 jo["currentProgram"] = c.currentProgram;
|
c@5
|
536 }
|
c@5
|
537
|
c@5
|
538 jo["channelCount"] = c.channelCount;
|
c@5
|
539 jo["stepSize"] = c.stepSize;
|
c@5
|
540 jo["blockSize"] = c.blockSize;
|
c@5
|
541
|
c@5
|
542 return json11::Json(jo);
|
c@5
|
543 }
|
c@5
|
544
|
c@5
|
545 static Vamp::HostExt::PluginConfiguration
|
c@5
|
546 toPluginConfiguration(json11::Json j) {
|
c@5
|
547
|
c@5
|
548 std::string err;
|
c@5
|
549 if (!j.has_shape({
|
c@5
|
550 { "channelCount", json11::Json::NUMBER },
|
c@5
|
551 { "stepSize", json11::Json::NUMBER },
|
c@5
|
552 { "blockSize", json11::Json::NUMBER } }, err)) {
|
c@5
|
553 throw Failure("malformed plugin configuration: " + err);
|
c@5
|
554 }
|
c@5
|
555
|
c@5
|
556 if (!j["parameterValues"].is_null() &&
|
c@5
|
557 !j["parameterValues"].is_object()) {
|
c@5
|
558 throw Failure("object expected for parameter values");
|
c@5
|
559 }
|
c@5
|
560
|
c@5
|
561 for (auto &pv : j["parameterValues"].object_items()) {
|
c@5
|
562 if (!pv.second.is_number()) {
|
c@5
|
563 throw Failure("number expected for parameter value");
|
c@5
|
564 }
|
c@5
|
565 }
|
c@5
|
566
|
c@5
|
567 if (!j["currentProgram"].is_null() &&
|
c@5
|
568 !j["currentProgram"].is_string()) {
|
c@5
|
569 throw Failure("string expected for program name");
|
c@5
|
570 }
|
c@5
|
571
|
c@5
|
572 Vamp::HostExt::PluginConfiguration config;
|
c@5
|
573
|
c@5
|
574 config.channelCount = j["channelCount"].number_value();
|
c@5
|
575 config.stepSize = j["stepSize"].number_value();
|
c@5
|
576 config.blockSize = j["blockSize"].number_value();
|
c@5
|
577
|
c@5
|
578 for (auto &pv : j["parameterValues"].object_items()) {
|
c@5
|
579 config.parameterValues[pv.first] = pv.second.number_value();
|
c@5
|
580 }
|
c@5
|
581
|
c@5
|
582 if (j["currentProgram"].is_string()) {
|
c@5
|
583 config.currentProgram = j["currentProgram"].string_value();
|
c@5
|
584 }
|
c@5
|
585
|
c@5
|
586 return config;
|
c@5
|
587 }
|
c@5
|
588
|
c@5
|
589 static json11::Json
|
c@5
|
590 fromAdapterFlags(int flags) {
|
c@5
|
591
|
c@5
|
592 json11::Json::array arr;
|
c@5
|
593
|
c@5
|
594 if (flags & Vamp::HostExt::PluginLoader::ADAPT_INPUT_DOMAIN) {
|
c@5
|
595 arr.push_back("AdaptInputDomain");
|
c@5
|
596 }
|
c@5
|
597 if (flags & Vamp::HostExt::PluginLoader::ADAPT_CHANNEL_COUNT) {
|
c@5
|
598 arr.push_back("AdaptChannelCount");
|
c@5
|
599 }
|
c@5
|
600 if (flags & Vamp::HostExt::PluginLoader::ADAPT_BUFFER_SIZE) {
|
c@5
|
601 arr.push_back("AdaptBufferSize");
|
c@5
|
602 }
|
c@5
|
603
|
c@5
|
604 return json11::Json(arr);
|
c@5
|
605 }
|
c@5
|
606
|
c@5
|
607 static Vamp::HostExt::PluginLoader::AdapterFlags
|
c@5
|
608 toAdapterFlags(json11::Json j) {
|
c@5
|
609
|
c@5
|
610 if (!j.is_array()) {
|
c@5
|
611 throw Failure("array expected for adapter flags");
|
c@5
|
612 }
|
c@5
|
613 int flags = 0x0;
|
c@5
|
614
|
c@5
|
615 for (auto &jj: j.array_items()) {
|
c@5
|
616 if (!jj.is_string()) {
|
c@5
|
617 throw Failure("string expected for adapter flag");
|
c@5
|
618 }
|
c@5
|
619 std::string text = jj.string_value();
|
c@5
|
620 if (text == "AdaptInputDomain") {
|
c@5
|
621 flags |= Vamp::HostExt::PluginLoader::ADAPT_INPUT_DOMAIN;
|
c@5
|
622 } else if (text == "AdaptChannelCount") {
|
c@5
|
623 flags |= Vamp::HostExt::PluginLoader::ADAPT_CHANNEL_COUNT;
|
c@5
|
624 } else if (text == "AdaptBufferSize") {
|
c@5
|
625 flags |= Vamp::HostExt::PluginLoader::ADAPT_BUFFER_SIZE;
|
c@5
|
626 } else if (text == "AdaptAllSafe") {
|
c@5
|
627 flags |= Vamp::HostExt::PluginLoader::ADAPT_ALL_SAFE;
|
c@5
|
628 } else if (text == "AdaptAll") {
|
c@5
|
629 flags |= Vamp::HostExt::PluginLoader::ADAPT_ALL;
|
c@5
|
630 } else {
|
c@5
|
631 throw Failure("invalid adapter flag string: " + text);
|
c@5
|
632 }
|
c@5
|
633 }
|
c@5
|
634
|
c@5
|
635 return Vamp::HostExt::PluginLoader::AdapterFlags(flags);
|
c@5
|
636 }
|
c@5
|
637
|
c@5
|
638 static json11::Json
|
c@5
|
639 fromLoadRequest(Vamp::HostExt::LoadRequest req) {
|
c@5
|
640
|
c@5
|
641 json11::Json::object jo;
|
c@5
|
642 jo["pluginKey"] = req.pluginKey;
|
c@5
|
643 jo["inputSampleRate"] = req.inputSampleRate;
|
c@5
|
644 jo["adapterFlags"] = fromAdapterFlags(req.adapterFlags);
|
c@5
|
645 return json11::Json(jo);
|
c@5
|
646 }
|
c@5
|
647
|
c@5
|
648 static Vamp::HostExt::LoadRequest
|
c@5
|
649 toLoadRequest(json11::Json j) {
|
c@5
|
650
|
c@5
|
651 std::string err;
|
c@5
|
652
|
c@5
|
653 if (!j.has_shape({
|
c@5
|
654 { "pluginKey", json11::Json::STRING },
|
c@5
|
655 { "inputSampleRate", json11::Json::NUMBER },
|
c@5
|
656 { "adapterFlags", json11::Json::ARRAY } }, err)) {
|
c@5
|
657 throw VampJson::Failure("malformed load request: " + err);
|
c@5
|
658 }
|
c@5
|
659
|
c@5
|
660 Vamp::HostExt::LoadRequest req;
|
c@5
|
661 req.pluginKey = j["pluginKey"].string_value();
|
c@5
|
662 req.inputSampleRate = j["inputSampleRate"].number_value();
|
c@5
|
663 req.adapterFlags = toAdapterFlags(j["adapterFlags"]);
|
c@5
|
664 return req;
|
c@5
|
665 }
|
c@5
|
666 };
|
c@5
|
667
|
c@5
|
668
|
c@5
|
669 #endif
|