comparison capnproto/VampnProto.h @ 66:6f160dee1192

Instead of using separate values and b64values entries in JSON serialisations, allow numeric arrays to be replaced by b64 variants wherever they appear (discriminating by type). Also rename values to featureValues in feature throughout, as values turns out to be a hazardous name in a JS context. Finally use Array instead of Text for array encoding (seems clearer).
author Chris Cannam <c.cannam@qmul.ac.uk>
date Tue, 27 Sep 2016 15:04:59 +0100
parents 85ec33975434
children db17657ac875
comparison
equal deleted inserted replaced
65:2d866edd79d5 66:6f160dee1192
275 } 275 }
276 276
277 b.setLabel(f.label); 277 b.setLabel(f.label);
278 278
279 if (f.values.size() > 0) { 279 if (f.values.size() > 0) {
280 auto values = b.initValues(f.values.size()); 280 auto values = b.initFeatureValues(f.values.size());
281 for (size_t i = 0; i < f.values.size(); ++i) { 281 for (size_t i = 0; i < f.values.size(); ++i) {
282 values.set(i, f.values[i]); 282 values.set(i, f.values[i]);
283 } 283 }
284 } 284 }
285 } 285 }
299 } 299 }
300 300
301 f.label = r.getLabel(); 301 f.label = r.getLabel();
302 302
303 f.values.clear(); 303 f.values.clear();
304 auto vv = r.getValues(); 304 auto vv = r.getFeatureValues();
305 for (auto v: vv) { 305 for (auto v: vv) {
306 f.values.push_back(v); 306 f.values.push_back(v);
307 } 307 }
308 } 308 }
309 309