/*! * \file monitor_pvt_udp_sink.h * \brief Interface of a class that sends serialized Monitor_Pvt objects * over udp to one or multiple endpoints * \author Álvaro Cebrián Juan, 2019. acebrianjuan(at)gmail.com * * ------------------------------------------------------------------------- * * Copyright (C) 2010-2019 (see AUTHORS file for a list of contributors) * * GNSS-SDR is a software defined Global Navigation * Satellite Systems receiver * * This file is part of GNSS-SDR. * * SPDX-License-Identifier: GPL-3.0-or-later * * ------------------------------------------------------------------------- */ #ifndef GNSS_SDR_MONITOR_PVT_UDP_SINK_H #define GNSS_SDR_MONITOR_PVT_UDP_SINK_H #include "monitor_pvt.h" #include "serdes_monitor_pvt.h" #include #include #include #include #if BOOST_GREATER_1_65 using b_io_context = boost::asio::io_context; #else using b_io_context = boost::asio::io_service; #endif class Monitor_Pvt_Udp_Sink { public: Monitor_Pvt_Udp_Sink(const std::vector& addresses, const uint16_t& port, bool protobuf_enabled); bool write_monitor_pvt(const std::shared_ptr& monitor_pvt); private: b_io_context io_context; boost::asio::ip::udp::socket socket; boost::system::error_code error; std::vector endpoints; Serdes_Monitor_Pvt serdes; bool use_protobuf; }; #endif // GNSS_SDR_MONITOR_PVT_UDP_SINK_H