/*! * \file gnss_synchro_monitor.h * \brief Interface of a receiver monitoring block which allows sending * a data stream with the receiver internal parameters (Gnss_Synchro objects) * to local or remote clients over UDP. * * \author Álvaro Cebrián Juan, 2018. acebrianjuan(at)gmail.com * * ----------------------------------------------------------------------------- * * GNSS-SDR is a Global Navigation Satellite System software-defined receiver. * This file is part of GNSS-SDR. * * Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors) * SPDX-License-Identifier: GPL-3.0-or-later * * ----------------------------------------------------------------------------- */ #ifndef GNSS_SDR_GNSS_SYNCHRO_MONITOR_H #define GNSS_SDR_GNSS_SYNCHRO_MONITOR_H #include "gnss_block_interface.h" #include "gnss_synchro_udp_sink.h" #include #include // for gr_vector_void_star #include #include #include /** \addtogroup Core * \{ */ /** \addtogroup Gnss_Synchro_Monitor core_monitor * Classes for the Gnss_Synchro monitor. * \{ */ class gnss_synchro_monitor; using gnss_synchro_monitor_sptr = gnss_shared_ptr; gnss_synchro_monitor_sptr gnss_synchro_make_monitor(int n_channels, int decimation_factor, int udp_port, const std::vector& udp_addresses, bool enable_protobuf); /*! * \brief This class implements a monitoring block which allows sending * a data stream with the receiver internal parameters (Gnss_Synchro objects) * to local or remote clients over UDP. */ class gnss_synchro_monitor : public gr::block { public: ~gnss_synchro_monitor() = default; //!< Default destructor void forecast(int noutput_items, gr_vector_int& ninput_items_required); int general_work(int noutput_items, gr_vector_int& ninput_items, gr_vector_const_void_star& input_items, gr_vector_void_star& output_items); private: friend gnss_synchro_monitor_sptr gnss_synchro_make_monitor(int n_channels, int decimation_factor, int udp_port, const std::vector& udp_addresses, bool enable_protobuf); gnss_synchro_monitor(int n_channels, int decimation_factor, int udp_port, const std::vector& udp_addresses, bool enable_protobuf); int d_nchannels; int d_decimation_factor; std::unique_ptr udp_sink_ptr; }; /** \} */ /** \} */ #endif // GNSS_SDR_GNSS_SYNCHRO_MONITOR_H