Merged eb/gcell -r8215:8243 into trunk. This adds gr-gcell, the GNU
[debian/gnuradio] / gnuradio-core / src / lib / general / gr_stream_mux.cc
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2006 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 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26
27 #include <gr_stream_mux.h>
28 #include <gr_io_signature.h>
29
30 #define VERBOSE 0
31
32 gr_stream_mux_sptr
33 gr_make_stream_mux (size_t itemsize, const std::vector<int> &lengths)
34 {
35   return gr_stream_mux_sptr (new gr_stream_mux (itemsize, lengths));
36 }
37
38 gr_stream_mux::gr_stream_mux (size_t itemsize, const std::vector<int> &lengths)
39   : gr_block ("stream_mux",
40               gr_make_io_signature (1, -1, itemsize),
41               gr_make_io_signature (1, 1, itemsize)),
42     d_itemsize(itemsize),
43     d_stream(0),
44     d_residual(0),
45     d_lengths(lengths)
46 {
47   if(d_lengths[d_stream] == 0) {
48     increment_stream();
49   }
50   d_residual = d_lengths[d_stream];
51 }    
52
53 gr_stream_mux::~gr_stream_mux(void)
54 {
55 }
56
57 void 
58 gr_stream_mux::forecast (int noutput_items, gr_vector_int &ninput_items_required)
59 {
60   unsigned ninputs = ninput_items_required.size ();
61   for (unsigned i = 0; i < ninputs; i++)
62     ninput_items_required[i] = (d_lengths[i] == 0 ? 0 : 1);
63 }
64
65 void gr_stream_mux::increment_stream()
66 {
67   do {
68     d_stream = (d_stream+1) % d_lengths.size();
69   } while(d_lengths[d_stream] == 0);
70   
71   d_residual = d_lengths[d_stream];
72 }
73
74 int
75 gr_stream_mux::general_work(int noutput_items,
76                             gr_vector_int &ninput_items,
77                             gr_vector_const_void_star &input_items,
78                             gr_vector_void_star &output_items)
79 {
80     char *out = (char *) output_items[0];
81     const char *in;
82     int out_index = 0;
83     std::vector<int> input_index(d_lengths.size(), 0);
84
85     if(VERBOSE) {
86       printf("mux: nouput_items: %d   d_stream: %d\n", noutput_items, d_stream);
87       for(size_t i = 0; i < d_lengths.size(); i++)
88         printf("\tninput_items[%d]: %d\n", i, ninput_items[i]);
89     }
90
91     while (1) {
92       int r = std::min(noutput_items - out_index,
93                        std::min(d_residual,
94                                 ninput_items[d_stream] - input_index[d_stream]));
95       if(VERBOSE) {
96         printf("mux: r=%d\n", r);
97         printf("\tnoutput_items - out_index: %d\n", 
98                noutput_items - out_index);
99         printf("\td_residual: %d\n", 
100                d_residual);
101         printf("\tninput_items[d_stream] - input_index[d_stream]: %d\n", 
102                ninput_items[d_stream] - input_index[d_stream]);
103       }
104
105       if(r <= 0) {
106         return out_index;
107       }
108
109       in = (const char *) input_items[d_stream] + input_index[d_stream]*d_itemsize;
110       
111       memcpy(&out[out_index*d_itemsize], in, r*d_itemsize);
112       out_index += r;
113       input_index[d_stream] += r;
114       d_residual -= r;
115
116       consume(d_stream, r);
117       
118       if(d_residual == 0) {
119         increment_stream();
120       }
121     }
122 }