GNU Radio Manual and C++ API Reference  3.7.4.1
The Free & Open Software Radio Ecosystem
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ctrlport_probe_psd_impl.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2012-2013 Free Software Foundation, Inc.
4  *
5  * This file is part of GNU Radio
6  *
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  *
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with GNU Radio; see the file COPYING. If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22 
23 #ifndef INCLUDED_CTRLPORT_PROBE_PSD_IMPL_H
24 #define INCLUDED_CTRLPORT_PROBE_PSD_IMPL_H
25 
28 #include <boost/thread/shared_mutex.hpp>
29 #include <gnuradio/fft/fft.h>
30 
31 namespace gr {
32  namespace fft {
33 
35  {
36  private:
37  std::string d_id;
38  std::string d_desc;
39  size_t d_len;
40  boost::shared_mutex mutex_buffer;
41  mutable boost::mutex mutex_notify;
42  boost::condition_variable condition_buffer_ready;
43 
44  std::vector<gr_complex> d_buffer;
46 
47  public:
48  ctrlport_probe_psd_impl(const std::string &id, const std::string &desc, int len);
50 
51  void setup_rpc();
52 
53  void forecast(int noutput_items, gr_vector_int &ninput_items_required);
54 
55  std::vector<gr_complex> get();
56 
57  void set_length(int len);
58  int length() const;
59 
60  int work(int noutput_items,
61  gr_vector_const_void_star &input_items,
62  gr_vector_void_star &output_items);
63  };
64 
65  } /* namespace blocks */
66 } /* namespace gr */
67 
68 #endif /* INCLUDED_CTRLPORT_PROBE_PSD_IMPL_H */
69 
FFT: complex in, complex out.
Definition: fft.h:71
ctrlport_probe_psd_impl(const std::string &id, const std::string &desc, int len)
std::vector< const void * > gr_vector_const_void_star
Definition: gnuradio-runtime/include/gnuradio/types.h:38
std::vector< void * > gr_vector_void_star
Definition: gnuradio-runtime/include/gnuradio/types.h:37
std::vector< int > gr_vector_int
Definition: gnuradio-runtime/include/gnuradio/types.h:33
void setup_rpc()
Set up the RPC registered variables.
void forecast(int noutput_items, gr_vector_int &ninput_items_required)
Estimate input requirements given output request.
boost::mutex mutex
Definition: thread.h:46
A ControlPort probe to export vectors of signals.
Definition: ctrlport_probe_psd.h:43
int work(int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items)
just like gr::block::general_work, only this arranges to call consume_each for you ...
boost::condition_variable condition_variable
Definition: thread.h:48
Definition: ctrlport_probe_psd_impl.h:34