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 }
ros.h
ros::NodeHandle::advertiseService
ServiceServer advertiseService(AdvertiseServiceOptions &ops)
control_service.h
ControlService
Definition: control_service.h:23
ControlServiceImpl::callback
bool callback(skyway::SkyWayControl::Request &req, skyway::SkyWayControl::Response &res)
Definition: control_service.cpp:10
ControlServiceImpl::service_
ros::ServiceServer service_
Definition: control_service.h:32
ControlServiceImpl::callback_
std::function< std::string(std::string)> callback_
Definition: control_service.h:34
ControlServiceImpl
Definition: control_service.h:29
getControlServiceComponent
Component< ControlServiceFactory > getControlServiceComponent()
Definition: control_service.cpp:24
ControlServiceImpl::nh_
ros::NodeHandle nh_
Definition: control_service.h:31


skyway
Author(s): Toshiya Nakakura
autogenerated on Thu Oct 26 2023 02:42:21