comparison vamp-client/client.cpp @ 85:1b7c11bc5a88

Debug out
author Chris Cannam <c.cannam@qmul.ac.uk>
date Wed, 12 Oct 2016 12:51:29 +0100
parents db9a6ab618bc
children 7a77a374b6b2
comparison
equal deleted inserted replaced
84:db9a6ab618bc 85:1b7c11bc5a88
77 77
78 VampnProto::buildRpcRequest_Load(builder, request); 78 VampnProto::buildRpcRequest_Load(builder, request);
79 ReqId id = getId(); 79 ReqId id = getId();
80 builder.getId().setNumber(id); 80 builder.getId().setNumber(id);
81 81
82 cerr << "id = " << id << endl;
83
82 auto arr = messageToFlatArray(message); 84 auto arr = messageToFlatArray(message);
83 m_process->write(arr.asChars().begin(), arr.asChars().size()); 85 m_process->write(arr.asChars().begin(), arr.asChars().size());
84 86
85 //!!! ... --> will also need some way to kill this process 87 //!!! ... --> will also need some way to kill this process
86 //!!! (from another thread) 88 //!!! (from another thread)
281 complete = true; 283 complete = true;
282 } 284 }
283 } 285 }
284 } 286 }
285 287
288 cerr << "buffer = ";
289 for (int i = 0; i < buffer.size(); ++i) {
290 if (i % 16 == 0) cerr << "\n";
291 cerr << int(buffer[i]) << " ";
292 }
293 cerr << "\n";
294
286 return buffer; 295 return buffer;
287 } 296 }
288 297
289 void 298 void
290 checkResponseType(const RpcResponse::Reader &r, 299 checkResponseType(const RpcResponse::Reader &r,