mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-15 12:40:35 +00:00
74 lines
1.9 KiB
C++
74 lines
1.9 KiB
C++
|
//
|
||
|
// Created by javier on 1/2/2017.
|
||
|
//
|
||
|
|
||
|
#include "tlm_dump_reader.h"
|
||
|
|
||
|
bool tlm_dump_reader::read_binary_obs()
|
||
|
{
|
||
|
try {
|
||
|
d_dump_file.read((char *) &TOW_at_current_symbol, sizeof(double));
|
||
|
d_dump_file.read((char *) &Prn_timestamp_ms, sizeof(double));
|
||
|
d_dump_file.read((char *) &d_TOW_at_Preamble, sizeof(double));
|
||
|
}
|
||
|
catch (const std::ifstream::failure &e) {
|
||
|
return false;
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
bool tlm_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 tlm_dump_reader::num_epochs()
|
||
|
{
|
||
|
std::ifstream::pos_type size;
|
||
|
int number_of_vars_in_epoch=3;
|
||
|
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 tlm_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 << "TLM dump enabled, 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;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
tlm_dump_reader::~tlm_dump_reader() {
|
||
|
if (d_dump_file.is_open() == true)
|
||
|
{
|
||
|
d_dump_file.close();
|
||
|
}
|
||
|
}
|