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
|
/* -*- c++ -*- */
/*
* Copyright 2012 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "repack_bits_bb_impl.h"
#include <gnuradio/io_signature.h>
namespace gr {
namespace blocks {
repack_bits_bb::sptr repack_bits_bb::make(int k,
int l,
const std::string& len_tag_key,
bool align_output,
endianness_t endianness)
{
return gnuradio::make_block_sptr<repack_bits_bb_impl>(
k, l, len_tag_key, align_output, endianness);
}
repack_bits_bb_impl::repack_bits_bb_impl(int k,
int l,
const std::string& len_tag_key,
bool align_output,
endianness_t endianness)
: tagged_stream_block("repack_bits_bb",
io_signature::make(1, 1, sizeof(char)),
io_signature::make(1, 1, sizeof(char)),
len_tag_key),
d_k(k),
d_l(l),
d_packet_mode(!len_tag_key.empty()),
d_in_index(0),
d_out_index(0),
d_align_output(align_output),
d_endianness(endianness)
{
if (d_k > 8 || d_k < 1 || d_l > 8 || d_l < 1) {
throw std::invalid_argument("k and l must be in [1, 8]");
}
set_relative_rate((uint64_t)d_k, (uint64_t)d_l);
}
void repack_bits_bb_impl::set_k_and_l(int k, int l)
{
gr::thread::scoped_lock guard(d_setlock);
d_k = k;
d_l = l;
set_relative_rate((uint64_t)d_k, (uint64_t)d_l);
}
repack_bits_bb_impl::~repack_bits_bb_impl() {}
int repack_bits_bb_impl::calculate_output_stream_length(const gr_vector_int& ninput_items)
{
int n_out_bytes_required = (ninput_items[0] * d_k) / d_l;
if ((ninput_items[0] * d_k) % d_l &&
(!d_packet_mode || (d_packet_mode && !d_align_output))) {
n_out_bytes_required++;
}
return n_out_bytes_required;
}
int repack_bits_bb_impl::work(int noutput_items,
gr_vector_int& ninput_items,
gr_vector_const_void_star& input_items,
gr_vector_void_star& output_items)
{
gr::thread::scoped_lock guard(d_setlock);
const unsigned char* in = (const unsigned char*)input_items[0];
unsigned char* out = (unsigned char*)output_items[0];
int bytes_to_write = noutput_items;
if (d_packet_mode) { // noutput_items could be larger than necessary
int bytes_to_read = ninput_items[0];
bytes_to_write = bytes_to_read * d_k / d_l;
if (!d_align_output && (((bytes_to_read * d_k) % d_l) != 0)) {
bytes_to_write++;
}
}
int n_read = 0;
int n_written = 0;
switch (d_endianness) {
case GR_LSB_FIRST:
while (n_written < bytes_to_write && n_read < ninput_items[0]) {
if (d_out_index == 0) { // Starting a fresh byte
out[n_written] = 0;
}
out[n_written] |= ((in[n_read] >> d_in_index) & 0x01) << d_out_index;
d_in_index = (d_in_index + 1) % d_k;
d_out_index = (d_out_index + 1) % d_l;
if (d_in_index == 0) {
n_read++;
d_in_index = 0;
}
if (d_out_index == 0) {
n_written++;
d_out_index = 0;
}
}
if (d_packet_mode) {
if (d_out_index) {
n_written++;
d_out_index = 0;
}
} else {
consume_each(n_read);
}
break;
case GR_MSB_FIRST:
while (n_written < bytes_to_write && n_read < ninput_items[0]) {
if (d_out_index == 0) { // Starting a fresh byte
out[n_written] = 0;
}
out[n_written] |= ((in[n_read] >> (d_k - 1 - d_in_index)) & 0x01)
<< (d_l - 1 - d_out_index);
d_in_index = (d_in_index + 1) % d_k;
d_out_index = (d_out_index + 1) % d_l;
if (d_in_index == 0) {
n_read++;
d_in_index = 0;
}
if (d_out_index == 0) {
n_written++;
d_out_index = 0;
}
}
if (d_packet_mode) {
if (d_out_index) {
n_written++;
d_out_index = 0;
}
} else {
consume_each(n_read);
}
break;
default:
throw std::runtime_error("repack_bits_bb: unrecognized endianness value.");
}
return n_written;
}
} /* namespace blocks */
} /* namespace gr */
|