router.cpp
Go to the documentation of this file.
1 #include "router.h"
2 #include "ffi/rust_functions.h"
3 
4 namespace {
5 std::function<void(int)> shutdown_handler;
6 void signal_handler(int signal) { shutdown_handler(signal); }
7 } // namespace
8 
10  ControlServiceFactory control_service_factory,
11  EventsServiceFactory event_service_factory,
12  std::shared_ptr<IPluginRouterFactory> plugin_router_factory)
13  : control_service_factory_(control_service_factory),
14  event_service_factory_(event_service_factory),
15  plugin_router_factory_(std::move(plugin_router_factory)) {
16  shutdown_handler =
17  std::bind(&RouterImpl::shutdown, this, std::placeholders::_1);
18  // 終了時にROS-nodeが落ちる前に開放処理をしなければならないので、SIGINTをhookする
19  signal(SIGINT, signal_handler);
20 
21  ROS_DEBUG("start /skyway_control");
22  // SkyWayControl Serviceの起動
24  "skyway_control",
25  std::bind(&RouterImpl::on_control_message, this, std::placeholders::_1));
26  ROS_DEBUG("start /skyway_events");
27  // SkyWayEvent Serviceの起動
29  "skyway_events", std::bind(&RouterImpl::on_event_request, this));
30 }
31 
32 std::string RouterImpl::on_control_message(std::string request) {
33  char* message = call_service(request.c_str());
34  // Rust側でCString.into_raw()しているので、開放が必要
35  std::string response = message;
36  release_string(message);
37  return response;
38 }
39 
41  // これ以降の処理はcallbackを除き全てRust側で実装する
42  char* message = receive_events();
43  // Rust側でCString.into_raw()しているので、開放が必要
44  std::string event = message;
45  release_string(message);
46  return event;
47 }
48 
49 void RouterImpl::shutdown(int signal) {
50  // ctrl-cを受けたあとの終了処理は全てここで行う
51 
52  // Peer Object生成後であれば、勝手に終了されると
53  // Controllerが困るので、何もしない
54  if (peer_id_ != "" && token_ != "") {
55  } else {
56  // Peer Object生成前であれば終了してしまう
57  ros::shutdown();
58  }
59 }
60 
61 void RouterImpl::OnCreatePeer(char* peer_id, char* token) {
62  // Peer Objectの生成に成功したら、peer_idとtokenを保持しておく
63  // これは終了時に開放するためだけに利用する
64  peer_id_ = peer_id;
65  token_ = token;
66 }
67 
69  uint16_t target_port,
70  std::string plugin_type,
71  std::string plugin_param) {
72  std::shared_ptr<rapidjson::Document> doc(new rapidjson::Document);
73  doc->Parse(plugin_param.c_str());
74 
75  auto plugin_router =
76  plugin_router_factory_->Create(target_ip, target_port, plugin_type, doc);
77  auto result = plugin_router->TryStart();
78 
79  // pluginのロードに成功した場合のみ、実体を保管する
80  if (result.is_success) {
81  std::stringstream ss;
82  ss << "key-" << result.port;
83  std::string key = ss.str();
84  plugin_map_.emplace(key, std::move(plugin_router));
85  }
86 
87  return result;
88 }
89 
90 void RouterImpl::OnDeleteData(uint16_t port_num) {
91  std::stringstream ss;
92  ss << "key-" << port_num;
93  std::string key = ss.str();
94  if (plugin_map_.find(key) != plugin_map_.end()) {
95  plugin_map_.erase(key);
96  } else {
97  ROS_ERROR("data connection not found at onDeleteData");
98  }
99 }
100 
101 Component<Router> getRouterComponent() {
102  return fruit::createComponent()
103  .bind<Router, RouterImpl>()
105  .install(getEventsServiceComponent)
106  .install(getPluginFactoryComponent);
107 }
RouterImpl::plugin_map_
std::unordered_map< std::string, std::unique_ptr< PluginRouter > > plugin_map_
Definition: router.h:42
response
const std::string response
RouterImpl::shutdown
void shutdown(int signal)
Definition: router.cpp:49
RouterImpl::event_service_
std::unique_ptr< EventsService > event_service_
Definition: router.h:39
RouterImpl
Definition: router.h:30
RouterImpl::OnConnectData
virtual PluginResult OnConnectData(std::string target_ip, uint16_t, std::string, std::string) override
Definition: router.cpp:68
router.h
RouterImpl::token_
std::string token_
Definition: router.h:33
release_string
void release_string(char *message)
RouterImpl::event_service_factory_
EventsServiceFactory event_service_factory_
Definition: router.h:36
ros::shutdown
ROSCPP_DECL void shutdown()
RouterImpl::control_service_factory_
ControlServiceFactory control_service_factory_
Definition: router.h:35
RouterImpl::peer_id_
std::string peer_id_
Definition: router.h:32
RouterImpl::on_event_request
std::string on_event_request()
Definition: router.cpp:40
receive_events
char * receive_events()
data_callee.signal_handler
def signal_handler(peer_id, token)
Definition: data_callee.py:14
RouterImpl::plugin_router_factory_
std::shared_ptr< IPluginRouterFactory > plugin_router_factory_
Definition: router.h:43
Router
Definition: router.h:19
ROS_DEBUG
#define ROS_DEBUG(...)
ControlServiceFactory
std::function< std::unique_ptr< ControlService >(std::string, std::function< std::string(std::string)>)> ControlServiceFactory
Definition: control_service.h:54
RouterImpl::OnDeleteData
virtual void OnDeleteData(uint16_t port_num) override
Definition: router.cpp:90
RouterImpl::RouterImpl
RouterImpl()=delete
Definition: router.cpp:9
getRouterComponent
Component< Router > getRouterComponent()
Definition: router.cpp:101
rust_functions.h
call_service
char * call_service(const char *message)
getControlServiceComponent
Component< ControlServiceFactory > getControlServiceComponent()
Definition: control_service.cpp:24
std
getEventsServiceComponent
Component< EventsServiceFactory > getEventsServiceComponent()
Definition: events_service.cpp:22
ROS_ERROR
#define ROS_ERROR(...)
RouterImpl::OnCreatePeer
virtual void OnCreatePeer(char *peer_id, char *token) override
Definition: router.cpp:61
RouterImpl::on_control_message
std::string on_control_message(std::string)
Definition: router.cpp:32
EventsServiceFactory
std::function< std::unique_ptr< EventsService >(std::string, std::function< std::string()>)> EventsServiceFactory
Definition: events_service.h:52
PluginResult
Definition: plugin_router.h:14
getPluginFactoryComponent
Component< IPluginRouterFactory > getPluginFactoryComponent()
Definition: plugin_router_factory.cpp:22
RouterImpl::control_service_
std::unique_ptr< ControlService > control_service_
Definition: router.h:38


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