2011-10-01 18:45:20 +00:00
|
|
|
/*!
|
|
|
|
* \file gnss_sdr_valve.cc
|
2011-12-28 21:55:11 +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.
|
2011-10-01 18:45:20 +00:00
|
|
|
* \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/>.
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gnss_sdr_valve.h"
|
2014-01-12 20:07:38 +00:00
|
|
|
#include <algorithm> // for min
|
2017-08-11 03:18:38 +00:00
|
|
|
#include <cstring> // for memcpy
|
2014-01-12 20:07:38 +00:00
|
|
|
#include <gnuradio/io_signature.h>
|
2013-07-04 13:47:40 +00:00
|
|
|
#include "control_message_factory.h"
|
2011-10-01 18:45:20 +00:00
|
|
|
|
|
|
|
gnss_sdr_valve::gnss_sdr_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) : gr::sync_block("valve",
|
|
|
|
gr::io_signature::make(1, 1, sizeof_stream_item),
|
|
|
|
gr::io_signature::make(1, 1, sizeof_stream_item) ),
|
|
|
|
d_nitems(nitems), d_ncopied_items(0), d_queue(queue)
|
2011-10-01 18:45:20 +00:00
|
|
|
{}
|
|
|
|
|
2012-10-28 12:38:11 +00:00
|
|
|
|
2016-05-02 21:46:30 +00:00
|
|
|
boost::shared_ptr<gr::block> gnss_sdr_make_valve (size_t sizeof_stream_item, unsigned long long nitems, gr::msg_queue::sptr queue)
|
2011-10-01 18:45:20 +00:00
|
|
|
{
|
2014-05-05 09:21:18 +00:00
|
|
|
boost::shared_ptr<gnss_sdr_valve> valve_(new gnss_sdr_valve(sizeof_stream_item, nitems, queue));
|
|
|
|
return valve_;
|
2011-10-01 18:45:20 +00:00
|
|
|
}
|
|
|
|
|
2012-10-28 12:38:11 +00:00
|
|
|
|
|
|
|
|
2011-10-01 18:45:20 +00:00
|
|
|
int gnss_sdr_valve::work (int noutput_items,
|
|
|
|
gr_vector_const_void_star &input_items,
|
|
|
|
gr_vector_void_star &output_items)
|
|
|
|
{
|
|
|
|
if (d_ncopied_items >= d_nitems)
|
|
|
|
{
|
|
|
|
ControlMessageFactory* cmf = new ControlMessageFactory();
|
|
|
|
d_queue->handle(cmf->GetQueueMessage(200,0));
|
|
|
|
delete cmf;
|
2016-05-02 21:46:30 +00:00
|
|
|
return -1; // Done!
|
2011-10-01 18:45:20 +00:00
|
|
|
}
|
2013-09-02 17:54:37 +00:00
|
|
|
unsigned long long n = std::min(d_nitems - d_ncopied_items, (long long unsigned int)noutput_items);
|
2013-09-02 17:43:13 +00:00
|
|
|
if (n == 0) return 0;
|
2013-07-04 13:47:40 +00:00
|
|
|
memcpy (output_items[0], input_items[0], n * input_signature()->sizeof_stream_item(0));
|
2017-08-11 03:18:38 +00:00
|
|
|
//for(long long i = 0; i++; i<n)
|
|
|
|
// {
|
|
|
|
// output_items[i] = input_items[i];
|
|
|
|
// }
|
2011-10-01 18:45:20 +00:00
|
|
|
d_ncopied_items += n;
|
|
|
|
return n;
|
|
|
|
}
|