udp_socket.h
Go to the documentation of this file.
1 //
2 // Created by nakakura on 22/09/08.
3 //
4 
5 #ifndef SKYWAY_UDP_SOCKET_FUTURE_H
6 #define SKYWAY_UDP_SOCKET_FUTURE_H
7 
8 #include <fruit/fruit.h>
9 #include <ros/ros.h>
10 
11 #include <boost/asio.hpp>
12 #include <boost/asio/use_future.hpp>
13 #include <future>
14 
15 #include "socket.h"
16 
17 using boost::asio::ip::address;
18 using boost::asio::ip::udp;
19 using fruit::Component;
20 using fruit::createComponent;
21 using fruit::Injector;
22 
23 class UdpSocket : public Socket {
24  public:
25  UdpSocket() = delete;
27  ASSISTED(udp::endpoint) target_socket,
28  ASSISTED(std::shared_ptr<std::function<void(std::vector<uint8_t>)>>)
29  callback));
30  ~UdpSocket();
31 
32  virtual void Start() override;
33  virtual void Stop() override;
34  virtual unsigned short Port() override;
35  virtual void SendData(std::vector<uint8_t> vec) override;
36 
37  private:
38  // 受信側パラメータ
39  // 受信を継続することを示すフラグ。StartメソッドとStopメソッドで変更される
40  bool is_running_ = false;
41  // io_serviceが生成されたスレッドでなければ正しく動作しないため、
42  // ソケットやその他の受信に必要なリソースは、基本的に全てこのスレッド内で生成され、
43  // スレッド終了時に開放される
44  std::unique_ptr<std::thread> recv_thread_{nullptr};
45  // 受信したパケットのリダイレクト先
46  std::shared_ptr<std::function<void(std::vector<uint8_t>)>> callback_;
47  // socket本体はStartメソッド実行中にrecv_thread内で生成されるが、
48  // Portメソッドでポート番号を返すため、インスタンス変数として保持し、
49  // コンストラクタ内でgetFreePortを使って、0.0.0.0とランダムポート番号でアサインする
50  udp::endpoint local_endpoint_{};
51 
52  // 送信側パラメータ
53  // 送信はスレッド起動の必要がないので、コンストラクタ内で生成する
54  // Start, Stopメソッドでの操作は受け付けず、デストラクタで開放される
55  std::unique_ptr<boost::asio::io_service> send_io_service_{
56  new boost::asio::io_service()};
57  std::unique_ptr<udp::socket> send_socket_{
58  std::make_unique<udp::socket>(*send_io_service_.get())};
59  // このソケットの送信先はWebRTC Gatewayで固定なので、
60  // コンストラクタでソケット情報を受けとり、そのまま保持する
61  udp::endpoint target_socket_;
62  // 送信結果のコールバック
63  void send_handler(const boost::system::error_code &error, std::size_t len);
64 };
65 
66 udp::endpoint getFreePort();
67 
68 using SocketFactory = std::function<std::unique_ptr<Socket>(
69  udp::endpoint, std::shared_ptr<std::function<void(std::vector<uint8_t>)>>)>;
70 
71 fruit::Component<SocketFactory> getUdpSocketComponent();
72 
73 #endif // SKYWAY_UDP_SOCKET_FUTURE_H
udp::endpoint local_endpoint_
Definition: udp_socket.h:50
Definition: socket.h:8
fruit::Component< SocketFactory > getUdpSocketComponent()
Definition: udp_socket.cpp:87
udp::endpoint getFreePort()
Definition: udp_socket.cpp:79
UdpSocket()=delete
Definition: udp_socket.cpp:7
virtual void Stop() override
Definition: udp_socket.cpp:55
virtual void Start() override
Definition: udp_socket.cpp:21
std::unique_ptr< std::thread > recv_thread_
Definition: udp_socket.h:44
void send_handler(const boost::system::error_code &error, std::size_t len)
Definition: udp_socket.cpp:64
INJECT(UdpSocket(ASSISTED(udp::endpoint) target_socket, callback))
std::unique_ptr< udp::socket > send_socket_
Definition: udp_socket.h:57
std::function< std::unique_ptr< Socket >(udp::endpoint, std::shared_ptr< std::function< void(std::vector< uint8_t >)> >)> SocketFactory
Definition: udp_socket.h:69
udp::endpoint target_socket_
Definition: udp_socket.h:61
virtual unsigned short Port() override
Definition: udp_socket.cpp:62
std::unique_ptr< boost::asio::io_service > send_io_service_
Definition: udp_socket.h:55
std::shared_ptr< std::function< void(std::vector< uint8_t >)> > callback_
Definition: udp_socket.h:46
virtual void SendData(std::vector< uint8_t > vec) override
Definition: udp_socket.cpp:71
bool is_running_
Definition: udp_socket.h:40


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