37 void Master::start(
const std::string& server_address,
bool blocking)
41 grpc::ServerBuilder builder;
44 builder.AddListeningPort(server_address, grpc::InsecureServerCredentials());
47 builder.RegisterService(
this);
49 _server = builder.BuildAndStart();
52 PRINT_INFO(
"RpcServer listening on " << server_address);
89 corbo::messages::corboParameters msg;
98 if (!msg.ParsePartialFromIstream(&file))
103 std::stringstream issues;
115 bool result =
setPlant(msg.plant(), issues);
124 result &=
setTask(msg.task(), issues);
130 bool Master::setPlant(
const messages::Plant& msg, std::stringstream* issues)
134 if (msg.plant_case() == corbo::messages::Plant::PLANT_NOT_SET)
136 if (issues) *issues <<
"No plant selected." << std::endl;
139 std::string plant_type;
140 if (util::get_oneof_field_type(msg,
"plant", plant_type,
false))
146 util::get_oneof_field_type_expand_isolated(msg,
"plant", plant_type,
false);
152 plant->fromMessage(msg, issues);
154 return issues ? issues->str().empty() :
true;
156 if (issues) *issues <<
"Plant type '" + plant_type +
"' not found." << std::endl;
159 *issues <<
"Cannot determine type of specified plant. Protobuf error." << std::endl;
168 if (msg.controller_case() == corbo::messages::Controller::CONTROLLER_NOT_SET)
170 if (issues) *issues <<
"No controller selected." << std::endl;
173 std::string controller_type;
174 if (util::get_oneof_field_type(msg,
"controller", controller_type,
false))
180 util::get_oneof_field_type_expand_isolated(msg,
"controller", controller_type,
false);
186 controller->fromMessage(msg, issues);
188 return issues ? issues->str().empty() :
true;
190 if (issues) *issues <<
"Controller type '" + controller_type +
"' not found." << std::endl;
193 *issues <<
"Cannot determine type of specified controller. Protobuf error." << std::endl;
202 if (msg.observer_case() == corbo::messages::Observer::OBSERVER_NOT_SET)
204 if (issues) *issues <<
"No observer selected." << std::endl;
207 std::string observer_type;
208 if (util::get_oneof_field_type(msg,
"observer", observer_type,
false))
214 util::get_oneof_field_type_expand_isolated(msg,
"observer", observer_type,
false);
220 observer->fromMessage(msg, issues);
222 return issues ? issues->str().empty() :
true;
224 if (issues) *issues <<
"Observer type '" + observer_type +
"' not found." << std::endl;
227 *issues <<
"Cannot determine type of specified observer. Protobuf error." << std::endl;
232 bool Master::setTask(
const messages::Task& msg, std::stringstream* issues)
234 if (msg.task_case() == corbo::messages::Task::TASK_NOT_SET)
236 if (issues) *issues <<
"No task selected." << std::endl;
239 std::string task_type;
240 if (util::get_oneof_field_type(msg,
"task", task_type,
false))
246 util::get_oneof_field_type_expand_isolated(msg,
"task", task_type,
false);
252 _task->fromMessage(msg, issues);
253 return issues ? issues->str().empty() :
true;
255 if (issues) *issues <<
"Task type '" + task_type +
"' not found." << std::endl;
258 *issues <<
"Cannot determine type of specified task. Protobuf error." << std::endl;
265 std::stringstream issues;
268 response->set_ok(
true);
272 response->set_ok(
false);
273 response->set_text(issues.str());
275 return grpc::Status::OK;
282 return grpc::Status::OK;
287 std::stringstream issues;
290 response->set_ok(
true);
294 response->set_ok(
false);
295 response->set_text(issues.str());
297 return grpc::Status::OK;
304 return grpc::Status::OK;
309 std::stringstream issues;
312 response->set_ok(
true);
316 response->set_ok(
false);
317 response->set_text(issues.str());
319 return grpc::Status::OK;
326 return grpc::Status::OK;
331 std::stringstream issues;
332 if (
setTask(*request, &issues))
334 response->set_ok(
true);
338 response->set_ok(
false);
339 response->set_text(issues.str());
341 return grpc::Status::OK;
346 if (!
_task)
return grpc::Status::CANCELLED;
347 _task->toMessage(*response);
348 return grpc::Status::OK;
352 grpc::ServerWriter<messages::Signal>* response_stream)
356 SignalTargetRPC::Ptr signal_target = std::make_shared<SignalTargetRPC>(response_stream);
359 return grpc::Status::OK;
363 grpc::ServerWriter<messages::Signal>* response_stream)
369 SignalTargetRPC::Ptr signal_target = std::make_shared<SignalTargetRPC>(response_stream);
373 if (!err_msg.empty())
375 return grpc::Status(grpc::StatusCode::ABORTED, err_msg);
378 return grpc::Status::OK;
387 response->set_text(result);
391 response->set_text(
"No task selected!");
393 return grpc::Status::OK;
398 response->set_text(
"got it");
399 response->set_ok(
true);
400 return grpc::Status::OK;
406 return grpc::Status::OK;