2017-02-02 19:05:15 +00:00
|
|
|
/*!
|
|
|
|
* \file tlm_dump_reader.cc
|
|
|
|
* \brief Helper file for unit testing
|
|
|
|
* \author Javier Arribas, 2017. jarribas(at)cttc.es
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010-2017 (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.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*/
|
2017-02-02 15:41:58 +00:00
|
|
|
|
|
|
|
#include "tlm_dump_reader.h"
|
|
|
|
|
|
|
|
bool tlm_dump_reader::read_binary_obs()
|
2017-02-02 19:05:15 +00:00
|
|
|
{
|
|
|
|
try
|
2017-02-02 15:41:58 +00:00
|
|
|
{
|
2017-08-19 10:45:19 +00:00
|
|
|
d_dump_file.read(reinterpret_cast<char *>(&TOW_at_current_symbol), sizeof(double));
|
|
|
|
d_dump_file.read(reinterpret_cast<char *>(&Tracking_sample_counter), sizeof(unsigned long int));
|
|
|
|
d_dump_file.read(reinterpret_cast<char *>(&d_TOW_at_Preamble), sizeof(double));
|
2017-02-02 19:05:15 +00:00
|
|
|
}
|
|
|
|
catch (const std::ifstream::failure &e)
|
|
|
|
{
|
2017-02-02 15:41:58 +00:00
|
|
|
return false;
|
|
|
|
}
|
2017-02-02 19:05:15 +00:00
|
|
|
return true;
|
|
|
|
}
|
2017-02-02 15:41:58 +00:00
|
|
|
|
2017-08-19 10:45:19 +00:00
|
|
|
|
2017-02-02 19:05:15 +00:00
|
|
|
bool tlm_dump_reader::restart()
|
|
|
|
{
|
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;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2017-02-02 15:41:58 +00:00
|
|
|
}
|
|
|
|
|
2017-08-19 10:45:19 +00:00
|
|
|
|
2017-02-02 15:41:58 +00:00
|
|
|
long int tlm_dump_reader::num_epochs()
|
|
|
|
{
|
|
|
|
std::ifstream::pos_type size;
|
2017-07-12 19:54:47 +00:00
|
|
|
int number_of_vars_in_epoch = 2;
|
|
|
|
int epoch_size_bytes = sizeof(double) * number_of_vars_in_epoch + sizeof(unsigned long int);
|
2017-02-02 15:41:58 +00:00
|
|
|
std::ifstream tmpfile( d_dump_filename.c_str(), std::ios::binary | std::ios::ate);
|
|
|
|
if (tmpfile.is_open())
|
|
|
|
{
|
|
|
|
size = tmpfile.tellg();
|
2017-02-05 19:07:34 +00:00
|
|
|
long int nepoch = size / epoch_size_bytes;
|
2017-02-02 15:41:58 +00:00
|
|
|
return nepoch;
|
2017-02-02 19:05:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-02-02 15:41:58 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-19 10:45:19 +00:00
|
|
|
|
2017-02-02 19:05:15 +00:00
|
|
|
bool tlm_dump_reader::open_obs_file(std::string out_file)
|
|
|
|
{
|
2017-02-02 15:41:58 +00:00
|
|
|
if (d_dump_file.is_open() == false)
|
|
|
|
{
|
2017-02-02 19:05:15 +00:00
|
|
|
try
|
|
|
|
{
|
2017-08-19 10:45:19 +00:00
|
|
|
d_dump_filename = out_file;
|
|
|
|
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);
|
2017-02-05 19:07:34 +00:00
|
|
|
std::cout << "TLM dump enabled, Log file: " << d_dump_filename.c_str() << std::endl;
|
2017-02-02 19:05:15 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch (const std::ifstream::failure & e)
|
|
|
|
{
|
2017-02-05 19:07:34 +00:00
|
|
|
std::cout << "Problem opening TLM dump Log file: " << d_dump_filename.c_str() << std::endl;
|
2017-02-02 19:05:15 +00:00
|
|
|
return false;
|
|
|
|
}
|
2017-02-02 15:41:58 +00:00
|
|
|
}
|
2017-02-02 19:05:15 +00:00
|
|
|
else
|
2017-02-02 15:41:58 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-19 10:45:19 +00:00
|
|
|
|
2017-02-02 19:05:15 +00:00
|
|
|
tlm_dump_reader::~tlm_dump_reader()
|
|
|
|
{
|
2017-02-02 15:41:58 +00:00
|
|
|
if (d_dump_file.is_open() == true)
|
2017-02-02 19:05:15 +00:00
|
|
|
{
|
|
|
|
d_dump_file.close();
|
|
|
|
}
|
2017-02-02 15:41:58 +00:00
|
|
|
}
|