blob: ba54feb64e33627728a9f4a97d4a298ff521fb73 (
plain)
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
|
/*
* Ceph - scalable distributed file system
*
* Copyright (C) 2014 CERN (Switzerland)
*
* Author: Andreas-Joachim Peters <Andreas.Joachim.Peters@cern.ch>
*
* 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.
*
*/
/**
* @file ErasureCodePluginIsa.cc
*
* @brief Erasure Code Plug-in class wrapping the INTEL ISA-L library
*
* The factory plug-in class allows to call individual encoding techniques.
* The INTEL ISA-L library provides two pre-defined encoding matrices
* (cauchy, reed_sol_van = default).
*/
// -----------------------------------------------------------------------------
#include "ceph_ver.h"
#include "include/buffer.h"
#include "ErasureCodePluginIsa.h"
#include "ErasureCodeIsa.h"
// -----------------------------------------------------------------------------
int ErasureCodePluginIsa::factory(const std::string &directory,
ceph::ErasureCodeProfile &profile,
ceph::ErasureCodeInterfaceRef *erasure_code,
std::ostream *ss)
{
ErasureCodeIsa *interface;
std::string t;
if (profile.find("technique") == profile.end())
profile["technique"] = "reed_sol_van";
t = profile.find("technique")->second;
if ((t == "reed_sol_van")) {
interface = new ErasureCodeIsaDefault(tcache,
ErasureCodeIsaDefault::kVandermonde);
} else {
if ((t == "cauchy")) {
interface = new ErasureCodeIsaDefault(tcache,
ErasureCodeIsaDefault::kCauchy);
} else {
*ss << "technique=" << t << " is not a valid coding technique. "
<< " Choose one of the following: "
<< "reed_sol_van,"
<< "cauchy" << std::endl;
return -ENOENT;
}
}
int r = interface->init(profile, ss);
if (r) {
delete interface;
return r;
}
*erasure_code = ceph::ErasureCodeInterfaceRef(interface);
return 0;
}
// -----------------------------------------------------------------------------
const char *__erasure_code_version()
{
return CEPH_GIT_NICE_VER;
}
// -----------------------------------------------------------------------------
int __erasure_code_init(char *plugin_name, char *directory)
{
auto& instance = ceph::ErasureCodePluginRegistry::instance();
return instance.add(plugin_name, new ErasureCodePluginIsa());
}
|