Mercurial > hg > piper-cpp
comparison json/VampJson.h @ 45:7668fbdcfb15
Comments
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Fri, 09 Sep 2016 11:05:44 +0100 |
parents | a98ef4c2616b |
children | 6fe9f5010505 |
comparison
equal
deleted
inserted
replaced
44:a98ef4c2616b | 45:7668fbdcfb15 |
---|---|
57 * project repo. | 57 * project repo. |
58 */ | 58 */ |
59 class VampJson | 59 class VampJson |
60 { | 60 { |
61 public: | 61 public: |
62 /// Serialisation format for arrays of floats (process input and feature values) | 62 /** Serialisation format for arrays of floats (process input and |
63 * feature values). Structures that can be serialised in more | |
64 * than one way will include either a "values" field (for Text | |
65 * serialisation) or a "b64values" field (for Base64) but should | |
66 * not include both. When parsing, if a "b64values" field is | |
67 * found, it will always take priority over a "values" field. | |
68 */ | |
63 enum class BufferSerialisation { | 69 enum class BufferSerialisation { |
64 Text, // default JSON serialisation of values in array form | 70 |
65 Base64 // base64-encoded string of the raw data as packed ieee 32-bit floats | 71 /** Default JSON serialisation of values in array form. This |
72 * is relatively slow to parse and serialise, and can take a | |
73 * lot of space. | |
74 */ | |
75 Text, | |
76 | |
77 /** Base64-encoded string of the raw data as packed IEEE | |
78 * 32-bit floats. Faster and more compact than the text | |
79 * encoding but more complicated to provide, especially if | |
80 * starting from an environment that does not use IEEE 32-bit | |
81 * floats! Note that Base64 serialisations produced by this | |
82 * library do not including padding characters and so are not | |
83 * necessarily multiples of 4 characters long. You will need | |
84 * to pad them yourself if concatenating them or supplying to | |
85 * a consumer that expects padding. | |
86 */ | |
87 Base64 | |
66 }; | 88 }; |
67 | 89 |
68 class Failure : virtual public std::runtime_error { | 90 class Failure : virtual public std::runtime_error { |
69 public: | 91 public: |
70 Failure(std::string s) : runtime_error(s) { } | 92 Failure(std::string s) : runtime_error(s) { } |