udp_socket.cpp
Go to the documentation of this file.
1 //
2 // Created by nakakura on 22/09/08.
3 //
4 
5 #include "udp_socket.h"
6 
8  udp::endpoint target_socket,
9  std::shared_ptr<std::function<void(std::vector<uint8_t>)>> callback)
10  : target_socket_(target_socket), callback_(callback) {
12  send_socket_->open(udp::v4());
13 }
14 
16  send_socket_->cancel();
17  send_io_service_->stop();
18  send_socket_->close();
19 }
20 
22  if (is_running_) return;
23  is_running_ = true;
24 
25  recv_thread_.reset(new std::thread([&] {
26  boost::asio::io_service io_service;
27  boost::asio::io_service::work work(io_service);
28  std::thread io_thread([&io_service]() { io_service.run(); });
29 
30  udp::socket socket(io_service, local_endpoint_);
31  udp::endpoint remote_endpoint;
32 
33  while (ros::ok() && is_running_) {
34  std::vector<unsigned char> vec(1500, 0);
35  std::future<std::size_t> recv_length;
36 
37  recv_length =
38  socket.async_receive_from(boost::asio::buffer(vec), remote_endpoint,
39  0, boost::asio::use_future);
40 
41  if (recv_length.wait_for(std::chrono::milliseconds(100)) ==
42  std::future_status::timeout) {
43  socket.cancel();
44  } else {
45  vec.resize(recv_length.get());
46  (*callback_)(vec);
47  }
48  }
49 
50  io_service.stop();
51  io_thread.join();
52  }));
53 }
54 
56  if (!is_running_) return;
57 
58  is_running_ = false;
59  recv_thread_->join();
60 }
61 
62 unsigned short UdpSocket::Port() { return local_endpoint_.port(); }
63 
64 void UdpSocket::send_handler(const boost::system::error_code &error,
65  std::size_t len) {
66  if (error.value() != boost::system::errc::success) {
67  ROS_WARN("fail to send data. %s", error.message().c_str());
68  }
69 }
70 
71 void UdpSocket::SendData(std::vector<uint8_t> vec) {
72  send_socket_->async_send_to(
73  boost::asio::buffer(vec), target_socket_,
74  boost::bind(&UdpSocket::send_handler, this,
75  boost::asio::placeholders::error,
76  boost::asio::placeholders::bytes_transferred));
77 }
78 
79 udp::endpoint getFreePort() {
80  boost::asio::io_service service;
81  udp::socket socket(service);
82  socket.open(udp::v4());
83  socket.bind(udp::endpoint(udp::v4(), 0));
84  return socket.local_endpoint();
85 }
86 
87 Component<SocketFactory> getUdpSocketComponent() {
88  return createComponent().bind<Socket, UdpSocket>();
89 }
UdpSocket::Stop
virtual void Stop() override
Definition: udp_socket.cpp:55
UdpSocket::Port
virtual unsigned short Port() override
Definition: udp_socket.cpp:62
getUdpSocketComponent
Component< SocketFactory > getUdpSocketComponent()
Definition: udp_socket.cpp:87
UdpSocket::local_endpoint_
udp::endpoint local_endpoint_
Definition: udp_socket.h:50
UdpSocket::SendData
virtual void SendData(std::vector< uint8_t > vec) override
Definition: udp_socket.cpp:71
Socket
Definition: socket.h:8
ros::ok
ROSCPP_DECL bool ok()
UdpSocket::send_socket_
std::unique_ptr< udp::socket > send_socket_
Definition: udp_socket.h:57
udp_socket.h
UdpSocket::Start
virtual void Start() override
Definition: udp_socket.cpp:21
UdpSocket::send_handler
void send_handler(const boost::system::error_code &error, std::size_t len)
Definition: udp_socket.cpp:64
UdpSocket::recv_thread_
std::unique_ptr< std::thread > recv_thread_
Definition: udp_socket.h:44
UdpSocket::~UdpSocket
~UdpSocket()
Definition: udp_socket.cpp:15
ROS_WARN
#define ROS_WARN(...)
UdpSocket::UdpSocket
UdpSocket()=delete
Definition: udp_socket.cpp:7
getFreePort
udp::endpoint getFreePort()
Definition: udp_socket.cpp:79
UdpSocket
Definition: udp_socket.h:23
UdpSocket::is_running_
bool is_running_
Definition: udp_socket.h:40
UdpSocket::target_socket_
udp::endpoint target_socket_
Definition: udp_socket.h:61
UdpSocket::send_io_service_
std::unique_ptr< boost::asio::io_service > send_io_service_
Definition: udp_socket.h:55


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