2017-02-02 19:05:15 +00:00
|
|
|
/*!
|
|
|
|
* \file tracking_true_obs_reader.cc
|
|
|
|
* \brief Helper file for unit testing
|
|
|
|
* \author Javier Arribas, 2017. jarribas(at)cttc.es
|
|
|
|
*
|
2020-07-28 14:57:15 +00:00
|
|
|
* -----------------------------------------------------------------------------
|
2017-02-02 19:05:15 +00:00
|
|
|
*
|
2020-12-30 12:35:06 +00:00
|
|
|
* GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
|
2017-02-02 19:05:15 +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
|
2017-02-02 19:05:15 +00:00
|
|
|
*
|
2020-07-28 14:57:15 +00:00
|
|
|
* -----------------------------------------------------------------------------
|
2017-02-02 19:05:15 +00:00
|
|
|
*/
|
2017-02-01 18:24:25 +00:00
|
|
|
|
2017-02-02 15:41:58 +00:00
|
|
|
#include "tracking_true_obs_reader.h"
|
2019-02-10 20:55:51 +00:00
|
|
|
#include <exception>
|
2018-02-25 21:49:06 +00:00
|
|
|
#include <iostream>
|
2018-12-03 18:01:47 +00:00
|
|
|
#include <utility>
|
2017-02-01 18:24:25 +00:00
|
|
|
|
2019-02-22 09:47:24 +00:00
|
|
|
bool Tracking_True_Obs_Reader::read_binary_obs()
|
2017-02-02 19:05:15 +00:00
|
|
|
{
|
|
|
|
try
|
2018-03-03 01:03:39 +00:00
|
|
|
{
|
2017-08-19 10:45:19 +00:00
|
|
|
d_dump_file.read(reinterpret_cast<char *>(&signal_timestamp_s), sizeof(double));
|
|
|
|
d_dump_file.read(reinterpret_cast<char *>(&acc_carrier_phase_cycles), sizeof(double));
|
|
|
|
d_dump_file.read(reinterpret_cast<char *>(&doppler_l1_hz), sizeof(double));
|
|
|
|
d_dump_file.read(reinterpret_cast<char *>(&prn_delay_chips), sizeof(double));
|
|
|
|
d_dump_file.read(reinterpret_cast<char *>(&tow), sizeof(double));
|
2018-03-03 01:03:39 +00:00
|
|
|
}
|
2017-10-24 09:38:37 +00:00
|
|
|
catch (const std::ifstream::failure &e)
|
2018-03-03 01:03:39 +00:00
|
|
|
{
|
2017-02-02 15:41:58 +00:00
|
|
|
return false;
|
2018-03-03 01:03:39 +00:00
|
|
|
}
|
2017-02-02 19:05:15 +00:00
|
|
|
return true;
|
|
|
|
}
|
2017-02-01 18:24:25 +00:00
|
|
|
|
2017-08-19 10:45:19 +00:00
|
|
|
|
2019-02-22 09:47:24 +00:00
|
|
|
bool Tracking_True_Obs_Reader::restart()
|
2017-02-02 19:05:15 +00:00
|
|
|
{
|
2017-02-02 15:41:58 +00:00
|
|
|
if (d_dump_file.is_open())
|
2017-02-02 19:05:15 +00:00
|
|
|
{
|
|
|
|
d_dump_file.clear();
|
|
|
|
d_dump_file.seekg(0, std::ios::beg);
|
|
|
|
return true;
|
|
|
|
}
|
2018-12-03 21:08:19 +00:00
|
|
|
return false;
|
2017-02-02 15:41:58 +00:00
|
|
|
}
|
|
|
|
|
2017-08-19 10:45:19 +00:00
|
|
|
|
2019-02-22 09:47:24 +00:00
|
|
|
int64_t Tracking_True_Obs_Reader::num_epochs()
|
2017-02-02 15:41:58 +00:00
|
|
|
{
|
|
|
|
std::ifstream::pos_type size;
|
2017-02-02 19:05:15 +00:00
|
|
|
int number_of_vars_in_epoch = 5;
|
|
|
|
int epoch_size_bytes = sizeof(double) * number_of_vars_in_epoch;
|
2018-03-03 01:03:39 +00:00
|
|
|
std::ifstream tmpfile(d_dump_filename.c_str(), std::ios::binary | std::ios::ate);
|
2017-02-02 15:41:58 +00:00
|
|
|
if (tmpfile.is_open())
|
|
|
|
{
|
|
|
|
size = tmpfile.tellg();
|
2018-08-10 19:16:10 +00:00
|
|
|
int64_t nepoch = size / epoch_size_bytes;
|
2017-02-02 15:41:58 +00:00
|
|
|
return nepoch;
|
2017-02-02 19:05:15 +00:00
|
|
|
}
|
2018-12-03 21:08:19 +00:00
|
|
|
return 0;
|
2017-02-01 18:24:25 +00:00
|
|
|
}
|
|
|
|
|
2017-08-19 10:45:19 +00:00
|
|
|
|
2019-02-22 09:47:24 +00:00
|
|
|
bool Tracking_True_Obs_Reader::open_obs_file(std::string out_file)
|
2017-02-02 19:05:15 +00:00
|
|
|
{
|
2017-02-01 18:24:25 +00:00
|
|
|
if (d_dump_file.is_open() == false)
|
|
|
|
{
|
2017-02-02 19:05:15 +00:00
|
|
|
try
|
2018-03-03 01:03:39 +00:00
|
|
|
{
|
2018-06-19 15:51:22 +00:00
|
|
|
d_dump_file.clear();
|
2018-12-03 18:01:47 +00:00
|
|
|
d_dump_filename = std::move(out_file);
|
2018-03-03 01:03:39 +00:00
|
|
|
d_dump_file.exceptions(std::ifstream::failbit | std::ifstream::badbit);
|
2017-02-02 19:05:15 +00:00
|
|
|
d_dump_file.open(d_dump_filename.c_str(), std::ios::in | std::ios::binary);
|
|
|
|
return true;
|
2018-03-03 01:03:39 +00:00
|
|
|
}
|
|
|
|
catch (const std::ifstream::failure &e)
|
|
|
|
{
|
2020-07-07 16:53:50 +00:00
|
|
|
std::cout << "Problem opening Tracking dump Log file: " << d_dump_filename << '\n';
|
2017-02-02 19:05:15 +00:00
|
|
|
return false;
|
2018-03-03 01:03:39 +00:00
|
|
|
}
|
2017-02-01 18:24:25 +00:00
|
|
|
}
|
2017-02-02 19:05:15 +00:00
|
|
|
else
|
2017-02-01 18:24:25 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-22 09:47:24 +00:00
|
|
|
void Tracking_True_Obs_Reader::close_obs_file()
|
2018-06-19 15:51:22 +00:00
|
|
|
{
|
|
|
|
if (d_dump_file.is_open() == true)
|
|
|
|
{
|
|
|
|
d_dump_file.close();
|
|
|
|
}
|
|
|
|
}
|
2017-08-19 10:45:19 +00:00
|
|
|
|
2019-02-22 09:47:24 +00:00
|
|
|
Tracking_True_Obs_Reader::~Tracking_True_Obs_Reader()
|
2017-02-02 19:05:15 +00:00
|
|
|
{
|
2019-02-10 20:55:51 +00:00
|
|
|
try
|
2017-02-02 19:05:15 +00:00
|
|
|
{
|
2019-02-10 20:55:51 +00:00
|
|
|
if (d_dump_file.is_open() == true)
|
|
|
|
{
|
|
|
|
d_dump_file.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (const std::ifstream::failure &e)
|
|
|
|
{
|
|
|
|
std::cerr << "Problem closing Tracking dump Log file: " << d_dump_filename << '\n';
|
|
|
|
}
|
|
|
|
catch (const std::exception &e)
|
|
|
|
{
|
|
|
|
std::cerr << e.what() << '\n';
|
2017-02-02 19:05:15 +00:00
|
|
|
}
|
2017-02-01 18:24:25 +00:00
|
|
|
}
|