binary_plugin_router.cpp
Go to the documentation of this file.
1 //
2 // Created by nakakura on 22/08/25.
3 //
4 
5 #include "binary_plugin_router.h"
6 
7 //===== private =====
8 void BinaryPluginRouter::observe_socket(std::vector<uint8_t> data) {
9  for (auto plugin = plugins_.rbegin(); plugin != plugins_.rend(); ++plugin) {
10  (*plugin)->Execute(data);
11  }
12 }
13 
14 void BinaryPluginRouter::observe_plugins(std::vector<uint8_t> data) {
15  socket_->SendData(data);
16 }
17 
18 //===== public =====
20  std::shared_ptr<rapidjson::Document> config, udp::endpoint target_socket,
22  : plugin_loader_("skyway", "skyway_plugin::SkyWayBinaryPlugin"),
23  config_(std::move(config)),
24  target_socket_(target_socket) {
25  // Socketからのcallbackを与えてSocketを生成`
26  socket_ = factory(
28  std::make_shared<std::function<void(std::vector<uint8_t>)>>(std::bind(
29  &BinaryPluginRouter::observe_socket, this, std::placeholders::_1)));
30 }
31 
33  if (socket_) socket_->Stop();
34  for (auto plugin = plugins_.rbegin(); plugin != plugins_.rend(); ++plugin) {
35  (*plugin)->Shutdown();
36  plugin->reset();
37  }
38 
39  ROS_DEBUG("Succeeded in unloading all plugins");
40 }
41 
43  // plugin情報の配列を与えられていない場合は開始できない
44  if (!config_->IsArray()) {
45  return {false, 0, "invalid config parameters"};
46  }
47 
48  // try startにして、errorを返せるようにする
49  auto callback =
50  std::make_shared<std::function<void(std::vector<uint8_t>)>>(std::bind(
51  &BinaryPluginRouter::observe_plugins, this, std::placeholders::_1));
52 
53  for (rapidjson::Value::ConstValueIterator itr = config_->Begin();
54  itr != config_->End(); ++itr) {
55  if (!itr->HasMember("plugin_name")) continue;
56  std::string plugin_name = (*itr)["plugin_name"].GetString();
57 
58  try {
60  plugin_loader_.createInstance(plugin_name.c_str());
61  std::shared_ptr<rapidjson::Document> parameter(new rapidjson::Document);
62  parameter->CopyFrom(*itr, parameter->GetAllocator());
63  plugin->Initialize(std::move(parameter), callback);
64  plugins_.push_back(plugin);
65  ROS_DEBUG("plugin %s has been loaded successfully", plugin_name.c_str());
66  } catch (pluginlib::PluginlibException& ex) {
67  // pluginがopenできなかったらここでreturnする
68  std::ostringstream stream;
69  stream << "Failed to load " << plugin_name << ex.what();
70  std::string message = stream.str();
71  char* data = (char*)malloc(strlen(message.c_str()) + 1);
72  ROS_ERROR("plugin load error: %s", message.c_str());
73  strcpy(data, message.c_str());
74  return {.is_success = false, 0, .error_message = (const char*)data};
75  }
76  }
77 
78  // ここでsocket startするとデータが流れ始める
79  socket_->Start();
80 
81  return {true, socket_->Port(), ""};
82 }
83 
84 uint16_t BinaryPluginRouter::Port() { return socket_->Port(); }
85 
86 Component<fruit::Annotated<BinaryAnnotation, PluginRouterFactory>>
88  return createComponent()
89  .bind<fruit::Annotated<BinaryAnnotation, PluginRouter>,
91  .install(getUdpSocketComponent);
92 }
virtual uint16_t Port() override
void observe_plugins(std::vector< uint8_t > data)
boost::shared_ptr< T > createInstance(const std::string &lookup_name)
std::function< std::unique_ptr< Socket >(udp::endpoint, std::shared_ptr< std::function< void(std::vector< uint8_t >)> >)> SocketFactory
Definition: udp_socket.h:69
void observe_socket(std::vector< uint8_t > data)
Component< fruit::Annotated< BinaryAnnotation, PluginRouterFactory > > getBinaryPluginRouterComponent()
pluginlib::ClassLoader< skyway_plugin::SkyWayBinaryPlugin > plugin_loader_
std::shared_ptr< rapidjson::Document > config_
std::unique_ptr< Socket > socket_
udp::endpoint target_socket_
virtual PluginResult TryStart() override
Component< SocketFactory > getUdpSocketComponent()
Definition: udp_socket.cpp:87
std::vector< boost::shared_ptr< skyway_plugin::SkyWayBinaryPlugin > > plugins_
#define ROS_ERROR(...)
#define ROS_DEBUG(...)


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