control_service.cpp
Go to the documentation of this file.
1 #include "control_service.h"
2 
3 #include <ros/ros.h>
4 
5 using fruit::Component;
6 using fruit::createComponent;
7 using fruit::Injector;
8 
9 // エンドユーザプログラムから与えられたメッセージをCallerに与え、レスポンスをServiceのClientに返す
10 bool ControlServiceImpl::callback(skyway::SkyWayControl::Request &req,
11  skyway::SkyWayControl::Response &res) {
12  res.response = callback_(req.request);
13  return true;
14 }
15 
16 // コンストラクタでは、サービス名とCaller内のSender Objectを受け取る
17 ControlServiceImpl::ControlServiceImpl(
18  ASSISTED(std::string) name,
19  ASSISTED(std::function<std::string(std::string)>) callback)
20  : name_(name), callback_(callback) {
22 }
23 
24 Component<ControlServiceFactory> getControlServiceComponent() {
25  return createComponent().bind<ControlService, ControlServiceImpl>();
26 }
ServiceServer advertiseService(const std::string &service, bool(T::*srv_func)(MReq &, MRes &), T *obj)
ros::ServiceServer service_
bool callback(skyway::SkyWayControl::Request &req, skyway::SkyWayControl::Response &res)
std::function< std::string(std::string)> callback_
ros::NodeHandle nh_
Component< ControlServiceFactory > getControlServiceComponent()


skyway
Author(s): Toshiya Nakakura
autogenerated on Sat Apr 15 2023 02:08:21