2011-10-01 18:45:20 +00:00
|
|
|
/*!
|
2014-04-15 13:03:54 +00:00
|
|
|
* \file control_thread.h
|
2011-12-27 21:21:12 +00:00
|
|
|
* \brief Interface of the receiver control plane
|
2011-10-01 18:45:20 +00:00
|
|
|
* \author Carlos Aviles, 2010. carlos.avilesr(at)googlemail.com
|
|
|
|
*
|
2011-12-27 21:21:12 +00:00
|
|
|
* GNSS Receiver Control Plane: connects the flowgraph, starts running it,
|
|
|
|
* and while it does not stop, reads the control messages generated by the blocks,
|
2014-04-15 13:03:54 +00:00
|
|
|
* processes them, and applies the corresponding actions.
|
2011-12-27 21:21:12 +00:00
|
|
|
*
|
2020-07-28 14:57:15 +00:00
|
|
|
* -----------------------------------------------------------------------------
|
2011-10-01 18:45:20 +00:00
|
|
|
*
|
2020-12-30 12:35:06 +00:00
|
|
|
* GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
|
2011-10-01 18:45:20 +00:00
|
|
|
* This file is part of GNSS-SDR.
|
|
|
|
*
|
2020-12-30 12:35:06 +00:00
|
|
|
* Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
|
2020-02-08 00:20:02 +00:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2011-10-01 18:45:20 +00:00
|
|
|
*
|
2020-07-28 14:57:15 +00:00
|
|
|
* -----------------------------------------------------------------------------
|
2011-10-01 18:45:20 +00:00
|
|
|
*/
|
|
|
|
|
2020-02-08 09:10:46 +00:00
|
|
|
#ifndef GNSS_SDR_CONTROL_THREAD_H
|
|
|
|
#define GNSS_SDR_CONTROL_THREAD_H
|
2011-10-01 18:45:20 +00:00
|
|
|
|
2019-07-21 10:55:59 +00:00
|
|
|
#include "agnss_ref_location.h" // for Agnss_Ref_Location
|
|
|
|
#include "agnss_ref_time.h" // for Agnss_Ref_Time
|
2020-07-19 07:39:32 +00:00
|
|
|
#include "channel_event.h" // for channel_event_sptr
|
|
|
|
#include "command_event.h" // for command_event_sptr
|
2019-07-21 10:55:59 +00:00
|
|
|
#include "concurrent_queue.h" // for Concurrent_Queue
|
2019-07-16 15:41:12 +00:00
|
|
|
#include "gnss_sdr_supl_client.h" // for Gnss_Sdr_Supl_Client
|
|
|
|
#include "tcp_cmd_interface.h" // for TcpCmdInterface
|
|
|
|
#include <pmt/pmt.h>
|
2020-07-19 07:39:32 +00:00
|
|
|
#include <array> // for array
|
|
|
|
#include <cstddef> // for size_t
|
|
|
|
#include <memory> // for shared_ptr
|
|
|
|
#include <string> // for string
|
|
|
|
#include <thread> // for std::thread
|
|
|
|
#include <typeinfo> // for std::type_info, typeid
|
|
|
|
#include <utility> // for pair
|
|
|
|
#include <vector> // for vector
|
2011-10-01 18:45:20 +00:00
|
|
|
|
2019-08-03 17:51:50 +00:00
|
|
|
#ifdef ENABLE_FPGA
|
|
|
|
#include <boost/thread.hpp> // for boost::thread
|
|
|
|
#endif
|
|
|
|
|
2020-11-01 12:37:19 +00:00
|
|
|
/** \addtogroup Core Core GNSS Receiver
|
|
|
|
* Core GNSS Receiver.
|
|
|
|
* \{ */
|
|
|
|
/** \addtogroup Core_Receiver
|
|
|
|
* Classes for the core GNSS receiver.
|
|
|
|
* \{ */
|
|
|
|
|
2019-08-03 17:51:50 +00:00
|
|
|
|
2019-03-05 07:59:04 +00:00
|
|
|
class ConfigurationInterface;
|
|
|
|
class GNSSFlowgraph;
|
|
|
|
class Gnss_Satellite;
|
2011-10-01 18:45:20 +00:00
|
|
|
|
|
|
|
/*!
|
2014-04-15 13:03:54 +00:00
|
|
|
* \brief This class represents the main thread of the application, so the name is ControlThread.
|
|
|
|
* This is the GNSS Receiver Control Plane: it connects the flowgraph, starts running it,
|
|
|
|
* and while it does not stop, reads the control messages generated by the blocks,
|
|
|
|
* processes them, and applies the corresponding actions.
|
2011-10-01 18:45:20 +00:00
|
|
|
*/
|
|
|
|
class ControlThread
|
|
|
|
{
|
|
|
|
public:
|
2011-12-27 21:21:12 +00:00
|
|
|
/*!
|
|
|
|
* \brief Default constructor
|
|
|
|
*/
|
2011-10-01 18:45:20 +00:00
|
|
|
ControlThread();
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief Constructor that initializes the class with parameters
|
|
|
|
*
|
|
|
|
* \param[in] configuration Pointer to a ConfigurationInterface
|
|
|
|
*/
|
2020-06-19 10:39:28 +00:00
|
|
|
explicit ControlThread(std::shared_ptr<ConfigurationInterface> configuration);
|
2011-10-01 18:45:20 +00:00
|
|
|
|
2019-07-21 10:55:59 +00:00
|
|
|
/*!
|
|
|
|
* \brief Destructor
|
|
|
|
*/
|
2015-01-12 20:05:38 +00:00
|
|
|
~ControlThread();
|
2011-10-01 18:45:20 +00:00
|
|
|
|
2011-12-28 21:36:45 +00:00
|
|
|
/*! \brief Runs the control thread
|
|
|
|
*
|
|
|
|
* This is the main loop that reads and process the control messages:
|
2013-11-17 10:48:27 +00:00
|
|
|
*
|
2011-12-28 21:36:45 +00:00
|
|
|
* - Connect the GNSS receiver flowgraph;
|
2013-11-17 10:48:27 +00:00
|
|
|
*
|
2011-12-28 21:36:45 +00:00
|
|
|
* - Start the GNSS receiver flowgraph;
|
2013-11-17 10:48:27 +00:00
|
|
|
*
|
|
|
|
* while (flowgraph_->running() && !stop_){
|
|
|
|
*
|
2011-12-28 21:36:45 +00:00
|
|
|
* - Read control messages and process them; }
|
|
|
|
*/
|
2018-10-23 14:54:06 +00:00
|
|
|
int run();
|
2011-10-01 18:45:20 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief Sets the control_queue
|
|
|
|
*
|
2019-07-17 13:56:30 +00:00
|
|
|
* \param[in] std::shared_ptr<Concurrent_Queue<pmt::pmt_t>> control_queue
|
2011-10-01 18:45:20 +00:00
|
|
|
*/
|
2020-06-19 10:39:28 +00:00
|
|
|
void set_control_queue(std::shared_ptr<Concurrent_Queue<pmt::pmt_t>> control_queue);
|
2011-10-01 18:45:20 +00:00
|
|
|
|
2019-07-21 10:55:59 +00:00
|
|
|
unsigned int processed_control_messages() const
|
2011-10-01 18:45:20 +00:00
|
|
|
{
|
|
|
|
return processed_control_messages_;
|
|
|
|
}
|
|
|
|
|
2019-07-21 10:55:59 +00:00
|
|
|
unsigned int applied_actions() const
|
2011-10-01 18:45:20 +00:00
|
|
|
{
|
|
|
|
return applied_actions_;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief Instantiates a flowgraph
|
|
|
|
*
|
2014-04-15 13:03:54 +00:00
|
|
|
* \return Returns a smart pointer to a flowgraph object
|
2011-10-01 18:45:20 +00:00
|
|
|
*/
|
2014-04-13 00:51:00 +00:00
|
|
|
std::shared_ptr<GNSSFlowgraph> flowgraph()
|
2011-10-01 18:45:20 +00:00
|
|
|
{
|
2014-04-13 00:51:00 +00:00
|
|
|
return flowgraph_;
|
2011-12-28 21:36:45 +00:00
|
|
|
}
|
2011-10-01 18:45:20 +00:00
|
|
|
|
|
|
|
private:
|
2020-06-19 10:39:28 +00:00
|
|
|
void init();
|
|
|
|
|
|
|
|
void apply_action(unsigned int what);
|
2019-07-21 10:55:59 +00:00
|
|
|
|
2019-07-19 16:49:42 +00:00
|
|
|
/*
|
|
|
|
* New receiver event dispatcher
|
|
|
|
*/
|
|
|
|
void event_dispatcher(bool &valid_event, pmt::pmt_t &msg);
|
2019-07-21 10:55:59 +00:00
|
|
|
|
2014-04-28 14:27:47 +00:00
|
|
|
// Read {ephemeris, iono, utc, ref loc, ref time} assistance from a local XML file previously recorded
|
2016-04-13 14:19:15 +00:00
|
|
|
bool read_assistance_from_XML();
|
2013-08-21 15:17:02 +00:00
|
|
|
|
|
|
|
/*
|
2014-04-15 13:03:54 +00:00
|
|
|
* Blocking function that reads the GPS assistance queue
|
2013-08-21 15:17:02 +00:00
|
|
|
*/
|
2020-12-30 20:49:29 +00:00
|
|
|
void gps_acq_assist_data_collector() const;
|
2018-03-03 01:03:39 +00:00
|
|
|
|
2018-11-05 16:53:53 +00:00
|
|
|
/*
|
|
|
|
* Compute elevations for the specified time and position for all the available satellites in ephemeris and almanac queues
|
|
|
|
* returns a vector filled with the available satellites ordered from high elevation to low elevation angle.
|
|
|
|
*/
|
2019-07-21 10:55:59 +00:00
|
|
|
std::vector<std::pair<int, Gnss_Satellite>> get_visible_sats(time_t rx_utc_time, const std::array<float, 3> &LLH);
|
2018-11-05 16:53:53 +00:00
|
|
|
|
2016-05-03 10:34:38 +00:00
|
|
|
/*
|
|
|
|
* Read initial GNSS assistance from SUPL server or local XML files
|
|
|
|
*/
|
|
|
|
void assist_GNSS();
|
2018-03-03 01:03:39 +00:00
|
|
|
|
2020-06-19 10:39:28 +00:00
|
|
|
void telecommand_listener();
|
|
|
|
void keyboard_listener();
|
|
|
|
void sysv_queue_listener();
|
2021-01-24 23:49:36 +00:00
|
|
|
void print_help_at_exit() const;
|
2020-06-19 10:39:28 +00:00
|
|
|
|
|
|
|
// default filename for assistance data
|
|
|
|
const std::string eph_default_xml_filename_ = "./gps_ephemeris.xml";
|
|
|
|
const std::string utc_default_xml_filename_ = "./gps_utc_model.xml";
|
|
|
|
const std::string iono_default_xml_filename_ = "./gps_iono.xml";
|
|
|
|
const std::string ref_time_default_xml_filename_ = "./gps_ref_time.xml";
|
|
|
|
const std::string ref_location_default_xml_filename_ = "./gps_ref_location.xml";
|
|
|
|
const std::string eph_gal_default_xml_filename_ = "./gal_ephemeris.xml";
|
|
|
|
const std::string eph_cnav_default_xml_filename_ = "./gps_cnav_ephemeris.xml";
|
|
|
|
const std::string gal_iono_default_xml_filename_ = "./gal_iono.xml";
|
|
|
|
const std::string gal_utc_default_xml_filename_ = "./gal_utc_model.xml";
|
|
|
|
const std::string cnav_utc_default_xml_filename_ = "./gps_cnav_utc_model.xml";
|
|
|
|
const std::string eph_glo_gnav_default_xml_filename_ = "./glo_gnav_ephemeris.xml";
|
|
|
|
const std::string glo_utc_default_xml_filename_ = "./glo_utc_model.xml";
|
|
|
|
const std::string gal_almanac_default_xml_filename_ = "./gal_almanac.xml";
|
|
|
|
const std::string gps_almanac_default_xml_filename_ = "./gps_almanac.xml";
|
2018-03-03 01:03:39 +00:00
|
|
|
|
2020-07-19 07:39:32 +00:00
|
|
|
const size_t channel_event_type_hash_code_ = typeid(channel_event_sptr).hash_code();
|
|
|
|
const size_t command_event_type_hash_code_ = typeid(command_event_sptr).hash_code();
|
|
|
|
|
2020-06-27 07:52:59 +00:00
|
|
|
std::shared_ptr<ConfigurationInterface> configuration_;
|
|
|
|
std::shared_ptr<Concurrent_Queue<pmt::pmt_t>> control_queue_;
|
|
|
|
std::shared_ptr<GNSSFlowgraph> flowgraph_;
|
|
|
|
|
|
|
|
std::thread cmd_interface_thread_;
|
|
|
|
std::thread keyboard_thread_;
|
|
|
|
std::thread sysv_queue_thread_;
|
|
|
|
std::thread gps_acq_assist_data_collector_thread_;
|
|
|
|
|
|
|
|
#ifdef ENABLE_FPGA
|
|
|
|
boost::thread fpga_helper_thread_;
|
|
|
|
#endif
|
|
|
|
|
2020-06-19 10:39:28 +00:00
|
|
|
TcpCmdInterface cmd_interface_;
|
2014-04-28 14:27:47 +00:00
|
|
|
|
2020-06-19 10:39:28 +00:00
|
|
|
// SUPL assistance classes
|
|
|
|
Gnss_Sdr_Supl_Client supl_client_acquisition_;
|
|
|
|
Gnss_Sdr_Supl_Client supl_client_ephemeris_;
|
|
|
|
int supl_mcc_; // Current network MCC (Mobile country code), 3 digits.
|
|
|
|
int supl_mns_; // Current network MNC (Mobile Network code), 2 or 3 digits.
|
|
|
|
int supl_lac_; // Current network LAC (Location area code),16 bits, 1-65520 are valid values.
|
|
|
|
int supl_ci_; // Cell Identity (16 bits, 0-65535 are valid values).
|
2018-11-20 08:28:47 +00:00
|
|
|
|
|
|
|
Agnss_Ref_Location agnss_ref_location_;
|
|
|
|
Agnss_Ref_Time agnss_ref_time_;
|
2019-08-03 17:51:50 +00:00
|
|
|
|
2020-06-23 07:47:58 +00:00
|
|
|
unsigned int processed_control_messages_;
|
|
|
|
unsigned int applied_actions_;
|
|
|
|
int msqid_;
|
|
|
|
|
2021-01-24 23:49:36 +00:00
|
|
|
bool well_formatted_configuration_;
|
|
|
|
bool conf_file_has_section_;
|
|
|
|
bool conf_file_has_mandatory_globals_;
|
|
|
|
bool conf_has_signal_sources_;
|
|
|
|
bool conf_has_observables_;
|
|
|
|
bool conf_has_pvt_;
|
2020-06-23 07:47:58 +00:00
|
|
|
bool receiver_on_standby_;
|
|
|
|
bool stop_;
|
|
|
|
bool restart_;
|
2020-06-27 07:52:59 +00:00
|
|
|
bool telecommand_enabled_;
|
2020-06-24 09:45:01 +00:00
|
|
|
bool pre_2009_file_; // to override the system time to postprocess old gnss records and avoid wrong week rollover
|
2011-10-01 18:45:20 +00:00
|
|
|
};
|
|
|
|
|
2020-11-01 12:37:19 +00:00
|
|
|
|
|
|
|
/** \} */
|
|
|
|
/** \} */
|
2020-02-08 09:10:46 +00:00
|
|
|
#endif // GNSS_SDR_CONTROL_THREAD_H
|