blob: f050040c1562263577c01bc0e828e6fbb52c0366 (
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
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#include "KeyValueDB.h"
#ifdef WITH_LEVELDB
#include "LevelDBStore.h"
#endif
#include "MemDB.h"
#include "RocksDBStore.h"
using std::map;
using std::string;
KeyValueDB *KeyValueDB::create(CephContext *cct, const string& type,
const string& dir,
map<string,string> options,
void *p)
{
#ifdef WITH_LEVELDB
if (type == "leveldb") {
return new LevelDBStore(cct, dir);
}
#endif
if (type == "rocksdb") {
return new RocksDBStore(cct, dir, options, p);
}
if ((type == "memdb") &&
cct->check_experimental_feature_enabled("memdb")) {
return new MemDB(cct, dir, p);
}
return NULL;
}
int KeyValueDB::test_init(const string& type, const string& dir)
{
#ifdef WITH_LEVELDB
if (type == "leveldb") {
return LevelDBStore::_test_init(dir);
}
#endif
if (type == "rocksdb") {
return RocksDBStore::_test_init(dir);
}
if (type == "memdb") {
return MemDB::_test_init(dir);
}
return -EINVAL;
}
|