Merged r10385:10413 from michaelld/swig_tweaks into trunk. Passes distcheck.
[debian/gnuradio] / gr-msdd6000 / src / msdd_source_s.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2004 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_MSDD_SOURCE_S_H
24 #define INCLUDED_MSDD_SOURCE_S_H
25
26 #include <msdd_source_base.h>
27 #include <stdexcept>
28 #include <msdd_buffer_copy_behaviors.h>
29
30 class usrp_standard_rx;
31
32
33 class msdd_source_s;
34 typedef boost::shared_ptr<msdd_source_s> msdd_source_s_sptr;
35
36
37 // public shared_ptr constructor
38
39 msdd_source_s_sptr
40 msdd_make_source_s (int which_board, 
41                      unsigned int decim_rate,
42                      unsigned int fft_points,
43                      double initial_rx_freq,
44                      int opp_mode,
45                      const char *src, 
46                      unsigned short port_src
47                      ) throw (std::runtime_error);
48
49 /*!
50  * \brief interface to MSDD Rx path
51  *
52  * output: 1 stream of short
53  */
54 class msdd_source_s : public msdd_source_base {
55  private:
56   friend msdd_source_s_sptr
57   msdd_make_source_s (int which_board, 
58                        unsigned int decim_rate,
59                        unsigned int fft_points,
60                        double initial_rx_freq,
61                        int opp_mode,
62                const char *src, 
63                unsigned short port_src
64                        ) throw (std::runtime_error);
65
66   std::auto_ptr<msdd::BufferCopyBehavior> d_buffer_copy_behavior;
67   
68  protected:
69   msdd_source_s (int which_board, 
70                   unsigned int decim_rate,
71                   unsigned int fft_points,
72                   double initial_rx_freq,
73                   int opp_mode,
74           const char *src, 
75           unsigned short port_src
76                   ) throw (std::runtime_error);
77
78   int ninput_bytes_reqd_for_noutput_items (int noutput_items);
79
80   virtual void copy_from_msdd_buffer (gr_vector_void_star &output_items,
81                                       int output_index,
82                                       int output_items_available,
83                                       int &output_items_produced,
84                                       const void *msdd_buffer,
85                                       int buffer_length,
86                                       int &bytes_read);
87  public:
88   ~msdd_source_s ();
89 };
90
91 #endif /* INCLUDED_MSDD_SOURCE_S_H */