annotate capnproto/vamp.capnp @ 55:38780f15ac8d

Make RequestResponse types more consistent by adding plugin to ConfigurationResponse and introducing a FinishRequest
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 19 Sep 2016 13:35:56 +0100
parents e90fd30990eb
children 0ea374ea96a2
rev   line source
c@5 1
c@5 2 @0xc4b1c6c44c999206;
c@5 3
c@5 4 using Cxx = import "/capnp/c++.capnp";
c@5 5 $Cxx.namespace("vampipe");
c@5 6
c@5 7 enum InputDomain {
c@5 8 timeDomain @0;
c@5 9 frequencyDomain @1;
c@5 10 }
c@5 11
c@5 12 enum SampleType {
c@5 13 oneSamplePerStep @0;
c@5 14 fixedSampleRate @1;
c@5 15 variableSampleRate @2;
c@5 16 }
c@5 17
c@5 18 enum AdapterFlag {
c@5 19 adaptInputDomain @0;
c@5 20 adaptChannelCount @1;
c@5 21 adaptBufferSize @2;
c@5 22 }
c@5 23
c@5 24 const adaptAllSafe :List(AdapterFlag) =
c@5 25 [ adaptInputDomain, adaptChannelCount ];
c@5 26
c@5 27 const adaptAll :List(AdapterFlag) =
c@5 28 [ adaptInputDomain, adaptChannelCount, adaptBufferSize ];
c@5 29
c@5 30 struct RealTime {
c@5 31 sec @0 :Int32 = 0;
c@5 32 nsec @1 :Int32 = 0;
c@5 33 }
c@5 34
c@5 35 struct Basic {
c@5 36 identifier @0 :Text;
c@5 37 name @1 :Text;
c@5 38 description @2 :Text;
c@5 39 }
c@5 40
c@5 41 struct ParameterDescriptor {
c@5 42 basic @0 :Basic;
c@5 43 unit @1 :Text;
c@5 44 minValue @2 :Float32 = 0.0;
c@5 45 maxValue @3 :Float32 = 0.0;
c@5 46 defaultValue @4 :Float32 = 0.0;
c@5 47 isQuantized @5 :Bool = false;
c@5 48 quantizeStep @6 :Float32 = 0.0;
c@5 49 valueNames @7 :List(Text) = [];
c@5 50 }
c@5 51
c@5 52 struct OutputDescriptor {
c@5 53 basic @0 :Basic;
c@5 54 unit @1 :Text;
c@5 55 hasFixedBinCount @2 :Bool = false;
c@5 56 binCount @3 :Int32 = 0;
c@5 57 binNames @4 :List(Text) = [];
c@5 58 hasKnownExtents @5 :Bool = false;
c@5 59 minValue @6 :Float32 = 0.0;
c@5 60 maxValue @7 :Float32 = 0.0;
c@5 61 isQuantized @8 :Bool = false;
c@5 62 quantizeStep @9 :Float32 = 0.0;
c@5 63 sampleType @10 :SampleType;
c@5 64 sampleRate @11 :Float32 = 0.0;
c@5 65 hasDuration @12 :Bool = false;
c@5 66 }
c@5 67
c@5 68 struct PluginStaticData {
c@5 69 pluginKey @0 :Text;
c@5 70 basic @1 :Basic;
c@5 71 maker @2 :Text;
c@5 72 copyright @3 :Text;
c@5 73 pluginVersion @4 :Int32;
c@5 74 category @5 :List(Text);
c@5 75 minChannelCount @6 :Int32;
c@5 76 maxChannelCount @7 :Int32;
c@5 77 parameters @8 :List(ParameterDescriptor);
c@5 78 programs @9 :List(Text);
c@5 79 inputDomain @10 :InputDomain;
c@5 80 basicOutputInfo @11 :List(Basic);
c@5 81 }
c@5 82
c@5 83 struct ProcessInput {
c@5 84 inputBuffers @0 :List(List(Float32));
c@5 85 timestamp @1 :RealTime;
c@5 86 }
c@5 87
c@5 88 struct Feature {
c@5 89 hasTimestamp @0 :Bool = false;
c@5 90 timestamp @1 :RealTime;
c@5 91 hasDuration @2 :Bool = false;
c@5 92 duration @3 :RealTime;
c@5 93 label @4 :Text;
c@5 94 values @5 :List(Float32) = [];
c@5 95 }
c@5 96
c@5 97 struct FeatureSet {
c@5 98 struct FSPair {
c@49 99 output @0 :Text;
c@5 100 features @1 :List(Feature) = [];
c@5 101 }
c@5 102 featurePairs @0 :List(FSPair);
c@5 103 }
c@5 104
c@5 105 struct PluginConfiguration {
c@5 106 struct PVPair {
c@5 107 parameter @0 :Text;
c@5 108 value @1 :Float32;
c@5 109 }
c@5 110 parameterValues @0 :List(PVPair);
c@5 111 currentProgram @1 :Text;
c@5 112 channelCount @2 :Int32;
c@5 113 stepSize @3 :Int32;
c@5 114 blockSize @4 :Int32;
c@5 115 }
c@5 116
c@24 117 struct ListResponse {
c@24 118 plugins @0 :List(PluginStaticData);
c@24 119 }
c@24 120
c@5 121 struct LoadRequest {
c@5 122 pluginKey @0 :Text;
c@5 123 inputSampleRate @1 :Float32;
c@5 124 adapterFlags @2 :List(AdapterFlag);
c@5 125 }
c@5 126
c@5 127 struct LoadResponse {
c@10 128 pluginHandle @0 :Int32;
c@5 129 staticData @1 :PluginStaticData;
c@5 130 defaultConfiguration @2 :PluginConfiguration;
c@5 131 }
c@5 132
c@5 133 struct ConfigurationRequest {
c@10 134 pluginHandle @0 :Int32;
c@5 135 configuration @1 :PluginConfiguration;
c@5 136 }
c@5 137
c@5 138 struct ConfigurationResponse {
c@55 139 pluginHandle @0 :Int32;
c@55 140 outputs @1 :List(OutputDescriptor);
c@5 141 }
c@5 142
c@9 143 struct ProcessRequest {
c@10 144 pluginHandle @0 :Int32;
c@14 145 input @1 :ProcessInput;
c@9 146 }
c@9 147
c@49 148 struct ProcessResponse {
c@49 149 pluginHandle @0 :Int32;
c@49 150 features @1 :FeatureSet;
c@49 151 }
c@49 152
c@23 153 struct FinishRequest {
c@23 154 pluginHandle @0 :Int32;
c@23 155 }
c@23 156
c@5 157 struct VampRequest {
c@5 158 request :union {
c@5 159 list @0 :Void;
c@5 160 load @1 :LoadRequest;
c@5 161 configure @2 :ConfigurationRequest;
c@9 162 process @3 :ProcessRequest;
c@23 163 finish @4 :FinishRequest; # getRemainingFeatures and unload
c@5 164 }
c@5 165 }
c@5 166
c@5 167 struct VampResponse {
c@5 168 success @0 :Bool;
c@5 169 errorText @1 :Text = "";
c@5 170 response :union {
c@24 171 list @2 :ListResponse;
c@5 172 load @3 :LoadResponse;
c@5 173 configure @4 :ConfigurationResponse;
c@15 174 process @5 :ProcessResponse;
c@15 175 finish @6 :ProcessResponse;
c@5 176 }
c@5 177 }
c@5 178