forked from aicodix/code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbose_chaudhuri_hocquenghem_decoder.hh
184 lines (176 loc) · 5.34 KB
/
bose_chaudhuri_hocquenghem_decoder.hh
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
/*
Bose Chaudhuri Hocquenghem Decoder
Copyright 2018 Ahmet Inan <[email protected]>
*/
#pragma once
#include "reed_solomon_error_correction.hh"
#include "bitman.hh"
namespace CODE {
template <int ROOTS, int FCR, int MSG, typename GF>
class BoseChaudhuriHocquenghemDecoder
{
public:
typedef typename GF::value_type value_type;
typedef typename GF::ValueType ValueType;
typedef typename GF::IndexType IndexType;
static const int NR = ROOTS;
static const int N = GF::N, K = MSG, NP = N - K;
private:
ReedSolomonErrorCorrection<NR, FCR, GF> algorithm;
void update_syndromes(const uint8_t *poly, ValueType *syndromes, int begin, int end)
{
for (int j = begin; j < end; ++j) {
ValueType coeff(get_be_bit(poly, j));
IndexType root(FCR), pe(1);
for (int i = 0; i < NR; ++i) {
syndromes[i] = fma(root, syndromes[i], coeff);
root *= pe;
}
}
}
public:
int compute_syndromes(const uint8_t *data, const uint8_t *parity, ValueType *syndromes, int data_len = K)
{
assert(0 < data_len && data_len <= K);
// $syndromes_i = code(pe^{FCR+i})$
ValueType coeff(get_be_bit(data, 0));
for (int i = 0; i < NR; ++i)
syndromes[i] = coeff;
update_syndromes(data, syndromes, 1, data_len);
update_syndromes(parity, syndromes, 0, NP);
int nonzero = 0;
for (int i = 0; i < NR; ++i)
nonzero += !!syndromes[i];
return nonzero;
}
int compute_syndromes(const uint8_t *data, const uint8_t *parity, value_type *syndromes, int data_len = K)
{
return compute_syndromes(data, parity, reinterpret_cast<ValueType *>(syndromes), data_len);
}
int operator()(uint8_t *data, uint8_t *parity, value_type *erasures = 0, int erasures_count = 0, int data_len = K)
{
assert(0 <= erasures_count && erasures_count <= NR);
assert(0 < data_len && data_len <= K);
if (0) {
for (int i = 0; i < erasures_count; ++i) {
int idx = (int)erasures[i];
if (idx < data_len)
set_be_bit(data, idx, 0);
else
set_be_bit(parity, idx-data_len, 0);
}
}
if (erasures_count && data_len < K) {
for (int i = 0; i < erasures_count; ++i)
erasures[i] += K - data_len;
}
ValueType syndromes[NR];
if (!compute_syndromes(data, parity, syndromes, data_len))
return 0;
IndexType locations[NR];
ValueType magnitudes[NR];
int count = algorithm(syndromes, locations, magnitudes, reinterpret_cast<IndexType *>(erasures), erasures_count);
if (count <= 0)
return count;
for (int i = 0; i < count; ++i)
if ((int)locations[i] < K - data_len)
return -1;
for (int i = 0; i < count; ++i)
if (1 < (int)magnitudes[i])
return -1;
for (int i = 0; i < count; ++i) {
int idx = (int)locations[i] + data_len - K;
bool err = (bool)magnitudes[i];
if (idx < data_len)
xor_be_bit(data, idx, err);
else
xor_be_bit(parity, idx-data_len, err);
}
int corrections_count = 0;
for (int i = 0; i < count; ++i)
corrections_count += !!magnitudes[i];
return corrections_count;
}
};
template <int ROOTS, int FCR, int MSG, typename GF>
class BoseChaudhuriHocquenghemDecoderReference
{
public:
typedef typename GF::value_type value_type;
typedef typename GF::ValueType ValueType;
typedef typename GF::IndexType IndexType;
static const int NR = ROOTS;
static const int N = GF::N, K = MSG, NP = N - K;
private:
ReedSolomonErrorCorrection<NR, FCR, GF> algorithm;
void update_syndromes(const ValueType *poly, ValueType *syndromes, int begin, int end)
{
for (int j = begin; j < end; ++j) {
ValueType coeff(poly[j]);
IndexType root(FCR), pe(1);
for (int i = 0; i < NR; ++i) {
syndromes[i] = fma(root, syndromes[i], coeff);
root *= pe;
}
}
}
public:
int compute_syndromes(const ValueType *data, const ValueType *parity, ValueType *syndromes, int data_len = K)
{
assert(0 < data_len && data_len <= K);
// $syndromes_i = code(pe^{FCR+i})$
ValueType coeff(data[0]);
for (int i = 0; i < NR; ++i)
syndromes[i] = coeff;
update_syndromes(data, syndromes, 1, data_len);
update_syndromes(parity, syndromes, 0, NP);
int nonzero = 0;
for (int i = 0; i < NR; ++i)
nonzero += !!syndromes[i];
return nonzero;
}
int operator()(ValueType *data, ValueType *parity, IndexType *erasures = 0, int erasures_count = 0, int data_len = K)
{
assert(0 <= erasures_count && erasures_count <= NR);
assert(0 < data_len && data_len <= K);
if (0) {
for (int i = 0; i < erasures_count; ++i) {
int idx = (int)erasures[i];
if (idx < data_len)
data[idx] = ValueType(0);
else
parity[idx-data_len] = ValueType(0);
}
}
if (erasures_count && data_len < K) {
for (int i = 0; i < erasures_count; ++i)
erasures[i] = IndexType((int)erasures[i] + K - data_len);
}
ValueType syndromes[NR];
if (!compute_syndromes(data, parity, syndromes, data_len))
return 0;
IndexType locations[NR];
ValueType magnitudes[NR];
int count = algorithm(syndromes, locations, magnitudes, erasures, erasures_count);
if (count <= 0)
return count;
for (int i = 0; i < count; ++i)
if ((int)locations[i] < K - data_len)
return -1;
for (int i = 0; i < count; ++i)
if (1 < (int)magnitudes[i])
return -1;
for (int i = 0; i < count; ++i) {
int idx = (int)locations[i] + data_len - K;
if (idx < data_len)
data[idx] += magnitudes[i];
else
parity[idx-data_len] += magnitudes[i];
}
int corrections_count = 0;
for (int i = 0; i < count; ++i)
corrections_count += !!magnitudes[i];
return corrections_count;
}
};
}