mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-16 05:00:35 +00:00
134 lines
4.0 KiB
C++
134 lines
4.0 KiB
C++
/*!
|
|
* \file observables_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/>.
|
|
*
|
|
* -------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "observables_dump_reader.h"
|
|
|
|
bool observables_dump_reader::read_binary_obs()
|
|
{
|
|
try
|
|
{
|
|
for(int i=0;i<n_channels;i++)
|
|
{
|
|
|
|
d_dump_file.read((char *) &RX_time[i], sizeof(double));
|
|
d_dump_file.read((char *) &TOW_at_current_symbol_s[i], sizeof(double));
|
|
d_dump_file.read((char *) &Carrier_Doppler_hz[i], sizeof(double));
|
|
d_dump_file.read((char *) &Acc_carrier_phase_hz[i], sizeof(double));
|
|
d_dump_file.read((char *) &Pseudorange_m[i], sizeof(double));
|
|
d_dump_file.read((char *) &PRN[i], sizeof(double));
|
|
}
|
|
}
|
|
catch (const std::ifstream::failure &e)
|
|
{
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool observables_dump_reader::restart()
|
|
{
|
|
if (d_dump_file.is_open())
|
|
{
|
|
d_dump_file.clear();
|
|
d_dump_file.seekg(0, std::ios::beg);
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
long int observables_dump_reader::num_epochs()
|
|
{
|
|
std::ifstream::pos_type size;
|
|
int number_of_vars_in_epoch = n_channels*6;
|
|
int epoch_size_bytes = sizeof(double) * number_of_vars_in_epoch;
|
|
std::ifstream tmpfile( d_dump_filename.c_str(), std::ios::binary | std::ios::ate);
|
|
if (tmpfile.is_open())
|
|
{
|
|
size = tmpfile.tellg();
|
|
long int nepoch = size / epoch_size_bytes;
|
|
return nepoch;
|
|
}
|
|
else
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
bool observables_dump_reader::open_obs_file(std::string out_file)
|
|
{
|
|
if (d_dump_file.is_open() == false)
|
|
{
|
|
try
|
|
{
|
|
d_dump_filename=out_file;
|
|
d_dump_file.exceptions ( std::ifstream::failbit | std::ifstream::badbit );
|
|
d_dump_file.open(d_dump_filename.c_str(), std::ios::in | std::ios::binary);
|
|
std::cout << "Observables sum file opened, Log file: " << d_dump_filename.c_str() << std::endl;
|
|
return true;
|
|
}
|
|
catch (const std::ifstream::failure & e)
|
|
{
|
|
std::cout << "Problem opening TLM dump Log file: " << d_dump_filename.c_str() << std::endl;
|
|
return false;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
observables_dump_reader::observables_dump_reader(int n_channels_)
|
|
{
|
|
n_channels=n_channels_;
|
|
RX_time=new double[n_channels];
|
|
TOW_at_current_symbol_s=new double[n_channels];
|
|
Carrier_Doppler_hz=new double[n_channels];
|
|
Acc_carrier_phase_hz=new double[n_channels];
|
|
Pseudorange_m=new double[n_channels];
|
|
PRN=new double[n_channels];
|
|
}
|
|
observables_dump_reader::~observables_dump_reader()
|
|
{
|
|
if (d_dump_file.is_open() == true)
|
|
{
|
|
d_dump_file.close();
|
|
}
|
|
delete[] RX_time;
|
|
delete[] TOW_at_current_symbol_s;
|
|
delete[] Carrier_Doppler_hz;
|
|
delete[] Acc_carrier_phase_hz;
|
|
delete[] Pseudorange_m;
|
|
delete[] PRN;
|
|
}
|