0.3.0
Loading...
Searching...
No Matches
udp_port.hpp
Go to the documentation of this file.
1/****************************************************************************
2 *
3 * Copyright (c) 2018 MAVlink Development Team. All rights reserved.
4 * Author: Hannes Diethelm, <hannes.diethelm@gmail.com>
5 * Trent Lukaczyk, <aerialhedgehog@gmail.com>
6 * Jaycee Lock, <jaycee.lock@gmail.com>
7 * Lorenz Meier, <lm@inf.ethz.ch>
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 *
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
18 * distribution.
19 * 3. Neither the name PX4 nor the names of its contributors may be
20 * used to endorse or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
26 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
27 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
29 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
30 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
31 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
33 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34 * POSSIBILITY OF SUCH DAMAGE.
35 *
36 ****************************************************************************/
37
52#pragma once
53
54#if __linux__ || __APPLE__
55// ------------------------------------------------------------------------------
56// Includes
57// ------------------------------------------------------------------------------
58
59 #include <array>
60 #include <cstdlib>
61 #include <pthread.h> // This uses POSIX Threads
62 #include <sys/socket.h>
63 #include <sys/types.h>
64 #include <netinet/in.h>
65 #include <unistd.h>
66 #include <fcntl.h>
67 #include <sys/time.h>
68 #include <arpa/inet.h>
69
70 #include <mavlink/common/mavlink.h>
71
72 #include "generic_port.hpp"
73
74// ------------------------------------------------------------------------------
75// Defines
76// ------------------------------------------------------------------------------
77
78// ------------------------------------------------------------------------------
79// Prototypes
80// ------------------------------------------------------------------------------
81
82// ----------------------------------------------------------------------------------
83// UDP Port Manager Class
84// ----------------------------------------------------------------------------------
85/*
86 * UDP Port Class
87 *
88 * This object handles the opening and closing of the offboard computer's
89 * UDP port over which we'll communicate. It also has methods to write
90 * a byte stream buffer. MAVlink is not used in this object yet, it's just
91 * a serialization interface. To help with read and write pthreading, it
92 * gaurds any port operation with a pthread mutex.
93 */
94
96class UDP_Port : public Generic_Port
97{
98 public:
100 UDP_Port();
102 UDP_Port(const char* target_ip_, int udp_port_);
104 ~UDP_Port() override;
106 UDP_Port(const UDP_Port&) = delete;
108 UDP_Port(UDP_Port&&) = delete;
110 UDP_Port& operator=(const UDP_Port&) = delete;
112 UDP_Port& operator=(UDP_Port&&) = delete;
113
116 int read_message(mavlink_message_t& message) override;
117
120 int write_message(const mavlink_message_t& message) override;
121
123 bool is_running() override
124 {
125 return is_open;
126 }
127
129 void start() override;
130
132 void stop() override;
133
134 private:
135 mavlink_status_t lastStatus{};
136 pthread_mutex_t lock{};
137
139 void initialize_defaults();
140
141 const static int BUFF_LEN = 2041;
142 std::array<uint8_t, BUFF_LEN> buff{};
143 int buff_ptr{};
144 int buff_len{};
145 bool debug = false;
146 const char* target_ip = "127.0.0.1";
147 int rx_port{ 14550 };
148 int tx_port{ -1 };
149 int sock{ -1 };
150 bool is_open = false;
151
154 int _read_port(uint8_t& cp);
155
159 int _write_port(char* buf, unsigned len);
160};
161
162#endif
void start()
Starts the Thread.
void stop()
Stops the Thread.
Generic interface definition.