2011-10-01 18:45:20 +00:00
|
|
|
/*!
|
|
|
|
* \file control_thread.cc
|
2011-12-27 21:21:12 +00:00
|
|
|
* \brief This class implements 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,
|
|
|
|
* process them, and apply the corresponding actions.
|
2011-10-01 18:45:20 +00:00
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*
|
2014-01-12 20:07:38 +00:00
|
|
|
* Copyright (C) 2010-2014 (see AUTHORS file for a list of contributors)
|
2011-10-01 18:45:20 +00:00
|
|
|
*
|
|
|
|
* GNSS-SDR is a software defined Global Navigation
|
|
|
|
* Satellite Systems receiver
|
|
|
|
*
|
|
|
|
* This file is part of GNSS-SDR.
|
|
|
|
*
|
|
|
|
* GNSS-SDR is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* at your option) any later version.
|
|
|
|
*
|
|
|
|
* GNSS-SDR is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with GNSS-SDR. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "control_thread.h"
|
2014-01-12 20:07:38 +00:00
|
|
|
#include <unistd.h>
|
2014-03-16 19:58:29 +00:00
|
|
|
#include <iostream>
|
2014-01-12 20:07:38 +00:00
|
|
|
#include <map>
|
2014-04-03 21:59:14 +00:00
|
|
|
#include <memory>
|
2014-01-12 20:07:38 +00:00
|
|
|
#include <string>
|
2013-03-15 18:05:37 +00:00
|
|
|
#include <boost/lexical_cast.hpp>
|
2014-01-12 20:07:38 +00:00
|
|
|
#include <boost/thread/thread.hpp>
|
|
|
|
#include <gnuradio/message.h>
|
|
|
|
#include <gflags/gflags.h>
|
|
|
|
#include <glog/logging.h>
|
2013-03-15 18:05:37 +00:00
|
|
|
#include "gps_ephemeris.h"
|
|
|
|
#include "gps_iono.h"
|
|
|
|
#include "gps_utc_model.h"
|
|
|
|
#include "gps_almanac.h"
|
2013-08-27 14:32:44 +00:00
|
|
|
#include "galileo_ephemeris.h"
|
|
|
|
#include "galileo_iono.h"
|
|
|
|
#include "galileo_utc_model.h"
|
|
|
|
#include "galileo_almanac.h"
|
2013-03-15 18:05:37 +00:00
|
|
|
#include "concurrent_queue.h"
|
|
|
|
#include "concurrent_map.h"
|
2011-10-01 18:45:20 +00:00
|
|
|
#include "gnss_flowgraph.h"
|
|
|
|
#include "file_configuration.h"
|
|
|
|
#include "control_message_factory.h"
|
2014-01-12 20:07:38 +00:00
|
|
|
|
|
|
|
|
2011-10-01 18:45:20 +00:00
|
|
|
|
2013-03-15 18:05:37 +00:00
|
|
|
extern concurrent_map<Gps_Ephemeris> global_gps_ephemeris_map;
|
|
|
|
extern concurrent_map<Gps_Iono> global_gps_iono_map;
|
|
|
|
extern concurrent_map<Gps_Utc_Model> global_gps_utc_model_map;
|
2013-03-20 18:19:26 +00:00
|
|
|
extern concurrent_map<Gps_Almanac> global_gps_almanac_map;
|
|
|
|
extern concurrent_map<Gps_Acq_Assist> global_gps_acq_assist_map;
|
2013-03-15 18:05:37 +00:00
|
|
|
|
|
|
|
extern concurrent_queue<Gps_Ephemeris> global_gps_ephemeris_queue;
|
|
|
|
extern concurrent_queue<Gps_Iono> global_gps_iono_queue;
|
|
|
|
extern concurrent_queue<Gps_Utc_Model> global_gps_utc_model_queue;
|
|
|
|
extern concurrent_queue<Gps_Almanac> global_gps_almanac_queue;
|
2013-03-20 18:19:26 +00:00
|
|
|
extern concurrent_queue<Gps_Acq_Assist> global_gps_acq_assist_queue;
|
2013-03-15 18:05:37 +00:00
|
|
|
|
2013-08-27 14:32:44 +00:00
|
|
|
extern concurrent_map<Galileo_Ephemeris> global_galileo_ephemeris_map;
|
|
|
|
extern concurrent_map<Galileo_Iono> global_galileo_iono_map;
|
|
|
|
extern concurrent_map<Galileo_Utc_Model> global_galileo_utc_model_map;
|
|
|
|
extern concurrent_map<Galileo_Almanac> global_galileo_almanac_map;
|
|
|
|
//extern concurrent_map<Galileo_Acq_Assist> global_gps_acq_assist_map;
|
|
|
|
|
|
|
|
extern concurrent_queue<Galileo_Ephemeris> global_galileo_ephemeris_queue;
|
|
|
|
extern concurrent_queue<Galileo_Iono> global_galileo_iono_queue;
|
|
|
|
extern concurrent_queue<Galileo_Utc_Model> global_galileo_utc_model_queue;
|
|
|
|
extern concurrent_queue<Galileo_Almanac> global_galileo_almanac_queue;
|
|
|
|
//extern concurrent_queue<Galileo_Acq_Assist> global_gps_acq_assist_queue;
|
|
|
|
|
|
|
|
|
2011-10-01 18:45:20 +00:00
|
|
|
using google::LogMessage;
|
|
|
|
|
- Major changes:
- The executable file and the default configuration file is now changed from "./install/mercurio" and "./conf/mercurio.conf" to "./install/gnss-sdr" and "./conf/gnss-sdr.conf", respectively.
- Configuration file structure changed to define in a single entry the internal sampling frequency (after the signal conditioner). NOTICE that this change affects the all the adapters (acquisition, tracking, telemetry_decoder, observables, and PVT). All the adapters are now modified to work with this feature.
- Moved several in-line GPS L1 CA parameters (a.k.a magic numbers..) to ./src/core/system_parameters/GPS_L1_CA.h definition file.
- Tracking blocks now uses DOUBLE values in their outputs.
- Observables and PVT now are separated. PVT and their associated libraries are moved to ./src/algorithms/PVT
- Temporarily disabled the RINEX output (I am working on that!)
- GNSS-SDR screen output now gives extended debug information of the receiver status and events. In the future, this output will be redirected to a log file.
- Bug fixes:
- FILE_SIGNAL_SOURCE now works correctly when the user configures GNSS-SDR to process the entire file.
- GPS_L1_CA_DLL_PLL now computes correctly the PRN start values.
- GPS_L1_CA_DLL_FLL_PLL now computes correctly the PRN start values.
- Several modifications in GPS_L1_CA_Telemetry_Decoder, GPS_L1_CA_Observables, and GPS_L1_CA_PVT modules to fix the GPS position computation.
- New features
- Tracking blocks perform a signal integrity check against NaN outliers before the correlation process.
- Tracking and PVT binary dump options are now documented and we provide MATLAB libraries and sample files to read it. Available in ./utils/matlab" and "./utils/matlab/libs"
- Observables output rate can be configured. This option enables the GPS L1 CA PVT computation at a maximum rate of 1ms.
- GPS_L1_CA_PVT now can perform a moving average Latitude, Longitude, and Altitude output for each of the Observables output. It is configurable using the configuration file.
- Added Google Earth compatible Keyhole Markup Language (KML) output writer class (./src/algorithms/PVT/libs/kml_printer.h and ./src/algorithms/PVT/libs/kml_printer.cc ). You can see the receiver position directly using Google Earth.
- We provide a master configuration file which includes an in-line documentation with all the new (and old) options. It can be found in ./conf/master.conf
git-svn-id: https://svn.code.sf.net/p/gnss-sdr/code/trunk@84 64b25241-fba3-4117-9849-534c7e92360d
2011-12-07 17:59:34 +00:00
|
|
|
DEFINE_string(config_file, "../conf/gnss-sdr.conf",
|
2012-07-03 12:52:12 +00:00
|
|
|
"Path to the file containing the configuration parameters");
|
2011-10-01 18:45:20 +00:00
|
|
|
|
|
|
|
ControlThread::ControlThread()
|
|
|
|
{
|
2014-04-03 21:59:14 +00:00
|
|
|
configuration_ = std::make_shared<FileConfiguration>(FLAGS_config_file);
|
2011-10-01 18:45:20 +00:00
|
|
|
init();
|
|
|
|
}
|
|
|
|
|
2012-11-01 16:39:06 +00:00
|
|
|
|
2014-04-03 21:59:14 +00:00
|
|
|
ControlThread::ControlThread(std::shared_ptr<ConfigurationInterface> configuration)
|
2011-10-01 18:45:20 +00:00
|
|
|
{
|
|
|
|
configuration_ = configuration;
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
|
2012-11-01 16:39:06 +00:00
|
|
|
|
|
|
|
|
2011-10-01 18:45:20 +00:00
|
|
|
ControlThread::~ControlThread()
|
|
|
|
{
|
2013-11-17 10:48:27 +00:00
|
|
|
// save navigation data to files
|
|
|
|
gps_ephemeris_data_write_to_XML();
|
|
|
|
gps_iono_data_write_to_XML();
|
|
|
|
gps_utc_model_data_write_to_XML();
|
2011-10-01 18:45:20 +00:00
|
|
|
}
|
|
|
|
|
2012-11-01 16:39:06 +00:00
|
|
|
|
|
|
|
|
2011-12-28 03:05:37 +00:00
|
|
|
/*
|
|
|
|
* Runs the control thread that manages the receiver control plane
|
|
|
|
*
|
|
|
|
* This is the main loop that reads and process the control messages
|
|
|
|
* 1- Connect the GNSS receiver flowgraph
|
|
|
|
* 2- Start the GNSS receiver flowgraph
|
|
|
|
* while (flowgraph_->running() && !stop)_{
|
|
|
|
* 3- Read control messages and process them }
|
|
|
|
*/
|
2011-10-01 18:45:20 +00:00
|
|
|
void ControlThread::run()
|
|
|
|
{
|
2012-11-01 16:39:06 +00:00
|
|
|
// Connect the flowgraph
|
2011-10-01 18:45:20 +00:00
|
|
|
flowgraph_->connect();
|
|
|
|
if (flowgraph_->connected())
|
2011-12-28 21:36:45 +00:00
|
|
|
{
|
2014-03-16 19:58:29 +00:00
|
|
|
LOG(INFO) << "Flowgraph connected";
|
2011-12-28 21:36:45 +00:00
|
|
|
}
|
2011-10-01 18:45:20 +00:00
|
|
|
else
|
2011-12-28 21:36:45 +00:00
|
|
|
{
|
2014-03-16 19:58:29 +00:00
|
|
|
LOG(ERROR) << "Unable to connect flowgraph";
|
2011-12-28 21:36:45 +00:00
|
|
|
return;
|
|
|
|
}
|
2012-11-01 16:39:06 +00:00
|
|
|
// Start the flowgraph
|
2011-10-01 18:45:20 +00:00
|
|
|
flowgraph_->start();
|
|
|
|
if (flowgraph_->running())
|
2011-12-28 21:36:45 +00:00
|
|
|
{
|
2014-03-16 19:58:29 +00:00
|
|
|
LOG(INFO) << "Flowgraph started";
|
2011-12-28 21:36:45 +00:00
|
|
|
}
|
2011-10-01 18:45:20 +00:00
|
|
|
else
|
2011-12-28 21:36:45 +00:00
|
|
|
{
|
2014-03-16 19:58:29 +00:00
|
|
|
LOG(ERROR) << "Unable to start flowgraph";
|
2011-12-28 21:36:45 +00:00
|
|
|
return;
|
|
|
|
}
|
2012-03-16 12:04:36 +00:00
|
|
|
// start the keyboard_listener thread
|
|
|
|
keyboard_thread_ = boost::thread(&ControlThread::keyboard_listener, this);
|
|
|
|
|
2013-03-15 18:05:37 +00:00
|
|
|
//start the GNSS SV data collector thread
|
2013-11-17 10:48:27 +00:00
|
|
|
gps_ephemeris_data_collector_thread_ = boost::thread(&ControlThread::gps_ephemeris_data_collector, this);
|
|
|
|
gps_iono_data_collector_thread_ = boost::thread(&ControlThread::gps_iono_data_collector, this);
|
|
|
|
gps_utc_model_data_collector_thread_ = boost::thread(&ControlThread::gps_utc_model_data_collector, this);
|
|
|
|
gps_acq_assist_data_collector_thread_= boost::thread(&ControlThread::gps_acq_assist_data_collector, this);
|
|
|
|
|
|
|
|
galileo_ephemeris_data_collector_thread_ = boost::thread(&ControlThread::galileo_ephemeris_data_collector, this);
|
|
|
|
galileo_iono_data_collector_thread_ = boost::thread(&ControlThread::galileo_iono_data_collector, this);
|
|
|
|
galileo_utc_model_data_collector_thread_ = boost::thread(&ControlThread::galileo_utc_model_data_collector, this);
|
2011-10-01 18:45:20 +00:00
|
|
|
// Main loop to read and process the control messages
|
|
|
|
while (flowgraph_->running() && !stop_)
|
2011-12-28 21:36:45 +00:00
|
|
|
{
|
|
|
|
//TODO re-enable the blocking read messages functions and fork the process
|
|
|
|
read_control_messages();
|
|
|
|
if (control_messages_ != 0) process_control_messages();
|
|
|
|
}
|
2013-11-17 10:48:27 +00:00
|
|
|
std::cout << "Stopping GNSS-SDR, please wait!" << std::endl;
|
2013-03-20 18:19:26 +00:00
|
|
|
flowgraph_->stop();
|
2013-08-27 14:32:44 +00:00
|
|
|
|
|
|
|
// Join GPS threads
|
2013-03-15 18:05:37 +00:00
|
|
|
gps_ephemeris_data_collector_thread_.timed_join(boost::posix_time::seconds(1));
|
|
|
|
gps_iono_data_collector_thread_.timed_join(boost::posix_time::seconds(1));
|
|
|
|
gps_utc_model_data_collector_thread_.timed_join(boost::posix_time::seconds(1));
|
2013-03-20 18:19:26 +00:00
|
|
|
gps_acq_assist_data_collector_thread_.timed_join(boost::posix_time::seconds(1));
|
2013-08-27 14:32:44 +00:00
|
|
|
|
|
|
|
//Join Galileo threads
|
|
|
|
galileo_ephemeris_data_collector_thread_.timed_join(boost::posix_time::seconds(1));
|
2013-09-02 13:58:35 +00:00
|
|
|
galileo_iono_data_collector_thread_.timed_join(boost::posix_time::seconds(1));
|
|
|
|
galileo_utc_model_data_collector_thread_.timed_join(boost::posix_time::seconds(1));
|
2013-08-27 14:32:44 +00:00
|
|
|
//Join keyboard threads
|
2012-11-02 11:14:23 +00:00
|
|
|
keyboard_thread_.timed_join(boost::posix_time::seconds(1));
|
2013-03-20 18:19:26 +00:00
|
|
|
|
2014-03-16 19:58:29 +00:00
|
|
|
LOG(INFO) << "Flowgraph stopped";
|
2011-10-01 18:45:20 +00:00
|
|
|
}
|
|
|
|
|
2012-11-01 16:39:06 +00:00
|
|
|
|
|
|
|
|
2013-07-04 13:47:40 +00:00
|
|
|
void ControlThread::set_control_queue(boost::shared_ptr<gr::msg_queue> control_queue)
|
2011-10-01 18:45:20 +00:00
|
|
|
{
|
|
|
|
if (flowgraph_->running())
|
2011-12-28 21:36:45 +00:00
|
|
|
{
|
2014-03-16 19:58:29 +00:00
|
|
|
LOG(WARNING) << "Unable to set control queue while flowgraph is running";
|
2011-12-28 21:36:45 +00:00
|
|
|
return;
|
|
|
|
}
|
2011-10-01 18:45:20 +00:00
|
|
|
control_queue_ = control_queue;
|
|
|
|
}
|
|
|
|
|
2011-12-27 21:21:12 +00:00
|
|
|
|
2012-11-01 16:39:06 +00:00
|
|
|
|
2013-03-18 18:27:44 +00:00
|
|
|
bool ControlThread::read_assistance_from_XML()
|
|
|
|
{
|
2013-11-17 10:48:27 +00:00
|
|
|
std::string eph_xml_filename = "gps_ephemeris.xml";
|
|
|
|
std::cout << "SUPL: Try read GPS ephemeris from XML file " << eph_xml_filename << std::endl;
|
|
|
|
if (supl_client_ephemeris_.load_ephemeris_xml(eph_xml_filename) == true)
|
|
|
|
{
|
|
|
|
std::map<int,Gps_Ephemeris>::iterator gps_eph_iter;
|
|
|
|
for(gps_eph_iter = supl_client_ephemeris_.gps_ephemeris_map.begin();
|
|
|
|
gps_eph_iter != supl_client_ephemeris_.gps_ephemeris_map.end();
|
|
|
|
gps_eph_iter++)
|
|
|
|
{
|
|
|
|
std::cout << "SUPL: Read XML Ephemeris for GPS SV " << gps_eph_iter->first << std::endl;
|
|
|
|
global_gps_ephemeris_queue.push(gps_eph_iter->second);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cout << "ERROR: SUPL client error reading XML" << std::endl;
|
|
|
|
std::cout << "Disabling SUPL assistance.." << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
2013-03-18 18:27:44 +00:00
|
|
|
}
|
2013-11-17 10:48:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-01 18:45:20 +00:00
|
|
|
void ControlThread::init()
|
|
|
|
{
|
2013-11-17 10:48:27 +00:00
|
|
|
// Instantiates a control queue, a GNSS flowgraph, and a control message factory
|
|
|
|
control_queue_ = gr::msg_queue::make(0);
|
2014-04-03 21:59:14 +00:00
|
|
|
flowgraph_ = std::make_shared<GNSSFlowgraph>(configuration_, control_queue_);
|
|
|
|
control_message_factory_ = std::make_shared<ControlMessageFactory>();
|
2013-11-17 10:48:27 +00:00
|
|
|
stop_ = false;
|
|
|
|
processed_control_messages_ = 0;
|
|
|
|
applied_actions_ = 0;
|
|
|
|
|
|
|
|
//######### GNSS Assistance #################################
|
|
|
|
// GNSS Assistance configuration
|
|
|
|
bool enable_gps_supl_assistance = configuration_->property("GNSS-SDR.SUPL_gps_enabled", false);
|
|
|
|
if (enable_gps_supl_assistance == true)
|
|
|
|
//SUPL SERVER TEST. Not operational yet!
|
|
|
|
{
|
|
|
|
std::cout << "SUPL RRLP GPS assistance enabled!" << std::endl;
|
|
|
|
std::string default_acq_server = "supl.nokia.com";
|
|
|
|
std::string default_eph_server = "supl.google.com";
|
|
|
|
supl_client_ephemeris_.server_name = configuration_->property("GNSS-SDR.SUPL_gps_ephemeris_server", default_acq_server);
|
|
|
|
supl_client_acquisition_.server_name = configuration_->property("GNSS-SDR.SUPL_gps_acquisition_server", default_eph_server);
|
|
|
|
supl_client_ephemeris_.server_port = configuration_->property("GNSS-SDR.SUPL_gps_ephemeris_port", 7275);
|
|
|
|
supl_client_acquisition_.server_port = configuration_->property("GNSS-SDR.SUPL_gps_acquisition_port", 7275);
|
|
|
|
supl_mcc = configuration_->property("GNSS-SDR.SUPL_MCC", 244);
|
|
|
|
supl_mns = configuration_->property("GNSS-SDR.SUPL_MNS", 5);
|
|
|
|
|
|
|
|
std::string default_lac = "0x59e2";
|
|
|
|
std::string default_ci = "0x31b0";
|
|
|
|
try
|
|
|
|
{
|
|
|
|
supl_lac = boost::lexical_cast<int>(configuration_->property("GNSS-SDR.SUPL_LAC", default_lac));
|
|
|
|
}
|
|
|
|
catch(boost::bad_lexical_cast &)
|
|
|
|
{
|
|
|
|
supl_lac = 0x59e2;
|
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
supl_ci = boost::lexical_cast<int>(configuration_->property("GNSS-SDR.SUPL_CI", default_ci));
|
|
|
|
}
|
|
|
|
catch(boost::bad_lexical_cast &)
|
|
|
|
{
|
|
|
|
supl_ci = 0x31b0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SUPL_read_gps_assistance_xml = configuration_->property("GNSS-SDR.SUPL_read_gps_assistance_xml", false);
|
|
|
|
if (SUPL_read_gps_assistance_xml == true)
|
|
|
|
{
|
|
|
|
// read assistance from file
|
|
|
|
read_assistance_from_XML();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Request ephemeris from SUPL server
|
|
|
|
int error;
|
|
|
|
supl_client_ephemeris_.request = 1;
|
|
|
|
std::cout << "SUPL: Try to read GPS ephemeris from SUPL server.." << std::endl;
|
|
|
|
error = supl_client_ephemeris_.get_assistance(supl_mcc, supl_mns, supl_lac, supl_ci);
|
|
|
|
if (error == 0)
|
|
|
|
{
|
|
|
|
std::map<int,Gps_Ephemeris>::iterator gps_eph_iter;
|
|
|
|
for(gps_eph_iter = supl_client_ephemeris_.gps_ephemeris_map.begin();
|
|
|
|
gps_eph_iter != supl_client_ephemeris_.gps_ephemeris_map.end();
|
|
|
|
gps_eph_iter++)
|
|
|
|
{
|
|
|
|
std::cout << "SUPL: Received Ephemeris for GPS SV " << gps_eph_iter->first << std::endl;
|
|
|
|
global_gps_ephemeris_queue.push(gps_eph_iter->second);
|
|
|
|
}
|
|
|
|
//Save ephemeris to XML file
|
|
|
|
std::string eph_xml_filename = "gps_ephemeris.xml";
|
|
|
|
if (supl_client_ephemeris_.save_ephemeris_xml(eph_xml_filename) == true)
|
|
|
|
{
|
|
|
|
std::cout << "SUPL: XML Ephemeris file created" << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cout << "ERROR: SUPL client for Ephemeris returned " << error << std::endl;
|
|
|
|
std::cout << "Please check internet connection and SUPL server configuration" << error << std::endl;
|
|
|
|
std::cout << "Trying to read ephemeris from XML file" << std::endl;
|
|
|
|
if (read_assistance_from_XML() == false)
|
|
|
|
{
|
|
|
|
std::cout << "ERROR: Could not read Ephemeris file: Disabling SUPL assistance.." << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Request almanac , IONO and UTC Model
|
|
|
|
supl_client_ephemeris_.request = 0;
|
|
|
|
std::cout << "SUPL: Try read Almanac, Iono, Utc Model, Ref Time and Ref Location from SUPL server..." << std::endl;
|
|
|
|
error = supl_client_ephemeris_.get_assistance(supl_mcc, supl_mns, supl_lac, supl_ci);
|
|
|
|
if (error == 0)
|
|
|
|
{
|
|
|
|
std::map<int,Gps_Almanac>::iterator gps_alm_iter;
|
|
|
|
for(gps_alm_iter = supl_client_ephemeris_.gps_almanac_map.begin();
|
|
|
|
gps_alm_iter != supl_client_ephemeris_.gps_almanac_map.end();
|
|
|
|
gps_alm_iter++)
|
|
|
|
{
|
|
|
|
std::cout << "SUPL: Received Almanac for GPS SV " << gps_alm_iter->first << std::endl;
|
|
|
|
global_gps_almanac_queue.push(gps_alm_iter->second);
|
|
|
|
}
|
|
|
|
if (supl_client_ephemeris_.gps_iono.valid == true)
|
|
|
|
{
|
|
|
|
std::cout << "SUPL: Received GPS Iono" << std::endl;
|
|
|
|
global_gps_iono_queue.push(supl_client_ephemeris_.gps_iono);
|
|
|
|
}
|
|
|
|
if (supl_client_ephemeris_.gps_utc.valid == true)
|
|
|
|
{
|
|
|
|
std::cout << "SUPL: Received GPS UTC Model" << std::endl;
|
|
|
|
global_gps_utc_model_queue.push(supl_client_ephemeris_.gps_utc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cout << "ERROR: SUPL client for Almanac returned " << error << std::endl;
|
|
|
|
std::cout << "Please check internet connection and SUPL server configuration" << error << std::endl;
|
|
|
|
std::cout << "Disabling SUPL assistance.." << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Request acquisition assistance
|
|
|
|
supl_client_acquisition_.request = 2;
|
|
|
|
std::cout << "SUPL: Try read Acquisition assistance from SUPL server.." << std::endl;
|
|
|
|
error = supl_client_acquisition_.get_assistance(supl_mcc, supl_mns, supl_lac, supl_ci);
|
|
|
|
if (error == 0)
|
|
|
|
{
|
|
|
|
std::map<int, Gps_Acq_Assist>::iterator gps_acq_iter;
|
|
|
|
for(gps_acq_iter = supl_client_acquisition_.gps_acq_map.begin();
|
|
|
|
gps_acq_iter != supl_client_acquisition_.gps_acq_map.end();
|
|
|
|
gps_acq_iter++)
|
|
|
|
{
|
|
|
|
std::cout << "SUPL: Received Acquisition assistance for GPS SV " << gps_acq_iter->first << std::endl;
|
|
|
|
global_gps_acq_assist_queue.push(gps_acq_iter->second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cout << "ERROR: SUPL client for Acquisition assistance returned " << error << std::endl;
|
|
|
|
std::cout << "Please check internet connection and SUPL server configuration" << error << std::endl;
|
|
|
|
std::cout << "Disabling SUPL assistance.." << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-10-01 18:45:20 +00:00
|
|
|
}
|
|
|
|
|
2013-11-17 10:48:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-01 18:45:20 +00:00
|
|
|
void ControlThread::read_control_messages()
|
|
|
|
{
|
|
|
|
DLOG(INFO) << "Reading control messages from queue";
|
2013-07-04 13:47:40 +00:00
|
|
|
boost::shared_ptr<gr::message> queue_message = control_queue_->delete_head();
|
2011-10-01 18:45:20 +00:00
|
|
|
if (queue_message != 0)
|
2011-12-28 21:36:45 +00:00
|
|
|
{
|
2013-11-17 10:48:27 +00:00
|
|
|
control_messages_ = control_message_factory_->GetControlMessages(queue_message);
|
2011-12-28 21:36:45 +00:00
|
|
|
}
|
2011-10-01 18:45:20 +00:00
|
|
|
else
|
2011-12-28 21:36:45 +00:00
|
|
|
{
|
|
|
|
control_messages_ = 0;
|
|
|
|
}
|
2011-10-01 18:45:20 +00:00
|
|
|
}
|
|
|
|
|
2012-11-01 16:39:06 +00:00
|
|
|
|
2011-10-01 18:45:20 +00:00
|
|
|
// Apply the corresponding control actions
|
|
|
|
// TODO: May be it is better to move the apply_action state machine to the control_thread
|
|
|
|
void ControlThread::process_control_messages()
|
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < control_messages_->size(); i++)
|
|
|
|
{
|
2011-12-28 21:36:45 +00:00
|
|
|
if (stop_) break;
|
|
|
|
if (control_messages_->at(i)->who == 200)
|
|
|
|
{
|
|
|
|
apply_action(control_messages_->at(i)->what);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-11-17 10:48:27 +00:00
|
|
|
flowgraph_->apply_action(control_messages_->at(i)->who, control_messages_->at(i)->what);
|
2011-12-28 21:36:45 +00:00
|
|
|
}
|
|
|
|
delete control_messages_->at(i);
|
|
|
|
processed_control_messages_++;
|
2011-10-01 18:45:20 +00:00
|
|
|
}
|
|
|
|
control_messages_->clear();
|
|
|
|
delete control_messages_;
|
|
|
|
DLOG(INFO) << "Processed all control messages";
|
|
|
|
}
|
|
|
|
|
2012-11-01 16:39:06 +00:00
|
|
|
|
|
|
|
|
2011-10-01 18:45:20 +00:00
|
|
|
void ControlThread::apply_action(unsigned int what)
|
|
|
|
{
|
|
|
|
switch (what)
|
|
|
|
{
|
2011-12-28 21:36:45 +00:00
|
|
|
case 0:
|
|
|
|
DLOG(INFO) << "Received action STOP";
|
|
|
|
stop_ = true;
|
|
|
|
applied_actions_++;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
DLOG(INFO) << "Unrecognized action.";
|
2013-03-15 18:05:37 +00:00
|
|
|
break;
|
2011-10-01 18:45:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-17 10:48:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-03-20 18:19:26 +00:00
|
|
|
void ControlThread::gps_acq_assist_data_collector()
|
|
|
|
{
|
2013-11-17 10:48:27 +00:00
|
|
|
// ############ 1.bis READ EPHEMERIS/UTC_MODE/IONO QUEUE ####################
|
|
|
|
Gps_Acq_Assist gps_acq;
|
|
|
|
Gps_Acq_Assist gps_acq_old;
|
|
|
|
while(stop_ == false)
|
|
|
|
{
|
|
|
|
global_gps_acq_assist_queue.wait_and_pop(gps_acq);
|
|
|
|
|
|
|
|
// DEBUG MESSAGE
|
|
|
|
std::cout << "Acquisition assistance record has arrived from SAT ID "
|
|
|
|
<< gps_acq.i_satellite_PRN
|
|
|
|
<< " with Doppler "
|
|
|
|
<< gps_acq.d_Doppler0
|
|
|
|
<< " [Hz] "<< std::endl;
|
|
|
|
// insert new acq record to the global ephemeris map
|
|
|
|
if (global_gps_acq_assist_map.read(gps_acq.i_satellite_PRN,gps_acq_old))
|
|
|
|
{
|
|
|
|
std::cout << "Acquisition assistance record updated" << std::endl;
|
|
|
|
global_gps_acq_assist_map.write(gps_acq.i_satellite_PRN, gps_acq);
|
2013-03-20 18:19:26 +00:00
|
|
|
|
2013-11-17 10:48:27 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// insert new acq record
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "New acq assist record inserted";
|
2013-11-17 10:48:27 +00:00
|
|
|
global_gps_acq_assist_map.write(gps_acq.i_satellite_PRN, gps_acq);
|
|
|
|
}
|
|
|
|
}
|
2013-03-20 18:19:26 +00:00
|
|
|
}
|
|
|
|
|
2012-11-01 16:39:06 +00:00
|
|
|
|
2013-03-15 18:05:37 +00:00
|
|
|
void ControlThread::gps_ephemeris_data_collector()
|
|
|
|
{
|
2013-11-17 10:48:27 +00:00
|
|
|
// ############ 1.bis READ EPHEMERIS/UTC_MODE/IONO QUEUE ####################
|
|
|
|
Gps_Ephemeris gps_eph;
|
|
|
|
Gps_Ephemeris gps_eph_old;
|
|
|
|
while(stop_ == false)
|
|
|
|
{
|
|
|
|
global_gps_ephemeris_queue.wait_and_pop(gps_eph);
|
|
|
|
|
|
|
|
// DEBUG MESSAGE
|
|
|
|
std::cout << "Ephemeris record has arrived from SAT ID "
|
|
|
|
<< gps_eph.i_satellite_PRN << " (Block "
|
|
|
|
<< gps_eph.satelliteBlock[gps_eph.i_satellite_PRN]
|
|
|
|
<< ")" << std::endl;
|
|
|
|
// insert new ephemeris record to the global ephemeris map
|
|
|
|
if (global_gps_ephemeris_map.read(gps_eph.i_satellite_PRN, gps_eph_old))
|
|
|
|
{
|
|
|
|
// Check the EPHEMERIS timestamp. If it is newer, then update the ephemeris
|
|
|
|
if (gps_eph.i_GPS_week > gps_eph_old.i_GPS_week)
|
|
|
|
{
|
|
|
|
std::cout << "Ephemeris record updated (GPS week=" << gps_eph.i_GPS_week << std::endl;
|
|
|
|
global_gps_ephemeris_map.write(gps_eph.i_satellite_PRN, gps_eph);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (gps_eph.d_Toe > gps_eph_old.d_Toe)
|
|
|
|
{
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "Ephemeris record updated (Toe=" << gps_eph.d_Toe;
|
2013-11-17 10:48:27 +00:00
|
|
|
global_gps_ephemeris_map.write(gps_eph.i_satellite_PRN, gps_eph);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "Not updating the existing ephemeris";
|
2013-11-17 10:48:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// insert new ephemeris record
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "New Ephemeris record inserted with Toe="
|
2013-11-17 10:48:27 +00:00
|
|
|
<< gps_eph.d_Toe<<" and GPS Week="
|
2014-03-16 23:25:52 +00:00
|
|
|
<< gps_eph.i_GPS_week;
|
2013-11-17 10:48:27 +00:00
|
|
|
global_gps_ephemeris_map.write(gps_eph.i_satellite_PRN, gps_eph);
|
|
|
|
}
|
|
|
|
}
|
2013-03-15 18:05:37 +00:00
|
|
|
}
|
|
|
|
|
2013-09-02 13:58:35 +00:00
|
|
|
|
2013-08-27 14:32:44 +00:00
|
|
|
void ControlThread::galileo_ephemeris_data_collector()
|
|
|
|
{
|
2013-11-17 10:48:27 +00:00
|
|
|
// ############ 1.bis READ EPHEMERIS/UTC_MODE/IONO QUEUE ####################
|
|
|
|
Galileo_Ephemeris galileo_eph;
|
|
|
|
Galileo_Ephemeris galileo_eph_old;
|
|
|
|
while(stop_ == false)
|
|
|
|
{
|
|
|
|
global_galileo_ephemeris_queue.wait_and_pop(galileo_eph);
|
2013-08-27 14:32:44 +00:00
|
|
|
|
2013-11-17 10:48:27 +00:00
|
|
|
// DEBUG MESSAGE
|
|
|
|
std::cout << "Galileo Ephemeris record has arrived from SAT ID "
|
|
|
|
<< galileo_eph.SV_ID_PRN_4 << std::endl;
|
|
|
|
|
|
|
|
// insert new ephemeris record to the global ephemeris map
|
|
|
|
if (global_galileo_ephemeris_map.read(galileo_eph.SV_ID_PRN_4, galileo_eph_old))
|
|
|
|
{
|
|
|
|
// Check the EPHEMERIS timestamp. If it is newer, then update the ephemeris
|
|
|
|
if (galileo_eph.WN_5 > galileo_eph_old.WN_5) //further check because it is not clear when IOD is reset
|
|
|
|
{
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "Galileo Ephemeris record in global map updated -- GALILEO Week Number ="
|
|
|
|
<< galileo_eph.WN_5;
|
2013-11-17 10:48:27 +00:00
|
|
|
global_galileo_ephemeris_map.write(galileo_eph.SV_ID_PRN_4,galileo_eph);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (galileo_eph.IOD_ephemeris > galileo_eph_old.IOD_ephemeris)
|
|
|
|
{
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "Galileo Ephemeris record updated in global map-- IOD_ephemeris ="
|
2014-04-03 21:59:14 +00:00
|
|
|
<< galileo_eph.IOD_ephemeris;
|
2013-11-17 10:48:27 +00:00
|
|
|
global_galileo_ephemeris_map.write(galileo_eph.SV_ID_PRN_4, galileo_eph);
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "IOD_ephemeris OLD: " << galileo_eph_old.IOD_ephemeris;
|
|
|
|
LOG(INFO) << "satellite: " << galileo_eph.SV_ID_PRN_4;
|
2013-11-17 10:48:27 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "Not updating the existing Galileo ephemeris, IOD is not changing";
|
2013-11-17 10:48:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// insert new ephemeris record
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "Galileo New Ephemeris record inserted in global map with TOW =" << galileo_eph.TOW_5
|
2013-11-17 10:48:27 +00:00
|
|
|
<< ", GALILEO Week Number =" << galileo_eph.WN_5
|
2014-03-16 23:25:52 +00:00
|
|
|
<< " and Ephemeris IOD = " << galileo_eph.IOD_ephemeris;
|
2013-11-17 10:48:27 +00:00
|
|
|
global_galileo_ephemeris_map.write(galileo_eph.SV_ID_PRN_4, galileo_eph);
|
|
|
|
}
|
|
|
|
}
|
2013-08-27 14:32:44 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-15 18:05:37 +00:00
|
|
|
void ControlThread::gps_iono_data_collector()
|
|
|
|
{
|
2013-11-17 10:48:27 +00:00
|
|
|
// ############ 1.bis READ EPHEMERIS/UTC_MODE/IONO QUEUE ####################
|
|
|
|
Gps_Iono gps_iono;
|
|
|
|
Gps_Iono gps_iono_old;
|
|
|
|
while(stop_ == false)
|
|
|
|
{
|
|
|
|
global_gps_iono_queue.wait_and_pop(gps_iono);
|
2013-03-15 18:05:37 +00:00
|
|
|
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "New IONO record has arrived ";
|
2013-11-17 10:48:27 +00:00
|
|
|
// insert new ephemeris record to the global ephemeris map
|
|
|
|
if (global_gps_iono_map.read(0, gps_iono_old))
|
|
|
|
{
|
|
|
|
// TODO: Check the IONO timestamp. If it is newer, then update the iono
|
|
|
|
global_gps_iono_map.write(0, gps_iono);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// insert new ephemeris record
|
2014-04-03 21:59:14 +00:00
|
|
|
global_gps_iono_map.write(0, gps_iono);
|
2013-11-17 10:48:27 +00:00
|
|
|
}
|
|
|
|
}
|
2013-03-15 18:05:37 +00:00
|
|
|
}
|
|
|
|
|
2013-11-17 10:48:27 +00:00
|
|
|
|
|
|
|
|
2013-09-02 13:58:35 +00:00
|
|
|
void ControlThread::galileo_iono_data_collector()
|
|
|
|
{
|
2013-11-17 10:48:27 +00:00
|
|
|
Galileo_Iono galileo_iono;
|
|
|
|
Galileo_Iono galileo_iono_old;
|
|
|
|
while(stop_ == false)
|
|
|
|
{
|
|
|
|
global_galileo_iono_queue.wait_and_pop(galileo_iono);
|
2013-09-02 13:58:35 +00:00
|
|
|
|
2013-11-17 10:48:27 +00:00
|
|
|
// DEBUG MESSAGE
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "Iono record has arrived";
|
2013-11-17 10:48:27 +00:00
|
|
|
|
|
|
|
// insert new Iono record to the global Iono map
|
|
|
|
if (global_galileo_iono_map.read(0, galileo_iono_old))
|
|
|
|
{
|
|
|
|
// Check the Iono timestamp from UTC page (page 6). If it is newer, then update the Iono parameters
|
|
|
|
if (galileo_iono.WN_5 > galileo_iono_old.WN_5)
|
|
|
|
{
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "IONO record updated in global map--new GALILEO UTC-IONO Week Number";
|
2013-11-17 10:48:27 +00:00
|
|
|
global_galileo_iono_map.write(0, galileo_iono);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (galileo_iono.TOW_5 > galileo_iono_old.TOW_5)
|
|
|
|
{
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "IONO record updated in global map--new GALILEO UTC-IONO time of Week";
|
2013-11-17 10:48:27 +00:00
|
|
|
global_galileo_iono_map.write(0, galileo_iono);
|
|
|
|
//std::cout << "GALILEO IONO time of Week old: " << galileo_iono_old.t0t_6<<std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "Not updating the existing Iono parameters in global map, Iono timestamp is not changing";
|
2013-11-17 10:48:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// insert new ephemeris record
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "New IONO record inserted in global map";
|
2013-11-17 10:48:27 +00:00
|
|
|
global_galileo_iono_map.write(0, galileo_iono);
|
|
|
|
}
|
|
|
|
}
|
2013-09-02 13:58:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-15 18:05:37 +00:00
|
|
|
void ControlThread::gps_utc_model_data_collector()
|
|
|
|
{
|
2013-11-17 10:48:27 +00:00
|
|
|
// ############ 1.bis READ EPHEMERIS/UTC_MODE/IONO QUEUE ####################
|
|
|
|
Gps_Utc_Model gps_utc;
|
|
|
|
Gps_Utc_Model gps_utc_old;
|
|
|
|
while(stop_ == false)
|
|
|
|
{
|
|
|
|
global_gps_utc_model_queue.wait_and_pop(gps_utc);
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "New UTC MODEL record has arrived with A0=" << gps_utc.d_A0;
|
2013-11-17 10:48:27 +00:00
|
|
|
// insert new ephemeris record to the global ephemeris map
|
|
|
|
if (global_gps_utc_model_map.read(0, gps_utc_old))
|
|
|
|
{
|
|
|
|
// TODO: Check the UTC MODEL timestamp. If it is newer, then update the UTC MODEL
|
|
|
|
global_gps_utc_model_map.write(0, gps_utc);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// insert new ephemeris record
|
|
|
|
global_gps_utc_model_map.write(0, gps_utc);
|
|
|
|
}
|
|
|
|
}
|
2013-03-15 18:05:37 +00:00
|
|
|
}
|
|
|
|
|
2013-11-17 10:48:27 +00:00
|
|
|
|
|
|
|
|
2013-09-02 13:58:35 +00:00
|
|
|
void ControlThread::galileo_utc_model_data_collector()
|
|
|
|
{
|
2013-11-17 10:48:27 +00:00
|
|
|
Galileo_Utc_Model galileo_utc;
|
|
|
|
Galileo_Utc_Model galileo_utc_old;
|
|
|
|
while(stop_ == false)
|
|
|
|
{
|
|
|
|
global_galileo_utc_model_queue.wait_and_pop(galileo_utc);
|
|
|
|
|
|
|
|
// DEBUG MESSAGE
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "UTC record has arrived" << std::endl;
|
2013-11-17 10:48:27 +00:00
|
|
|
|
|
|
|
// insert new UTC record to the global UTC map
|
|
|
|
if (global_galileo_utc_model_map.read(0, galileo_utc_old))
|
|
|
|
{
|
|
|
|
// Check the UTC timestamp. If it is newer, then update the ephemeris
|
|
|
|
if (galileo_utc.WNot_6 > galileo_utc_old.WNot_6) //further check because it is not clear when IOD is reset
|
|
|
|
{
|
|
|
|
//std::cout << "UTC record updated --new GALILEO UTC Week Number ="<<galileo_utc.WNot_6<<std::endl;
|
|
|
|
global_galileo_utc_model_map.write(0, galileo_utc);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (galileo_utc.t0t_6 > galileo_utc_old.t0t_6)
|
|
|
|
{
|
|
|
|
//std::cout << "UTC record updated --new GALILEO UTC time of Week ="<<galileo_utc.t0t_6<<std::endl;
|
|
|
|
global_galileo_utc_model_map.write(0, galileo_utc);
|
|
|
|
//std::cout << "GALILEO UTC time of Week old: " << galileo_utc_old.t0t_6<<std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "Not updating the existing UTC in global map, timestamp is not changing" << std::endl;
|
2013-11-17 10:48:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// insert new ephemeris record
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "New UTC record inserted in global map" << std::endl;
|
2013-11-17 10:48:27 +00:00
|
|
|
global_galileo_utc_model_map.write(0, galileo_utc);
|
|
|
|
}
|
|
|
|
}
|
2013-09-02 13:58:35 +00:00
|
|
|
}
|
2012-11-01 16:39:06 +00:00
|
|
|
|
2013-11-17 10:48:27 +00:00
|
|
|
|
|
|
|
|
2013-08-21 15:17:02 +00:00
|
|
|
void ControlThread::gps_ephemeris_data_write_to_XML()
|
|
|
|
{
|
2013-10-18 18:26:06 +00:00
|
|
|
//Save ephemeris to XML file
|
2013-11-17 10:48:27 +00:00
|
|
|
std::string eph_xml_filename = "gps_ephemeris_rx.xml";
|
2013-10-18 18:26:06 +00:00
|
|
|
std::map<int,Gps_Ephemeris> eph_copy;
|
2013-08-21 15:17:02 +00:00
|
|
|
|
2013-10-18 18:26:06 +00:00
|
|
|
eph_copy = global_gps_ephemeris_map.get_map_copy();
|
|
|
|
if (eph_copy.size() > 0)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
std::ofstream ofs(eph_xml_filename.c_str(), std::ofstream::trunc | std::ofstream::out);
|
|
|
|
boost::archive::xml_oarchive xml(ofs);
|
|
|
|
xml << boost::serialization::make_nvp("GNSS-SDR_ephemeris_map", eph_copy);
|
|
|
|
ofs.close();
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "Saved Ephemeris data";
|
2013-10-18 18:26:06 +00:00
|
|
|
}
|
|
|
|
catch (std::exception& e)
|
|
|
|
{
|
2014-03-16 19:58:29 +00:00
|
|
|
LOG(ERROR) << e.what();
|
2013-10-18 18:26:06 +00:00
|
|
|
}
|
|
|
|
}
|
2013-08-21 15:17:02 +00:00
|
|
|
}
|
|
|
|
|
2013-11-17 10:48:27 +00:00
|
|
|
|
|
|
|
|
2013-08-21 15:17:02 +00:00
|
|
|
void ControlThread::gps_utc_model_data_write_to_XML()
|
|
|
|
{
|
2013-11-17 10:48:27 +00:00
|
|
|
//Save ephemeris to XML file
|
|
|
|
std::string xml_filename = "gps_utc_model_rx.xml";
|
|
|
|
std::map<int,Gps_Utc_Model> map_copy;
|
|
|
|
|
|
|
|
map_copy = global_gps_utc_model_map.get_map_copy();
|
|
|
|
if (map_copy.size() > 0)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
std::ofstream ofs(xml_filename.c_str(), std::ofstream::trunc | std::ofstream::out);
|
|
|
|
boost::archive::xml_oarchive xml(ofs);
|
|
|
|
xml << boost::serialization::make_nvp("GNSS-SDR_utc_map", map_copy);
|
|
|
|
ofs.close();
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "Saved UTC Model data";
|
2013-11-17 10:48:27 +00:00
|
|
|
}
|
|
|
|
catch (std::exception& e)
|
|
|
|
{
|
2014-03-16 19:58:29 +00:00
|
|
|
LOG(ERROR) << e.what();
|
2013-11-17 10:48:27 +00:00
|
|
|
}
|
|
|
|
}
|
2013-08-21 15:17:02 +00:00
|
|
|
}
|
|
|
|
|
2013-11-17 10:48:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2013-08-21 15:17:02 +00:00
|
|
|
void ControlThread::gps_iono_data_write_to_XML()
|
|
|
|
{
|
2013-11-17 10:48:27 +00:00
|
|
|
//Save ephemeris to XML file
|
|
|
|
std::string xml_filename = "gps_iono_rx.xml";
|
|
|
|
std::map<int,Gps_Iono> map_copy;
|
2013-08-21 15:17:02 +00:00
|
|
|
std::map<int,Gps_Iono>::iterator gps_iono_iter;
|
|
|
|
|
2013-11-17 10:48:27 +00:00
|
|
|
map_copy = global_gps_iono_map.get_map_copy();
|
|
|
|
if (map_copy.size() > 0)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
std::ofstream ofs(xml_filename.c_str(), std::ofstream::trunc | std::ofstream::out);
|
|
|
|
boost::archive::xml_oarchive xml(ofs);
|
|
|
|
xml << boost::serialization::make_nvp("GNSS-SDR_iono_map", map_copy);
|
|
|
|
ofs.close();
|
2014-03-16 23:25:52 +00:00
|
|
|
LOG(INFO) << "Saved IONO Model data";
|
2013-11-17 10:48:27 +00:00
|
|
|
}
|
|
|
|
catch (std::exception& e)
|
|
|
|
{
|
2014-03-16 19:58:29 +00:00
|
|
|
LOG(ERROR) << e.what();
|
2013-11-17 10:48:27 +00:00
|
|
|
}
|
|
|
|
}
|
2013-08-21 15:17:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-16 12:04:36 +00:00
|
|
|
void ControlThread::keyboard_listener()
|
|
|
|
{
|
2012-11-01 16:39:06 +00:00
|
|
|
bool read_keys = true;
|
|
|
|
char c;
|
|
|
|
while(read_keys)
|
|
|
|
{
|
|
|
|
c = std::cin.get();
|
|
|
|
if (c =='q')
|
|
|
|
{
|
|
|
|
std::cout << "Quit keystroke order received, stopping GNSS-SDR !!" << std::endl;
|
2014-04-03 21:59:14 +00:00
|
|
|
std::unique_ptr<ControlMessageFactory> cmf(new ControlMessageFactory());
|
2013-07-04 13:47:40 +00:00
|
|
|
if (control_queue_ != gr::msg_queue::sptr())
|
2012-11-01 16:39:06 +00:00
|
|
|
{
|
|
|
|
control_queue_->handle(cmf->GetQueueMessage(200, 0));
|
|
|
|
}
|
|
|
|
read_keys = false;
|
|
|
|
}
|
|
|
|
}
|
2012-03-16 12:04:36 +00:00
|
|
|
}
|
|
|
|
|