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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
|
/* -*- c++ -*- */
/*
* Copyright 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 "async_decoder_impl.h"
#include <gnuradio/io_signature.h>
#include <volk/volk.h>
#include <stdio.h>
namespace gr {
namespace fec {
async_decoder::sptr
async_decoder::make(generic_decoder::sptr my_decoder,
bool packed, bool rev_pack,
int mtu)
{
return gnuradio::get_initial_sptr
(new async_decoder_impl(my_decoder, packed, rev_pack, mtu));
}
async_decoder_impl::async_decoder_impl(generic_decoder::sptr my_decoder,
bool packed, bool rev_pack,
int mtu)
: block("async_decoder",
io_signature::make(0,0,0),
io_signature::make(0,0,0)),
d_input_item_size(sizeof(float)), d_output_item_size(sizeof(char))
{
d_in_port = pmt::mp("in");
d_out_port = pmt::mp("out");
d_decoder = my_decoder;
if(d_decoder->get_history() > 0) {
throw std::runtime_error("async_decoder deploment does not support decoders with history requirements.");
}
d_packed = packed;
d_rev_pack = rev_pack;
d_mtu = mtu;
message_port_register_in(d_in_port);
message_port_register_out(d_out_port);
if(d_packed) {
d_pack = new blocks::kernel::pack_k_bits(8);
set_msg_handler(d_in_port, boost::bind(&async_decoder_impl::decode_packed, this ,_1));
}
else {
set_msg_handler(d_in_port, boost::bind(&async_decoder_impl::decode_unpacked, this ,_1));
}
// The maximum frame size is set by the initial frame size of the decoder.
d_max_bits_in = d_mtu*8 * 1.0/d_decoder->rate();
d_tmp_f32 = (float*)volk_malloc(d_max_bits_in*sizeof(float),
volk_get_alignment());
if(strncmp(d_decoder->get_input_conversion(), "uchar", 5) == 0) {
d_tmp_u8 = (int8_t*)volk_malloc(d_max_bits_in*sizeof(uint8_t),
volk_get_alignment());
}
if(d_packed) {
int max_bits_out = d_mtu*8;
d_bits_out = (uint8_t*)volk_malloc(max_bits_out*sizeof(uint8_t),
volk_get_alignment());
}
}
async_decoder_impl::~async_decoder_impl()
{
if(d_packed) {
delete d_pack;
volk_free(d_bits_out);
}
volk_free(d_tmp_f32);
if(strncmp(d_decoder->get_input_conversion(), "uchar", 5) == 0) {
volk_free(d_tmp_u8);
}
}
void
async_decoder_impl::decode_unpacked(pmt::pmt_t msg)
{
// extract input pdu
pmt::pmt_t meta(pmt::car(msg));
pmt::pmt_t bits(pmt::cdr(msg));
// Watch out for this diff. It might be over-specializing to the
// CC decoder in terminated mode that has an extra rate(K-1)
// bits added on to the transmitted frame.
int diff = d_decoder->rate()*d_decoder->get_input_size() - d_decoder->get_output_size();
size_t nbits_in = pmt::length(bits);
size_t nbits_out = 0;
size_t nblocks = 1;
bool variable_frame_size = d_decoder->set_frame_size(nbits_in*d_decoder->rate());
// Check here if the frame size is larger than what we've
// allocated for in the constructor.
if(variable_frame_size && (nbits_in > d_max_bits_in)) {
throw std::runtime_error("async_decoder: Received frame larger than max frame size.");
}
// set up nbits_out
if(variable_frame_size){
nbits_out = nbits_in*d_decoder->rate() - diff;
}
else {
nblocks = nbits_in / d_decoder->get_input_size();
nbits_out = nblocks * d_decoder->get_output_size();
if(nblocks * d_decoder->get_input_size() != nbits_in){
throw std::runtime_error("bad block multiple in!");
}
}
size_t o0(0);
const float* f32in = pmt::f32vector_elements(bits, o0);
pmt::pmt_t outvec(pmt::make_u8vector(nbits_out, 0x00));
uint8_t* u8out = pmt::u8vector_writable_elements(outvec, o0);
if(strncmp(d_decoder->get_input_conversion(), "uchar", 5) == 0) {
volk_32f_s32f_multiply_32f(d_tmp_f32, f32in, 48.0f, nbits_in);
}
else {
memcpy(d_tmp_f32, f32in, nbits_in*sizeof(float));
}
if(d_decoder->get_shift() != 0) {
for(size_t n = 0; n < nbits_in; n++)
d_tmp_f32[n] += d_decoder->get_shift();
}
if(strncmp(d_decoder->get_input_conversion(), "uchar", 5) == 0) {
//volk_32f_s32f_convert_8i(d_tmp_u8, d_tmp_f32, 1, nbits_in);
for(size_t n = 0; n < nbits_in; n++)
d_tmp_u8[n] = static_cast<uint8_t>(d_tmp_f32[n]);
d_decoder->generic_work((void*)d_tmp_u8, (void*)u8out);
}
else {
for(size_t i = 0; i < nblocks; i++){
d_decoder->generic_work((void*)&d_tmp_f32[i*d_decoder->get_input_size()],
(void*)&u8out[i*d_decoder->get_output_size()]);
}
}
meta = pmt::dict_add(meta, pmt::mp("iterations"), pmt::mp(d_decoder->get_iterations()) );
message_port_pub(d_out_port, pmt::cons(meta, outvec));
}
void
async_decoder_impl::decode_packed(pmt::pmt_t msg)
{
// extract input pdu
pmt::pmt_t meta(pmt::car(msg));
pmt::pmt_t bits(pmt::cdr(msg));
size_t o0 = 0;
size_t nbits_in = pmt::length(bits);
int nbits_out = nbits_in*d_decoder->rate();
int nbytes_out = nbits_out/8;
// Check here if the frame size is larger than what we've
// allocated for in the constructor.
if(nbits_in > d_max_bits_in) {
throw std::runtime_error("async_decoder: Received frame larger than max frame size.");
}
d_decoder->set_frame_size(nbits_out);
pmt::pmt_t outvec(pmt::make_u8vector(nbytes_out, 0x00));
uint8_t* bytes_out = pmt::u8vector_writable_elements(outvec, o0);
const float* f32in = pmt::f32vector_elements(bits, o0);
if(strncmp(d_decoder->get_input_conversion(), "uchar", 5) == 0) {
volk_32f_s32f_multiply_32f(d_tmp_f32, f32in, 48.0f, nbits_in);
}
else {
memcpy(d_tmp_f32, f32in, nbits_in*sizeof(float));
}
if(d_decoder->get_shift() != 0) {
for(size_t n = 0; n < nbits_in; n++)
d_tmp_f32[n] += d_decoder->get_shift();
}
if(strncmp(d_decoder->get_input_conversion(), "uchar", 5) == 0) {
//volk_32f_s32f_convert_8i(d_tmp_u8, d_tmp_f32, 1.0, nbits_in);
for(size_t n = 0; n < nbits_in; n++)
d_tmp_u8[n] = static_cast<uint8_t>(d_tmp_f32[n]);
d_decoder->generic_work((void*)d_tmp_u8, (void*)d_bits_out);
}
else {
d_decoder->generic_work((void*)d_tmp_f32, (void*)d_bits_out);
}
if(d_rev_pack)
d_pack->pack_rev(bytes_out, d_bits_out, nbytes_out);
else
d_pack->pack(bytes_out, d_bits_out, nbytes_out);
message_port_pub(d_out_port, pmt::cons(meta, outvec));
}
int
async_decoder_impl::general_work(int noutput_items,
gr_vector_int& ninput_items,
gr_vector_const_void_star &input_items,
gr_vector_void_star &output_items)
{
return noutput_items;
}
} /* namespace fec */
} /* namespace gr */
|