gnss-sdr/src/algorithms/data_type_adapter/adapters/ibyte_to_cshort.h

82 lines
2.1 KiB
C++

/*!
* \file ibyte_to_cshort.h
* \brief Adapts a short interleaved sample stream into a std::complex<short> stream
* \author Carles Fernandez-Prades, cfernandez(at)cttc.es
*
* -------------------------------------------------------------------------
*
* Copyright (C) 2010-2019 (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.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
* -------------------------------------------------------------------------
*/
#ifndef GNSS_SDR_IBYTE_TO_CSHORT_H
#define GNSS_SDR_IBYTE_TO_CSHORT_H
#include "conjugate_sc.h"
#include "gnss_block_interface.h"
#include "interleaved_byte_to_complex_short.h"
#include <gnuradio/blocks/file_sink.h>
#include <string>
class ConfigurationInterface;
/*!
* \brief Adapts a short integer (16 bits) interleaved sample stream into a std::complex<short> stream
*
*/
class IbyteToCshort : public GNSSBlockInterface
{
public:
IbyteToCshort(ConfigurationInterface* configuration,
const std::string& role, unsigned int in_streams,
unsigned int out_streams);
~IbyteToCshort() = default;
inline std::string role() override
{
return role_;
}
//! Returns "Ibyte_To_Cshort"
inline std::string implementation() override
{
return "Ibyte_To_Cshort";
}
inline size_t item_size() override
{
return 0;
}
void connect(gr::top_block_sptr top_block) override;
void disconnect(gr::top_block_sptr top_block) override;
gr::basic_block_sptr get_left_block() override;
gr::basic_block_sptr get_right_block() override;
private:
interleaved_byte_to_complex_short_sptr interleaved_byte_to_complex_short_;
ConfigurationInterface* config_;
bool dump_;
std::string dump_filename_;
std::string input_item_type_;
std::string output_item_type_;
std::string role_;
unsigned int in_streams_;
unsigned int out_streams_;
gr::blocks::file_sink::sptr file_sink_;
conjugate_sc_sptr conjugate_sc_;
bool inverted_spectrum;
};
#endif