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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
/*
* Ceph distributed storage system
*
* Copyright (C) 2013, 2014 Cloudwatt <libre.licensing@cloudwatt.com>
* Copyright (C) 2014 Red Hat <contact@redhat.com>
*
* Author: Loic Dachary <loic@dachary.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
*/
#ifndef CEPH_ERASURE_CODE_JERASURE_H
#define CEPH_ERASURE_CODE_JERASURE_H
#include "erasure-code/ErasureCode.h"
#define DEFAULT_RULESET_ROOT "default"
#define DEFAULT_RULESET_FAILURE_DOMAIN "host"
class ErasureCodeJerasure : public ErasureCode {
public:
int k;
std::string DEFAULT_K;
int m;
std::string DEFAULT_M;
int w;
std::string DEFAULT_W;
const char *technique;
string ruleset_root;
string ruleset_failure_domain;
bool per_chunk_alignment;
explicit ErasureCodeJerasure(const char *_technique) :
k(0),
DEFAULT_K("2"),
m(0),
DEFAULT_M("1"),
w(0),
DEFAULT_W("8"),
technique(_technique),
ruleset_root(DEFAULT_RULESET_ROOT),
ruleset_failure_domain(DEFAULT_RULESET_FAILURE_DOMAIN),
per_chunk_alignment(false)
{}
virtual ~ErasureCodeJerasure() {}
virtual int create_ruleset(const string &name,
CrushWrapper &crush,
ostream *ss) const;
virtual unsigned int get_chunk_count() const {
return k + m;
}
virtual unsigned int get_data_chunk_count() const {
return k;
}
virtual unsigned int get_chunk_size(unsigned int object_size) const;
virtual int encode_chunks(const set<int> &want_to_encode,
map<int, bufferlist> *encoded);
virtual int decode_chunks(const set<int> &want_to_read,
const map<int, bufferlist> &chunks,
map<int, bufferlist> *decoded);
virtual int init(ErasureCodeProfile &profile, ostream *ss);
virtual void jerasure_encode(char **data,
char **coding,
int blocksize) = 0;
virtual int jerasure_decode(int *erasures,
char **data,
char **coding,
int blocksize) = 0;
virtual unsigned get_alignment() const = 0;
virtual void prepare() = 0;
static bool is_prime(int value);
protected:
virtual int parse(ErasureCodeProfile &profile, ostream *ss);
};
class ErasureCodeJerasureReedSolomonVandermonde : public ErasureCodeJerasure {
public:
int *matrix;
ErasureCodeJerasureReedSolomonVandermonde() :
ErasureCodeJerasure("reed_sol_van"),
matrix(0)
{
DEFAULT_K = "7";
DEFAULT_M = "3";
DEFAULT_W = "8";
}
virtual ~ErasureCodeJerasureReedSolomonVandermonde() {
if (matrix)
free(matrix);
}
virtual void jerasure_encode(char **data,
char **coding,
int blocksize);
virtual int jerasure_decode(int *erasures,
char **data,
char **coding,
int blocksize);
virtual unsigned get_alignment() const;
virtual void prepare();
private:
virtual int parse(ErasureCodeProfile &profile, ostream *ss);
};
class ErasureCodeJerasureReedSolomonRAID6 : public ErasureCodeJerasure {
public:
int *matrix;
ErasureCodeJerasureReedSolomonRAID6() :
ErasureCodeJerasure("reed_sol_r6_op"),
matrix(0)
{
DEFAULT_K = "7";
DEFAULT_W = "8";
}
virtual ~ErasureCodeJerasureReedSolomonRAID6() {
if (matrix)
free(matrix);
}
virtual void jerasure_encode(char **data,
char **coding,
int blocksize);
virtual int jerasure_decode(int *erasures,
char **data,
char **coding,
int blocksize);
virtual unsigned get_alignment() const;
virtual void prepare();
private:
virtual int parse(ErasureCodeProfile &profile, ostream *ss);
};
#define DEFAULT_PACKETSIZE "2048"
class ErasureCodeJerasureCauchy : public ErasureCodeJerasure {
public:
int *bitmatrix;
int **schedule;
int packetsize;
explicit ErasureCodeJerasureCauchy(const char *technique) :
ErasureCodeJerasure(technique),
bitmatrix(0),
schedule(0)
{
DEFAULT_K = "7";
DEFAULT_M = "3";
DEFAULT_W = "8";
}
virtual ~ErasureCodeJerasureCauchy() {
if (bitmatrix)
free(bitmatrix);
if (schedule)
free(schedule);
}
virtual void jerasure_encode(char **data,
char **coding,
int blocksize);
virtual int jerasure_decode(int *erasures,
char **data,
char **coding,
int blocksize);
virtual unsigned get_alignment() const;
void prepare_schedule(int *matrix);
private:
virtual int parse(ErasureCodeProfile &profile, ostream *ss);
};
class ErasureCodeJerasureCauchyOrig : public ErasureCodeJerasureCauchy {
public:
ErasureCodeJerasureCauchyOrig() :
ErasureCodeJerasureCauchy("cauchy_orig")
{}
virtual void prepare();
};
class ErasureCodeJerasureCauchyGood : public ErasureCodeJerasureCauchy {
public:
ErasureCodeJerasureCauchyGood() :
ErasureCodeJerasureCauchy("cauchy_good")
{}
virtual void prepare();
};
class ErasureCodeJerasureLiberation : public ErasureCodeJerasure {
public:
int *bitmatrix;
int **schedule;
int packetsize;
explicit ErasureCodeJerasureLiberation(const char *technique = "liberation") :
ErasureCodeJerasure(technique),
bitmatrix(0),
schedule(0)
{
DEFAULT_K = "2";
DEFAULT_M = "2";
DEFAULT_W = "7";
}
virtual ~ErasureCodeJerasureLiberation();
virtual void jerasure_encode(char **data,
char **coding,
int blocksize);
virtual int jerasure_decode(int *erasures,
char **data,
char **coding,
int blocksize);
virtual unsigned get_alignment() const;
virtual bool check_k(ostream *ss) const;
virtual bool check_w(ostream *ss) const;
virtual bool check_packetsize_set(ostream *ss) const;
virtual bool check_packetsize(ostream *ss) const;
virtual int revert_to_default(ErasureCodeProfile &profile,
ostream *ss);
virtual void prepare();
private:
virtual int parse(ErasureCodeProfile &profile, ostream *ss);
};
class ErasureCodeJerasureBlaumRoth : public ErasureCodeJerasureLiberation {
public:
ErasureCodeJerasureBlaumRoth() :
ErasureCodeJerasureLiberation("blaum_roth")
{
}
virtual bool check_w(ostream *ss) const;
virtual void prepare();
};
class ErasureCodeJerasureLiber8tion : public ErasureCodeJerasureLiberation {
public:
ErasureCodeJerasureLiber8tion() :
ErasureCodeJerasureLiberation("liber8tion")
{
DEFAULT_K = "2";
DEFAULT_M = "2";
DEFAULT_W = "8";
}
virtual void prepare();
private:
virtual int parse(ErasureCodeProfile &profile, ostream *ss);
};
#endif
|