msdd6000 source upgraded and enabled
[debian/gnuradio] / gr-msdd6000 / src / msdd_source_c.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_C_H
24 #define INCLUDED_MSDD_SOURCE_C_H
25
26 #include <msdd_source_base.h>
27 #include <msdd_buffer_copy_behaviors.h>
28 #include <stdexcept>
29
30 class usrp_standard_rx;
31
32
33 class msdd_source_c;
34 typedef boost::shared_ptr<msdd_source_c> msdd_source_c_sptr;
35
36
37 // public shared_ptr constructor
38
39 msdd_source_c_sptr
40 msdd_make_source_c (int which_board, 
41                      int opp_mode,
42                      const char *src, 
43                      unsigned short port_src
44                      ) throw (std::runtime_error);
45
46 /*!
47  * \brief interface to MSDD Rx path
48  *
49  * output: 1 stream of short
50  */
51 class msdd_source_c : public msdd_source_base {
52  private:
53   friend msdd_source_c_sptr
54   msdd_make_source_c (int which_board, 
55                        int opp_mode,
56                const char *src, 
57                unsigned short port_src
58                        ) throw (std::runtime_error);
59
60   std::auto_ptr<msdd::BufferCopyBehavior> d_buffer_copy_behavior;
61  protected:
62   msdd_source_c (int which_board, 
63                   int opp_mode,
64           const char *src, 
65           unsigned short port_src
66                   ) throw (std::runtime_error);
67
68   int ninput_bytes_reqd_for_noutput_items (int noutput_items);
69
70   virtual void copy_from_msdd_buffer (gr_vector_void_star &output_items,
71                                       int output_index,
72                                       int output_items_available,
73                                       int &output_items_produced,
74                                       const void *msdd_buffer,
75                                       int buffer_length,
76                                       int &bytes_read);
77  public:
78   ~msdd_source_c ();
79 };
80
81 #endif /* INCLUDED_MSDD_SOURCE_C_H */