Imported Upstream version 3.0
[debian/gnuradio] / gnuradio-core / src / lib / io / gr_oscope_sink_f.cc
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2003,2004,2005 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 2, 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 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26
27 #include <gr_oscope_sink_f.h>
28 #include <gr_io_signature.h>
29 #include <gr_oscope_guts.h>
30
31
32 gr_oscope_sink_f_sptr
33 gr_make_oscope_sink_f (double sampling_rate, gr_msg_queue_sptr msgq)
34 {
35   return gr_oscope_sink_f_sptr (new gr_oscope_sink_f (sampling_rate, msgq));
36 }
37
38
39 gr_oscope_sink_f::gr_oscope_sink_f (double sampling_rate, gr_msg_queue_sptr msgq)
40   : gr_oscope_sink_x ("oscope_sink_f",
41                       gr_make_io_signature (1, MAX_CHANNELS, sizeof (float)),
42                       sampling_rate),
43     d_msgq(msgq)
44 {
45 }
46
47
48 bool
49 gr_oscope_sink_f::check_topology (int ninputs, int noutputs)
50 {
51   delete d_guts;
52   d_guts = 0;
53   d_guts = new gr_oscope_guts (ninputs, d_sampling_rate, d_msgq);
54   return true;
55 }
56
57
58 gr_oscope_sink_f::~gr_oscope_sink_f ()
59 {
60 }
61
62 int
63 gr_oscope_sink_f::work (int noutput_items,
64                         gr_vector_const_void_star &input_items,
65                         gr_vector_void_star &output_items)
66 {
67   int     ni = input_items.size ();
68   float   tmp[MAX_CHANNELS];
69
70   for (int i = 0; i < noutput_items; i++){
71
72     // FIXME for now, copy the data.  Fix later if reqd
73     for (int ch = 0; ch < ni; ch++)     
74       tmp[ch] = ((const float *) input_items[ch])[i];
75
76     d_guts->process_sample (tmp);
77   }
78
79   return noutput_items;
80 }