control_service.h
Go to the documentation of this file.
1 // SkyWay WebRTC Gateway Caller(以下Caller)を利用して、
2 // WebRTC Gatewayを操作するためのクラス
3 // Observerとしてstd::functionを持つ
4 // Serviceを起動してエンドユーザプログラムからJSONを受け取り、Observerに通知する。
5 // Observerからの戻り値はそのままClientに返す
6 //
7 // このクラスはプログラム終了時以外に開放することを想定していないので、
8 // このクラス内で起動したServiceはこのクラス内では停止処理は行わない。
9 // ROS側の開放処理に委ねる
10 
11 // TODO: unit test
12 
13 #ifndef SKYWAY_CONTROL_SERVICE_H
14 #define SKYWAY_CONTROL_SERVICE_H
15 
16 #include <fruit/fruit.h>
17 #include <ros/ros.h>
18 #include <skyway/SkyWayControl.h>
19 
20 #include <functional>
21 #include <string>
22 
24  public:
25  virtual ~ControlService() = default;
26  virtual void Shutdown() {}
27 };
28 
30  private:
33  std::string name_;
34  std::function<std::string(std::string)> callback_;
35  bool is_running_ = true;
36 
37  // エンドユーザプログラムから与えられたメッセージをCallerに与え、レスポンスをServiceのClientに返す
38  bool callback(skyway::SkyWayControl::Request &req,
39  skyway::SkyWayControl::Response &res);
40 
41  public:
42  // コンストラクタでは、サービス名とCaller内のSender Objectを受け取る
43  INJECT(ControlServiceImpl(ASSISTED(std::string) name,
44  ASSISTED(std::function<std::string(std::string)>)
45  callback));
47  virtual void Shutdown() override {
48  is_running_ = false;
50  }
51 };
52 
53 using ControlServiceFactory = std::function<std::unique_ptr<ControlService>(
54  std::string, std::function<std::string(std::string)>)>;
55 
56 fruit::Component<ControlServiceFactory> getControlServiceComponent();
57 
58 #endif
ControlServiceImpl::Shutdown
virtual void Shutdown() override
Definition: control_service.h:47
ControlServiceImpl::name_
std::string name_
Definition: control_service.h:33
ros.h
getControlServiceComponent
fruit::Component< ControlServiceFactory > getControlServiceComponent()
Definition: control_service.cpp:24
ControlServiceImpl::~ControlServiceImpl
~ControlServiceImpl()
Definition: control_service.h:46
ros::ServiceServer
ControlService
Definition: control_service.h:23
ControlServiceImpl::callback
bool callback(skyway::SkyWayControl::Request &req, skyway::SkyWayControl::Response &res)
Definition: control_service.cpp:10
ControlServiceImpl::is_running_
bool is_running_
Definition: control_service.h:35
ControlServiceImpl::service_
ros::ServiceServer service_
Definition: control_service.h:32
ControlServiceFactory
std::function< std::unique_ptr< ControlService >(std::string, std::function< std::string(std::string)>)> ControlServiceFactory
Definition: control_service.h:54
ControlServiceImpl::callback_
std::function< std::string(std::string)> callback_
Definition: control_service.h:34
ControlService::Shutdown
virtual void Shutdown()
Definition: control_service.h:26
ControlServiceImpl
Definition: control_service.h:29
ControlService::~ControlService
virtual ~ControlService()=default
ros::ServiceServer::shutdown
void shutdown()
ControlServiceImpl::INJECT
INJECT(ControlServiceImpl(ASSISTED(std::string) name, callback))
ControlServiceImpl::nh_
ros::NodeHandle nh_
Definition: control_service.h:31
ros::NodeHandle


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