0.3.0
Loading...
Searching...
No Matches
udpSend.hpp
Go to the documentation of this file.
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
13
14#pragma once
15
16#ifdef _WIN32
17 // Set the proper SDK version before including boost/Asio
18 #include <SDKDDKVer.h>
19 // Note boost/ASIO includes Windows.h.
20 #include <boost/asio.hpp>
21#else // _WIN32
22 #include <boost/asio.hpp>
23#endif //_WIN32
24
26
28#include <string>
29
30namespace NAV
31{
33class UdpSend : public Node
34{
35 public:
39 ~UdpSend() override;
41 UdpSend(const UdpSend&) = delete;
43 UdpSend(UdpSend&&) = delete;
45 UdpSend& operator=(const UdpSend&) = delete;
48
50 [[nodiscard]] static std::string typeStatic();
51
53 [[nodiscard]] std::string type() const override;
54
56 [[nodiscard]] static std::string category();
57
60 void guiConfig() override;
61
63 [[nodiscard]] json save() const override;
64
67 void restore(const json& j) override;
68
70 bool resetNode() override;
71
72 private:
73 constexpr static size_t INPUT_PORT_INDEX_NODE_DATA = 0;
74
76 bool initialize() override;
77
79 void deinitialize() override;
80
84 void receivePosVelAtt(InputPin::NodeDataQueue& queue, size_t pinIdx);
85
87 std::array<int, 4> _ip{};
88
90 int _port = 4567;
91
93 static constexpr std::array<int, 2> IP_LIMITS = { 0, 255 };
95 static constexpr std::array<int, 2> PORT_LIMITS = { 0, 65535 };
96
98 boost::asio::io_context _io_context;
100 boost::asio::ip::udp::socket _socket;
102 boost::asio::ip::udp::resolver _resolver;
104 boost::asio::ip::udp::resolver::results_type _endpoints;
105};
106} // namespace NAV
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Node Class.
Position, Velocity and Attitude Storage Class.
Abstract parent class for all nodes.
Definition Node.hpp:86
UDP Client.
Definition udpSend.hpp:34
boost::asio::ip::udp::resolver::results_type _endpoints
Boost udp endpoint.
Definition udpSend.hpp:104
UdpSend & operator=(UdpSend &&)=delete
Move assignment operator.
static constexpr size_t INPUT_PORT_INDEX_NODE_DATA
Object (NodeData)
Definition udpSend.hpp:73
bool initialize() override
Initialize the node.
UdpSend()
Default constructor.
static constexpr std::array< int, 2 > IP_LIMITS
Range an IPv4 address can be in [0, 2^8-1].
Definition udpSend.hpp:93
boost::asio::ip::udp::resolver _resolver
Boost udp resolver.
Definition udpSend.hpp:102
bool resetNode() override
Resets the node. Moves the read cursor to the start.
void deinitialize() override
Deinitialize the node.
std::string type() const override
String representation of the Class Type.
boost::asio::io_context _io_context
Asynchronous receive fct.
Definition udpSend.hpp:98
void restore(const json &j) override
Restores the node from a json object.
void guiConfig() override
ImGui config window which is shown on double click.
UdpSend(UdpSend &&)=delete
Move constructor.
static constexpr std::array< int, 2 > PORT_LIMITS
Range a port can be in [0, 2^16-1].
Definition udpSend.hpp:95
UdpSend(const UdpSend &)=delete
Copy constructor.
static std::string category()
String representation of the Class Category.
UdpSend & operator=(const UdpSend &)=delete
Copy assignment operator.
void receivePosVelAtt(InputPin::NodeDataQueue &queue, size_t pinIdx)
Callback when receiving data on a port.
int _port
UDP port number.
Definition udpSend.hpp:90
boost::asio::ip::udp::socket _socket
Boost udp socket.
Definition udpSend.hpp:100
std::array< int, 4 > _ip
IPv4 address.
Definition udpSend.hpp:87
json save() const override
Saves the node into a json object.
~UdpSend() override
Destructor.
static std::string typeStatic()
String representation of the Class Type.