1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
/* -*- c++ -*- */
/*
* Copyright 2012,2014 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNU Radio; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stream_mux_impl.h"
#include <gnuradio/io_signature.h>
#include <boost/foreach.hpp>
#include <cstring>
namespace gr {
namespace blocks {
stream_mux::sptr stream_mux::make(size_t itemsize, const std::vector<int> &lengths)
{
return gnuradio::get_initial_sptr(new stream_mux_impl(itemsize, lengths));
}
stream_mux_impl::stream_mux_impl(size_t itemsize, const std::vector<int> &lengths)
: block("stream_mux",
io_signature::make (1, -1, itemsize),
io_signature::make (1, 1, itemsize)),
d_itemsize(itemsize),
d_stream(0),
d_residual(0),
d_lengths(lengths)
{
while (d_lengths[d_stream] == 0) {
d_stream++;
if (d_stream == d_lengths.size()) {
throw std::invalid_argument("At least one size must be non-zero.");
}
}
d_residual = d_lengths[d_stream];
set_tag_propagation_policy(TPP_DONT);
}
void
stream_mux_impl::forecast(int noutput_items, gr_vector_int &ninput_items_required)
{
unsigned ninputs = ninput_items_required.size ();
for (unsigned i = 0; i < ninputs; i++) {
// Only active inputs *need* items, for the rest, it would just be nice
ninput_items_required[i] = (d_stream == i ? 1 : 0);
}
}
int
stream_mux_impl::general_work(int noutput_items,
gr_vector_int &ninput_items,
gr_vector_const_void_star &input_items,
gr_vector_void_star &output_items
){
char *out = (char *) output_items[0];
const char *in;
int out_index = 0; // Items written
gr_vector_int input_index(d_lengths.size(), 0); // Items read
std::vector<gr::tag_t> stream_t;
while (out_index < noutput_items) {
if (ninput_items[d_stream] <= input_index[d_stream]) {
break;
}
int space_left_in_buffers = std::min(
noutput_items - out_index, // Space left in output buffer
ninput_items[d_stream] - input_index[d_stream] // Space left in input buffer
);
int items_to_copy = std::min(
space_left_in_buffers,
d_residual
);
in = (const char *) input_items[d_stream] + input_index[d_stream]*d_itemsize;
memcpy(&out[out_index*d_itemsize], in, items_to_copy*d_itemsize);
get_tags_in_window(stream_t, d_stream,input_index[d_stream],input_index[d_stream] + items_to_copy);
BOOST_FOREACH(gr::tag_t t, stream_t){
t.offset = t.offset - nitems_read(d_stream) - input_index[d_stream] + nitems_written(0) + out_index;
add_item_tag(0, t);
}
out_index += items_to_copy;
input_index[d_stream] += items_to_copy;
d_residual -= items_to_copy;
if (d_residual == 0) {
do { // Skip all those inputs with zero length
d_stream = (d_stream+1) % d_lengths.size();
} while (d_lengths[d_stream] == 0);
d_residual = d_lengths[d_stream];
} else {
break;
}
} // while
for (size_t i = 0; i < input_index.size(); i++) {
consume((int) i, input_index[i]);
}
return out_index;
} /* work */
} /* namespace blocks */
} /* namespace gr */
|