2011-10-01 18:45:20 +00:00
|
|
|
/*!
|
|
|
|
* \file gnss_sdr_valve.h
|
2011-12-28 21:36:45 +00:00
|
|
|
* \brief Interface of a GNU Radio block that sends a STOP message to the
|
2011-10-01 18:45:20 +00:00
|
|
|
* control queue right after a specific number of samples have passed through it.
|
|
|
|
* \author Carlos Aviles, 2010. carlos.avilesr(at)googlemail.com
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*
|
2015-01-08 18:49:59 +00:00
|
|
|
* Copyright (C) 2010-2015 (see AUTHORS file for a list of contributors)
|
2011-10-01 18:45:20 +00:00
|
|
|
*
|
|
|
|
* 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
|
2015-01-08 18:49:59 +00:00
|
|
|
* (at your option) any later version.
|
2011-10-01 18:45:20 +00:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-12-28 21:36:45 +00:00
|
|
|
#ifndef GNSS_SDR_GNSS_SDR_VALVE_H_
|
|
|
|
#define GNSS_SDR_GNSS_SDR_VALVE_H_
|
2011-10-01 18:45:20 +00:00
|
|
|
|
|
|
|
#include <cstring>
|
2013-07-04 13:47:40 +00:00
|
|
|
#include <gnuradio/sync_block.h>
|
|
|
|
#include <gnuradio/msg_queue.h>
|
|
|
|
#include <boost/shared_ptr.hpp>
|
2011-10-01 18:45:20 +00:00
|
|
|
|
2013-07-04 13:47:40 +00:00
|
|
|
|
|
|
|
boost::shared_ptr<gr::block> gnss_sdr_make_valve (size_t sizeof_stream_item,
|
2013-09-02 17:43:13 +00:00
|
|
|
unsigned long long nitems,
|
2013-07-04 13:47:40 +00:00
|
|
|
gr::msg_queue::sptr queue);
|
2013-02-04 00:16:22 +00:00
|
|
|
/*!
|
|
|
|
* \brief Implementation of a GNU Radio block that sends a STOP message to the
|
|
|
|
* control queue right after a specific number of samples have passed through it.
|
|
|
|
*/
|
2013-07-04 13:47:40 +00:00
|
|
|
class gnss_sdr_valve : public gr::sync_block
|
2011-10-01 18:45:20 +00:00
|
|
|
{
|
2013-07-04 13:47:40 +00:00
|
|
|
friend boost::shared_ptr<gr::block> gnss_sdr_make_valve(size_t sizeof_stream_item,
|
2013-09-02 17:43:13 +00:00
|
|
|
unsigned long long nitems,
|
|
|
|
gr::msg_queue::sptr queue);
|
2011-10-01 18:45:20 +00:00
|
|
|
gnss_sdr_valve (size_t sizeof_stream_item,
|
2013-09-02 17:43:13 +00:00
|
|
|
unsigned long long nitems,
|
|
|
|
gr::msg_queue::sptr queue);
|
2016-05-02 21:46:30 +00:00
|
|
|
unsigned long long d_nitems;
|
|
|
|
unsigned long long d_ncopied_items;
|
2013-07-04 13:47:40 +00:00
|
|
|
gr::msg_queue::sptr d_queue;
|
2011-10-01 18:45:20 +00:00
|
|
|
|
|
|
|
public:
|
2013-07-04 13:47:40 +00:00
|
|
|
int work(int noutput_items,
|
2011-12-28 21:55:11 +00:00
|
|
|
gr_vector_const_void_star &input_items,
|
|
|
|
gr_vector_void_star &output_items);
|
2011-10-01 18:45:20 +00:00
|
|
|
};
|
|
|
|
|
2011-12-28 21:36:45 +00:00
|
|
|
#endif /*GNSS_SDR_GNSS_SDR_VALVE_H_*/
|