@@ -179,72 +179,51 @@ grpc::ByteBuffer CConnectionInstance::sendMessageBlocking(google::protobuf::Mess
179
179
void * tag = nullptr ;
180
180
bool ok = false ;
181
181
182
- std::cout << " Initialize RPC call and wait for confirmation" ;
183
-
184
182
// Initialize RPC calland wait for confirmation
185
183
call->StartCall ((void *)1 );
186
184
187
185
if (!completionQueue.Next (&tag, &ok) || !ok || tag != (void *)1 )
188
186
{
189
- std::cout << " Could not start RPC call" << std::endl;
190
- }
191
- else
192
- {
193
- std::cout << " Successfully started RPC call" << std::endl;
187
+ throw ELibGRPCWrapperInterfaceException (LIBGRPCWRAPPER_ERROR_COULDNOTSTARTRPCCALL, " Could not start RPC call: " + sServiceMethod );
194
188
}
195
189
196
190
// Send request to server and wait for confirmation
197
191
call->Write (requestBuffer, (void *)2 );
198
192
199
193
if (!completionQueue.Next (&tag, &ok) || !ok || tag != (void *)2 )
200
194
{
201
- std::cout << " Could not send request" << std::endl;
202
- }
203
- else
204
- {
205
- std::cout << " Successfully sent request" << std::endl;
195
+ throw ELibGRPCWrapperInterfaceException (LIBGRPCWRAPPER_ERROR_COULDNOTSENDREQUEST, " Could not send request: " + sServiceMethod );
206
196
}
207
197
208
198
// Indicate that request is completed and wait for confirmation
209
199
call->WritesDone ((void *)3 );
210
200
211
201
if (!completionQueue.Next (&tag, &ok) || !ok || tag != (void *)3 )
212
202
{
213
- std::cout << " Could not indicate end of request" << std::endl;
214
- }
215
- else
216
- {
217
- std::cout << " Successfully indicated end of request" << std::endl;
203
+ throw ELibGRPCWrapperInterfaceException (LIBGRPCWRAPPER_ERROR_COULDNOTINDICATEENDOFREQUEST, " Could not indicate end of request: " + sServiceMethod );
218
204
}
219
-
205
+
220
206
// Read response from server and wait for confirmation
221
207
grpc::ByteBuffer responseBuffer;
222
208
call->Read (&responseBuffer, (void *)4 );
223
209
224
210
if (!completionQueue.Next (&tag, &ok) || !ok || tag != (void *)4 )
225
211
{
226
- std::cout << " Could not receive response" << std::endl;
227
- }
228
- else
229
- {
230
- std::cout << " Successfully received response" << std::endl;
212
+ throw ELibGRPCWrapperInterfaceException (LIBGRPCWRAPPER_ERROR_COULDNOTRECEIVERESPONSE, " Could not receive response: " + sServiceMethod );
231
213
}
232
214
233
215
// Finish RPC call and wait for confirmation
234
216
call->Finish (&status, (void *)5 );
235
217
236
218
if (!completionQueue.Next (&tag, &ok) || !ok || tag != (void *)5 )
237
219
{
238
- std::cout << " Could not finish RPC call" << std::endl;
239
- }
240
- else
241
- {
242
- std::cout << " Successfully finished RPC call" << std::endl;
220
+ throw ELibGRPCWrapperInterfaceException (LIBGRPCWRAPPER_ERROR_COULDNOTFINISHRPCCALL, " Could not finish RPC call: " + sServiceMethod );
243
221
}
244
222
245
223
if (!status.ok ())
246
224
{
247
- std::cerr << " RPC failed: " << status.error_message () << " - code: " << status.error_code () << std::endl;
225
+ std::string sErrorMessage = " RPC failed: " + sServiceMethod + " (" + status.error_message () + " - code: " + std::to_string (status.error_code ()) + " )" ;
226
+ throw ELibGRPCWrapperInterfaceException (LIBGRPCWRAPPER_ERROR_RPCFAILED, sErrorMessage );
248
227
}
249
228
250
229
return responseBuffer;
0 commit comments