c@116
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
c@118
|
2 /*
|
c@118
|
3 Piper C++
|
c@118
|
4
|
c@118
|
5 An API for audio analysis and feature extraction plugins.
|
c@118
|
6
|
c@118
|
7 Centre for Digital Music, Queen Mary, University of London.
|
c@118
|
8 Copyright 2006-2016 Chris Cannam and QMUL.
|
c@118
|
9
|
c@118
|
10 Permission is hereby granted, free of charge, to any person
|
c@118
|
11 obtaining a copy of this software and associated documentation
|
c@118
|
12 files (the "Software"), to deal in the Software without
|
c@118
|
13 restriction, including without limitation the rights to use, copy,
|
c@118
|
14 modify, merge, publish, distribute, sublicense, and/or sell copies
|
c@118
|
15 of the Software, and to permit persons to whom the Software is
|
c@118
|
16 furnished to do so, subject to the following conditions:
|
c@118
|
17
|
c@118
|
18 The above copyright notice and this permission notice shall be
|
c@118
|
19 included in all copies or substantial portions of the Software.
|
c@118
|
20
|
c@118
|
21 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
c@118
|
22 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
c@118
|
23 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
c@118
|
24 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
|
c@118
|
25 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
c@118
|
26 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
c@118
|
27 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
c@118
|
28
|
c@118
|
29 Except as contained in this notice, the names of the Centre for
|
c@118
|
30 Digital Music; Queen Mary, University of London; and Chris Cannam
|
c@118
|
31 shall not be used in advertising or otherwise to promote the sale,
|
c@118
|
32 use or other dealings in this Software without prior written
|
c@118
|
33 authorization.
|
c@118
|
34 */
|
c@75
|
35
|
c@75
|
36 #include "vamp-json/VampJson.h"
|
c@75
|
37 #include "vamp-capnp/VampnProto.h"
|
c@75
|
38 #include "vamp-support/RequestOrResponse.h"
|
c@75
|
39 #include "vamp-support/PreservingPluginHandleMapper.h"
|
c@75
|
40
|
c@75
|
41 #include <iostream>
|
c@75
|
42 #include <sstream>
|
c@75
|
43 #include <stdexcept>
|
c@75
|
44
|
c@91
|
45 #include <capnp/serialize.h>
|
c@91
|
46
|
c@123
|
47 // for _setmode stuff
|
c@123
|
48 #ifdef _WIN32
|
c@123
|
49 #include <io.h>
|
c@123
|
50 #include <fcntl.h>
|
c@123
|
51 #endif
|
c@123
|
52
|
c@75
|
53 using namespace std;
|
c@75
|
54 using namespace json11;
|
c@97
|
55 using namespace piper_vamp;
|
c@75
|
56
|
c@75
|
57 void usage()
|
c@75
|
58 {
|
c@75
|
59 string myname = "piper-convert";
|
c@75
|
60 cerr << "\n" << myname <<
|
c@116
|
61 ": Validate and convert Piper request and response messages\n\n"
|
c@116
|
62 " Usage: " << myname << " [-i <informat>] [-o <outformat>] request\n"
|
c@116
|
63 " " << myname << " [-i <informat>] [-o <outformat>] response\n\n"
|
c@116
|
64 " where\n"
|
c@116
|
65 " <informat>: the format to read from stdin\n"
|
c@116
|
66 " (\"json\" or \"capnp\", default is \"json\")\n"
|
c@116
|
67 " <outformat>: the format to convert to and write to stdout\n"
|
c@116
|
68 " (\"json\", \"json-b64\" or \"capnp\", default is \"json\")\n"
|
c@116
|
69 " request|response: whether messages are Vamp request or response type\n\n"
|
c@116
|
70 "If <informat> and <outformat> differ, convert from <informat> to <outformat>.\n"
|
c@116
|
71 "If <informat> and <outformat> are the same, just check validity of incoming\n"
|
c@116
|
72 "messages and pass them to output.\n\n"
|
c@116
|
73 "Specifying \"json-b64\" as output format forces base64 encoding for process and\n"
|
c@116
|
74 "feature blocks, unlike the \"json\" output format which uses text encoding.\n"
|
c@116
|
75 "The \"json\" input format accepts either.\n\n";
|
c@75
|
76
|
c@75
|
77 exit(2);
|
c@75
|
78 }
|
c@75
|
79
|
c@75
|
80 Json
|
c@75
|
81 convertRequestJson(string input, string &err)
|
c@75
|
82 {
|
c@75
|
83 Json j = Json::parse(input, err);
|
c@75
|
84 if (err != "") {
|
c@116
|
85 err = "invalid json: " + err;
|
c@116
|
86 return {};
|
c@75
|
87 }
|
c@75
|
88 if (!j.is_object()) {
|
c@116
|
89 err = "object expected at top level";
|
c@75
|
90 } else if (!j["method"].is_string()) {
|
c@116
|
91 err = "string expected for method field";
|
c@75
|
92 } else if (!j["params"].is_null() && !j["params"].is_object()) {
|
c@116
|
93 err = "object expected for params field";
|
c@75
|
94 }
|
c@75
|
95 return j;
|
c@75
|
96 }
|
c@75
|
97
|
c@75
|
98 Json
|
c@75
|
99 convertResponseJson(string input, string &err)
|
c@75
|
100 {
|
c@75
|
101 Json j = Json::parse(input, err);
|
c@75
|
102 if (err != "") {
|
c@116
|
103 err = "invalid json: " + err;
|
c@116
|
104 return {};
|
c@75
|
105 }
|
c@75
|
106 if (!j.is_object()) {
|
c@116
|
107 err = "object expected at top level";
|
c@75
|
108 } else {
|
c@75
|
109 if (!j["result"].is_object()) {
|
c@75
|
110 if (!j["error"].is_object()) {
|
c@75
|
111 err = "expected either result or error object";
|
c@75
|
112 }
|
c@75
|
113 }
|
c@75
|
114 }
|
c@75
|
115 return j;
|
c@75
|
116 }
|
c@75
|
117
|
c@75
|
118 //!!! Lots of potential for refactoring the conversion classes based
|
c@75
|
119 //!!! on the common matter in the following eight functions...
|
c@75
|
120
|
c@75
|
121 PreservingPluginHandleMapper mapper;
|
c@75
|
122
|
c@75
|
123 static RequestOrResponse::RpcId
|
c@75
|
124 readJsonId(const Json &j)
|
c@75
|
125 {
|
c@75
|
126 RequestOrResponse::RpcId id;
|
c@75
|
127
|
c@75
|
128 if (j["id"].is_number()) {
|
c@75
|
129 id.type = RequestOrResponse::RpcId::Number;
|
c@75
|
130 id.number = j["id"].number_value();
|
c@75
|
131 } else if (j["id"].is_string()) {
|
c@75
|
132 id.type = RequestOrResponse::RpcId::Tag;
|
c@75
|
133 id.tag = j["id"].string_value();
|
c@75
|
134 } else {
|
c@75
|
135 id.type = RequestOrResponse::RpcId::Absent;
|
c@75
|
136 }
|
c@75
|
137
|
c@75
|
138 return id;
|
c@75
|
139 }
|
c@75
|
140
|
c@75
|
141 static Json
|
c@75
|
142 writeJsonId(const RequestOrResponse::RpcId &id)
|
c@75
|
143 {
|
c@75
|
144 if (id.type == RequestOrResponse::RpcId::Number) {
|
c@75
|
145 return id.number;
|
c@75
|
146 } else if (id.type == RequestOrResponse::RpcId::Tag) {
|
c@75
|
147 return id.tag;
|
c@75
|
148 } else {
|
c@75
|
149 return Json();
|
c@75
|
150 }
|
c@75
|
151 }
|
c@75
|
152
|
c@75
|
153 template <typename Reader>
|
c@75
|
154 static RequestOrResponse::RpcId
|
c@75
|
155 readCapnpId(const Reader &r)
|
c@75
|
156 {
|
c@75
|
157 int number;
|
c@75
|
158 string tag;
|
c@75
|
159 switch (r.getId().which()) {
|
c@97
|
160 case piper::RpcRequest::Id::Which::NUMBER:
|
c@75
|
161 number = r.getId().getNumber();
|
c@75
|
162 return { RequestOrResponse::RpcId::Number, number, "" };
|
c@97
|
163 case piper::RpcRequest::Id::Which::TAG:
|
c@75
|
164 tag = r.getId().getTag();
|
c@75
|
165 return { RequestOrResponse::RpcId::Tag, 0, tag };
|
c@97
|
166 case piper::RpcRequest::Id::Which::NONE:
|
c@75
|
167 return { RequestOrResponse::RpcId::Absent, 0, "" };
|
c@75
|
168 }
|
cannam@153
|
169 return { RequestOrResponse::RpcId::Absent, 0, "" };
|
c@75
|
170 }
|
c@75
|
171
|
c@75
|
172 template <typename Builder>
|
c@75
|
173 static void
|
c@75
|
174 buildCapnpId(Builder &b, const RequestOrResponse::RpcId &id)
|
c@75
|
175 {
|
c@75
|
176 switch (id.type) {
|
c@75
|
177 case RequestOrResponse::RpcId::Number:
|
c@75
|
178 b.getId().setNumber(id.number);
|
c@75
|
179 break;
|
c@75
|
180 case RequestOrResponse::RpcId::Tag:
|
c@75
|
181 b.getId().setTag(id.tag);
|
c@75
|
182 break;
|
c@75
|
183 case RequestOrResponse::RpcId::Absent:
|
c@75
|
184 b.getId().setNone();
|
c@75
|
185 break;
|
c@75
|
186 }
|
c@75
|
187 }
|
c@75
|
188
|
c@75
|
189 RequestOrResponse
|
cannam@158
|
190 readRequestJson(string &err, bool &eof)
|
c@75
|
191 {
|
c@75
|
192 RequestOrResponse rr;
|
c@75
|
193 rr.direction = RequestOrResponse::Request;
|
c@75
|
194
|
c@75
|
195 string input;
|
c@75
|
196 if (!getline(cin, input)) {
|
c@116
|
197 // the EOF case, not actually an error
|
cannam@158
|
198 eof = true;
|
c@116
|
199 return rr;
|
c@75
|
200 }
|
c@75
|
201
|
c@75
|
202 Json j = convertRequestJson(input, err);
|
c@75
|
203 if (err != "") return {};
|
c@75
|
204
|
c@75
|
205 rr.type = VampJson::getRequestResponseType(j, err);
|
c@75
|
206 if (err != "") return {};
|
c@75
|
207
|
c@75
|
208 rr.id = readJsonId(j);
|
c@75
|
209
|
c@75
|
210 VampJson::BufferSerialisation serialisation =
|
c@75
|
211 VampJson::BufferSerialisation::Array;
|
c@75
|
212
|
c@75
|
213 switch (rr.type) {
|
c@75
|
214
|
c@75
|
215 case RRType::List:
|
c@130
|
216 rr.listRequest = VampJson::toRpcRequest_List(j, err);
|
c@116
|
217 break;
|
c@75
|
218 case RRType::Load:
|
c@116
|
219 rr.loadRequest = VampJson::toRpcRequest_Load(j, err);
|
c@116
|
220 break;
|
c@75
|
221 case RRType::Configure:
|
c@116
|
222 rr.configurationRequest = VampJson::toRpcRequest_Configure(j, mapper, err);
|
c@116
|
223 break;
|
c@75
|
224 case RRType::Process:
|
c@116
|
225 rr.processRequest = VampJson::toRpcRequest_Process(j, mapper, serialisation, err);
|
c@116
|
226 break;
|
c@75
|
227 case RRType::Finish:
|
c@116
|
228 rr.finishRequest = VampJson::toRpcRequest_Finish(j, mapper, err);
|
c@116
|
229 break;
|
c@75
|
230 case RRType::NotValid:
|
c@116
|
231 break;
|
c@75
|
232 }
|
c@75
|
233
|
c@75
|
234 return rr;
|
c@75
|
235 }
|
c@75
|
236
|
c@75
|
237 void
|
c@75
|
238 writeRequestJson(RequestOrResponse &rr, bool useBase64)
|
c@75
|
239 {
|
c@75
|
240 Json j;
|
c@75
|
241
|
c@75
|
242 VampJson::BufferSerialisation serialisation =
|
c@75
|
243 (useBase64 ?
|
c@75
|
244 VampJson::BufferSerialisation::Base64 :
|
c@75
|
245 VampJson::BufferSerialisation::Array);
|
c@75
|
246
|
c@75
|
247 Json id = writeJsonId(rr.id);
|
c@75
|
248
|
c@75
|
249 switch (rr.type) {
|
c@75
|
250
|
c@75
|
251 case RRType::List:
|
c@127
|
252 j = VampJson::fromRpcRequest_List(rr.listRequest, id);
|
c@116
|
253 break;
|
c@75
|
254 case RRType::Load:
|
c@116
|
255 j = VampJson::fromRpcRequest_Load(rr.loadRequest, id);
|
c@116
|
256 break;
|
c@75
|
257 case RRType::Configure:
|
c@116
|
258 j = VampJson::fromRpcRequest_Configure(rr.configurationRequest, mapper, id);
|
c@116
|
259 break;
|
c@75
|
260 case RRType::Process:
|
c@116
|
261 j = VampJson::fromRpcRequest_Process
|
c@116
|
262 (rr.processRequest, mapper, serialisation, id);
|
c@116
|
263 break;
|
c@75
|
264 case RRType::Finish:
|
c@116
|
265 j = VampJson::fromRpcRequest_Finish(rr.finishRequest, mapper, id);
|
c@116
|
266 break;
|
c@75
|
267 case RRType::NotValid:
|
c@116
|
268 break;
|
c@75
|
269 }
|
c@75
|
270
|
c@75
|
271 cout << j.dump() << endl;
|
c@75
|
272 }
|
c@75
|
273
|
c@75
|
274 RequestOrResponse
|
cannam@158
|
275 readResponseJson(string &err, bool &eof)
|
c@75
|
276 {
|
c@75
|
277 RequestOrResponse rr;
|
c@75
|
278 rr.direction = RequestOrResponse::Response;
|
c@75
|
279
|
c@75
|
280 string input;
|
c@75
|
281 if (!getline(cin, input)) {
|
c@116
|
282 // the EOF case, not actually an error
|
cannam@158
|
283 eof = true;
|
c@116
|
284 return rr;
|
c@75
|
285 }
|
c@75
|
286
|
c@75
|
287 Json j = convertResponseJson(input, err);
|
c@75
|
288 if (err != "") return {};
|
c@75
|
289
|
c@75
|
290 rr.type = VampJson::getRequestResponseType(j, err);
|
c@75
|
291 if (err != "") return {};
|
c@75
|
292
|
c@75
|
293 rr.id = readJsonId(j);
|
c@75
|
294
|
c@75
|
295 VampJson::BufferSerialisation serialisation =
|
c@75
|
296 VampJson::BufferSerialisation::Array;
|
c@75
|
297
|
c@75
|
298 rr.success = j["success"].bool_value();
|
c@75
|
299 rr.errorText = j["errorText"].string_value();
|
c@75
|
300
|
c@75
|
301 switch (rr.type) {
|
c@75
|
302
|
c@75
|
303 case RRType::List:
|
c@116
|
304 rr.listResponse = VampJson::toRpcResponse_List(j, err);
|
c@116
|
305 break;
|
c@75
|
306 case RRType::Load:
|
c@116
|
307 rr.loadResponse = VampJson::toRpcResponse_Load(j, mapper, err);
|
c@116
|
308 break;
|
c@75
|
309 case RRType::Configure:
|
c@116
|
310 rr.configurationResponse = VampJson::toRpcResponse_Configure(j, mapper, err);
|
c@116
|
311 break;
|
c@75
|
312 case RRType::Process:
|
c@116
|
313 rr.processResponse = VampJson::toRpcResponse_Process(j, mapper, serialisation, err);
|
c@116
|
314 break;
|
c@75
|
315 case RRType::Finish:
|
c@116
|
316 rr.finishResponse = VampJson::toRpcResponse_Finish(j, mapper, serialisation, err);
|
c@116
|
317 break;
|
c@75
|
318 case RRType::NotValid:
|
c@116
|
319 break;
|
c@75
|
320 }
|
c@75
|
321
|
c@75
|
322 return rr;
|
c@75
|
323 }
|
c@75
|
324
|
c@75
|
325 void
|
c@75
|
326 writeResponseJson(RequestOrResponse &rr, bool useBase64)
|
c@75
|
327 {
|
c@75
|
328 Json j;
|
c@75
|
329
|
c@75
|
330 VampJson::BufferSerialisation serialisation =
|
c@75
|
331 (useBase64 ?
|
c@75
|
332 VampJson::BufferSerialisation::Base64 :
|
c@75
|
333 VampJson::BufferSerialisation::Array);
|
c@75
|
334
|
c@75
|
335 Json id = writeJsonId(rr.id);
|
c@75
|
336
|
c@75
|
337 if (!rr.success) {
|
c@75
|
338
|
c@116
|
339 j = VampJson::fromError(rr.errorText, rr.type, id);
|
c@75
|
340
|
c@75
|
341 } else {
|
c@75
|
342
|
c@116
|
343 switch (rr.type) {
|
c@75
|
344
|
c@116
|
345 case RRType::List:
|
c@116
|
346 j = VampJson::fromRpcResponse_List(rr.listResponse, id);
|
c@116
|
347 break;
|
c@116
|
348 case RRType::Load:
|
c@116
|
349 j = VampJson::fromRpcResponse_Load(rr.loadResponse, mapper, id);
|
c@116
|
350 break;
|
c@116
|
351 case RRType::Configure:
|
c@116
|
352 j = VampJson::fromRpcResponse_Configure(rr.configurationResponse,
|
c@75
|
353 mapper, id);
|
c@116
|
354 break;
|
c@116
|
355 case RRType::Process:
|
c@116
|
356 j = VampJson::fromRpcResponse_Process
|
c@116
|
357 (rr.processResponse, mapper, serialisation, id);
|
c@116
|
358 break;
|
c@116
|
359 case RRType::Finish:
|
c@116
|
360 j = VampJson::fromRpcResponse_Finish
|
c@116
|
361 (rr.finishResponse, mapper, serialisation, id);
|
c@116
|
362 break;
|
c@116
|
363 case RRType::NotValid:
|
cannam@158
|
364 j = VampJson::fromError(rr.errorText, rr.type, id);
|
c@116
|
365 break;
|
c@116
|
366 }
|
c@75
|
367 }
|
c@75
|
368
|
c@75
|
369 cout << j.dump() << endl;
|
c@75
|
370 }
|
c@75
|
371
|
c@75
|
372 RequestOrResponse
|
c@75
|
373 readRequestCapnp(kj::BufferedInputStreamWrapper &buffered)
|
c@75
|
374 {
|
c@75
|
375 RequestOrResponse rr;
|
c@75
|
376 rr.direction = RequestOrResponse::Request;
|
c@75
|
377
|
c@97
|
378 capnp::InputStreamMessageReader message(buffered);
|
c@97
|
379 piper::RpcRequest::Reader reader = message.getRoot<piper::RpcRequest>();
|
c@75
|
380
|
c@75
|
381 rr.type = VampnProto::getRequestResponseType(reader);
|
c@75
|
382 rr.id = readCapnpId(reader);
|
c@75
|
383
|
c@75
|
384 switch (rr.type) {
|
c@75
|
385
|
c@75
|
386 case RRType::List:
|
c@127
|
387 VampnProto::readRpcRequest_List(rr.listRequest, reader);
|
c@116
|
388 break;
|
c@75
|
389 case RRType::Load:
|
c@116
|
390 VampnProto::readRpcRequest_Load(rr.loadRequest, reader);
|
c@116
|
391 break;
|
c@75
|
392 case RRType::Configure:
|
c@116
|
393 VampnProto::readRpcRequest_Configure(rr.configurationRequest,
|
c@116
|
394 reader, mapper);
|
c@116
|
395 break;
|
c@75
|
396 case RRType::Process:
|
c@116
|
397 VampnProto::readRpcRequest_Process(rr.processRequest, reader, mapper);
|
c@116
|
398 break;
|
c@75
|
399 case RRType::Finish:
|
c@116
|
400 VampnProto::readRpcRequest_Finish(rr.finishRequest, reader, mapper);
|
c@116
|
401 break;
|
c@75
|
402 case RRType::NotValid:
|
c@116
|
403 break;
|
c@75
|
404 }
|
c@75
|
405
|
c@75
|
406 return rr;
|
c@75
|
407 }
|
c@75
|
408
|
c@75
|
409 void
|
c@75
|
410 writeRequestCapnp(RequestOrResponse &rr)
|
c@75
|
411 {
|
c@97
|
412 capnp::MallocMessageBuilder message;
|
c@97
|
413 piper::RpcRequest::Builder builder = message.initRoot<piper::RpcRequest>();
|
c@75
|
414
|
c@75
|
415 buildCapnpId(builder, rr.id);
|
c@75
|
416
|
c@75
|
417 switch (rr.type) {
|
c@75
|
418
|
c@75
|
419 case RRType::List:
|
c@127
|
420 VampnProto::buildRpcRequest_List(builder, rr.listRequest);
|
c@116
|
421 break;
|
c@75
|
422 case RRType::Load:
|
c@116
|
423 VampnProto::buildRpcRequest_Load(builder, rr.loadRequest);
|
c@116
|
424 break;
|
c@75
|
425 case RRType::Configure:
|
c@116
|
426 VampnProto::buildRpcRequest_Configure(builder,
|
c@75
|
427 rr.configurationRequest, mapper);
|
c@116
|
428 break;
|
c@75
|
429 case RRType::Process:
|
c@116
|
430 VampnProto::buildRpcRequest_Process(builder, rr.processRequest, mapper);
|
c@116
|
431 break;
|
c@75
|
432 case RRType::Finish:
|
c@116
|
433 VampnProto::buildRpcRequest_Finish(builder, rr.finishRequest, mapper);
|
c@116
|
434 break;
|
c@75
|
435 case RRType::NotValid:
|
c@116
|
436 break;
|
c@75
|
437 }
|
c@75
|
438
|
c@75
|
439 writeMessageToFd(1, message);
|
c@75
|
440 }
|
c@75
|
441
|
c@75
|
442 RequestOrResponse
|
c@75
|
443 readResponseCapnp(kj::BufferedInputStreamWrapper &buffered)
|
c@75
|
444 {
|
c@75
|
445 RequestOrResponse rr;
|
c@75
|
446 rr.direction = RequestOrResponse::Response;
|
c@75
|
447
|
c@97
|
448 capnp::InputStreamMessageReader message(buffered);
|
c@97
|
449 piper::RpcResponse::Reader reader = message.getRoot<piper::RpcResponse>();
|
c@75
|
450
|
c@75
|
451 rr.type = VampnProto::getRequestResponseType(reader);
|
c@75
|
452 rr.success = true;
|
c@75
|
453 rr.errorText = "";
|
c@75
|
454 rr.id = readCapnpId(reader);
|
c@75
|
455 int errorCode = 0;
|
c@75
|
456
|
c@75
|
457 switch (rr.type) {
|
c@75
|
458
|
c@75
|
459 case RRType::List:
|
c@116
|
460 VampnProto::readRpcResponse_List(rr.listResponse, reader);
|
c@116
|
461 break;
|
c@75
|
462 case RRType::Load:
|
c@116
|
463 VampnProto::readRpcResponse_Load(rr.loadResponse, reader, mapper);
|
c@116
|
464 break;
|
c@75
|
465 case RRType::Configure:
|
c@116
|
466 VampnProto::readRpcResponse_Configure(rr.configurationResponse,
|
c@116
|
467 reader, mapper);
|
c@116
|
468 break;
|
c@75
|
469 case RRType::Process:
|
c@116
|
470 VampnProto::readRpcResponse_Process(rr.processResponse, reader, mapper);
|
c@116
|
471 break;
|
c@75
|
472 case RRType::Finish:
|
c@116
|
473 VampnProto::readRpcResponse_Finish(rr.finishResponse, reader, mapper);
|
c@116
|
474 break;
|
c@75
|
475 case RRType::NotValid:
|
c@75
|
476 VampnProto::readRpcResponse_Error(errorCode, rr.errorText, reader);
|
c@116
|
477 break;
|
c@75
|
478 }
|
c@75
|
479
|
c@75
|
480 return rr;
|
c@75
|
481 }
|
c@75
|
482
|
c@75
|
483 void
|
c@75
|
484 writeResponseCapnp(RequestOrResponse &rr)
|
c@75
|
485 {
|
c@97
|
486 capnp::MallocMessageBuilder message;
|
c@97
|
487 piper::RpcResponse::Builder builder = message.initRoot<piper::RpcResponse>();
|
c@75
|
488
|
c@75
|
489 buildCapnpId(builder, rr.id);
|
c@75
|
490
|
c@75
|
491 if (!rr.success) {
|
c@75
|
492
|
c@116
|
493 VampnProto::buildRpcResponse_Error(builder, rr.errorText, rr.type);
|
c@75
|
494
|
c@75
|
495 } else {
|
c@116
|
496
|
c@116
|
497 switch (rr.type) {
|
c@75
|
498
|
c@116
|
499 case RRType::List:
|
c@116
|
500 VampnProto::buildRpcResponse_List(builder, rr.listResponse);
|
c@116
|
501 break;
|
c@116
|
502 case RRType::Load:
|
c@116
|
503 VampnProto::buildRpcResponse_Load(builder, rr.loadResponse, mapper);
|
c@116
|
504 break;
|
c@116
|
505 case RRType::Configure:
|
c@116
|
506 VampnProto::buildRpcResponse_Configure(builder, rr.configurationResponse, mapper);
|
c@116
|
507 break;
|
c@116
|
508 case RRType::Process:
|
c@116
|
509 VampnProto::buildRpcResponse_Process(builder, rr.processResponse, mapper);
|
c@116
|
510 break;
|
c@116
|
511 case RRType::Finish:
|
c@116
|
512 VampnProto::buildRpcResponse_Finish(builder, rr.finishResponse, mapper);
|
c@116
|
513 break;
|
c@116
|
514 case RRType::NotValid:
|
cannam@158
|
515 VampnProto::buildRpcResponse_Error(builder, rr.errorText, rr.type);
|
c@116
|
516 break;
|
c@116
|
517 }
|
c@75
|
518 }
|
c@75
|
519
|
c@75
|
520 writeMessageToFd(1, message);
|
c@75
|
521 }
|
c@75
|
522
|
c@75
|
523 RequestOrResponse
|
cannam@158
|
524 readInputJson(RequestOrResponse::Direction direction, string &err, bool &eof)
|
c@75
|
525 {
|
c@75
|
526 if (direction == RequestOrResponse::Request) {
|
cannam@158
|
527 return readRequestJson(err, eof);
|
c@75
|
528 } else {
|
cannam@158
|
529 return readResponseJson(err, eof);
|
c@75
|
530 }
|
c@75
|
531 }
|
c@75
|
532
|
c@75
|
533 RequestOrResponse
|
cannam@158
|
534 readInputCapnp(RequestOrResponse::Direction direction, bool &eof)
|
c@75
|
535 {
|
c@75
|
536 static kj::FdInputStream stream(0); // stdin
|
c@75
|
537 static kj::BufferedInputStreamWrapper buffered(stream);
|
c@75
|
538
|
c@75
|
539 if (buffered.tryGetReadBuffer() == nullptr) {
|
cannam@158
|
540 eof = true;
|
c@116
|
541 return {};
|
c@75
|
542 }
|
c@75
|
543
|
c@75
|
544 if (direction == RequestOrResponse::Request) {
|
c@116
|
545 return readRequestCapnp(buffered);
|
c@75
|
546 } else {
|
c@116
|
547 return readResponseCapnp(buffered);
|
c@75
|
548 }
|
c@75
|
549 }
|
c@75
|
550
|
c@75
|
551 RequestOrResponse
|
cannam@158
|
552 readInput(string format, RequestOrResponse::Direction direction, bool &eof)
|
c@75
|
553 {
|
cannam@158
|
554 eof = false;
|
cannam@158
|
555
|
c@75
|
556 if (format == "json") {
|
c@116
|
557 string err;
|
cannam@158
|
558 auto result = readInputJson(direction, err, eof);
|
c@116
|
559 if (err != "") throw runtime_error(err);
|
c@116
|
560 else return result;
|
c@75
|
561 } else if (format == "capnp") {
|
cannam@158
|
562 return readInputCapnp(direction, eof);
|
c@75
|
563 } else {
|
c@116
|
564 throw runtime_error("unknown input format \"" + format + "\"");
|
c@75
|
565 }
|
c@75
|
566 }
|
c@75
|
567
|
c@75
|
568 void
|
c@75
|
569 writeOutput(string format, RequestOrResponse &rr)
|
c@75
|
570 {
|
c@75
|
571 if (format == "json") {
|
c@116
|
572 if (rr.direction == RequestOrResponse::Request) {
|
c@116
|
573 writeRequestJson(rr, false);
|
c@116
|
574 } else {
|
c@116
|
575 writeResponseJson(rr, false);
|
c@116
|
576 }
|
c@75
|
577 } else if (format == "json-b64") {
|
c@116
|
578 if (rr.direction == RequestOrResponse::Request) {
|
c@116
|
579 writeRequestJson(rr, true);
|
c@116
|
580 } else {
|
c@116
|
581 writeResponseJson(rr, true);
|
c@116
|
582 }
|
c@75
|
583 } else if (format == "capnp") {
|
c@116
|
584 if (rr.direction == RequestOrResponse::Request) {
|
c@116
|
585 writeRequestCapnp(rr);
|
c@116
|
586 } else {
|
c@116
|
587 writeResponseCapnp(rr);
|
c@116
|
588 }
|
c@75
|
589 } else {
|
c@116
|
590 throw runtime_error("unknown output format \"" + format + "\"");
|
c@75
|
591 }
|
c@75
|
592 }
|
c@75
|
593
|
c@75
|
594 int main(int argc, char **argv)
|
c@75
|
595 {
|
c@75
|
596 if (argc < 2) {
|
c@116
|
597 usage();
|
c@75
|
598 }
|
c@75
|
599
|
c@75
|
600 string informat = "json", outformat = "json";
|
c@75
|
601 RequestOrResponse::Direction direction = RequestOrResponse::Request;
|
c@75
|
602 bool haveDirection = false;
|
c@75
|
603
|
c@75
|
604 for (int i = 1; i < argc; ++i) {
|
c@75
|
605
|
c@116
|
606 string arg = argv[i];
|
c@116
|
607 bool final = (i + 1 == argc);
|
c@116
|
608
|
c@116
|
609 if (arg == "-i") {
|
c@116
|
610 if (final) usage();
|
c@116
|
611 else informat = argv[++i];
|
c@75
|
612
|
c@116
|
613 } else if (arg == "-o") {
|
c@116
|
614 if (final) usage();
|
c@116
|
615 else outformat = argv[++i];
|
c@75
|
616
|
c@116
|
617 } else if (arg == "request") {
|
c@116
|
618 direction = RequestOrResponse::Request;
|
c@116
|
619 haveDirection = true;
|
c@75
|
620
|
c@116
|
621 } else if (arg == "response") {
|
c@116
|
622 direction = RequestOrResponse::Response;
|
c@116
|
623 haveDirection = true;
|
c@116
|
624
|
c@116
|
625 } else {
|
c@116
|
626 usage();
|
c@116
|
627 }
|
c@75
|
628 }
|
c@75
|
629
|
c@75
|
630 if (informat == "" || outformat == "" || !haveDirection) {
|
c@116
|
631 usage();
|
c@75
|
632 }
|
c@75
|
633
|
c@123
|
634 #ifdef _WIN32
|
c@123
|
635 if (informat == "capnp") {
|
c@123
|
636 int result = _setmode(_fileno(stdin), _O_BINARY);
|
c@123
|
637 if (result == -1) {
|
c@123
|
638 cerr << "Failed to set binary mode on stdin, necessary for capnp format" << endl;
|
c@123
|
639 exit(1);
|
c@123
|
640 }
|
c@123
|
641 }
|
c@123
|
642 if (outformat == "capnp") {
|
c@123
|
643 int result = _setmode(_fileno(stdout), _O_BINARY);
|
c@123
|
644 if (result == -1) {
|
c@123
|
645 cerr << "Failed to set binary mode on stdout, necessary for capnp format" << endl;
|
c@123
|
646 exit(1);
|
c@123
|
647 }
|
c@123
|
648 }
|
c@123
|
649 #endif
|
c@123
|
650
|
c@75
|
651 while (true) {
|
c@75
|
652
|
c@116
|
653 try {
|
c@75
|
654
|
cannam@158
|
655 bool eof = false;
|
cannam@158
|
656 RequestOrResponse rr = readInput(informat, direction, eof);
|
cannam@158
|
657 if (eof) break;
|
c@75
|
658
|
c@116
|
659 writeOutput(outformat, rr);
|
cannam@158
|
660
|
c@116
|
661 } catch (std::exception &e) {
|
c@75
|
662
|
c@116
|
663 cerr << "Error: " << e.what() << endl;
|
c@116
|
664 exit(1);
|
c@116
|
665 }
|
c@75
|
666 }
|
c@75
|
667
|
c@75
|
668 exit(0);
|
c@75
|
669 }
|
c@75
|
670
|
c@75
|
671
|