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
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#include "test/librados_test_stub/TestMemRadosClient.h"
#include "test/librados_test_stub/TestMemCluster.h"
#include "test/librados_test_stub/TestMemIoCtxImpl.h"
#include <errno.h>
#include <sstream>
namespace librados {
TestMemRadosClient::TestMemRadosClient(CephContext *cct,
TestMemCluster *test_mem_cluster)
: TestRadosClient(cct, test_mem_cluster->get_watch_notify()),
m_mem_cluster(test_mem_cluster) {
m_mem_cluster->allocate_client(&m_nonce, &m_global_id);
}
TestMemRadosClient::~TestMemRadosClient() {
m_mem_cluster->deallocate_client(m_nonce);
}
TestIoCtxImpl *TestMemRadosClient::create_ioctx(int64_t pool_id,
const std::string &pool_name) {
return new TestMemIoCtxImpl(this, pool_id, pool_name,
m_mem_cluster->get_pool(pool_name));
}
void TestMemRadosClient::object_list(int64_t pool_id,
std::list<librados::TestRadosClient::Object> *list) {
list->clear();
auto pool = m_mem_cluster->get_pool(pool_id);
if (pool != nullptr) {
std::shared_lock file_locker{pool->file_lock};
for (auto &file_pair : pool->files) {
Object obj;
obj.oid = file_pair.first.name;
list->push_back(obj);
}
}
}
int TestMemRadosClient::pool_create(const std::string &pool_name) {
if (is_blocklisted()) {
return -EBLOCKLISTED;
}
return m_mem_cluster->pool_create(pool_name);
}
int TestMemRadosClient::pool_delete(const std::string &pool_name) {
if (is_blocklisted()) {
return -EBLOCKLISTED;
}
return m_mem_cluster->pool_delete(pool_name);
}
int TestMemRadosClient::pool_get_base_tier(int64_t pool_id, int64_t* base_tier) {
// TODO
*base_tier = pool_id;
return 0;
}
int TestMemRadosClient::pool_list(std::list<std::pair<int64_t, std::string> >& v) {
return m_mem_cluster->pool_list(v);
}
int64_t TestMemRadosClient::pool_lookup(const std::string &pool_name) {
return m_mem_cluster->pool_lookup(pool_name);
}
int TestMemRadosClient::pool_reverse_lookup(int64_t id, std::string *name) {
return m_mem_cluster->pool_reverse_lookup(id, name);
}
int TestMemRadosClient::watch_flush() {
get_watch_notify()->flush(this);
return 0;
}
bool TestMemRadosClient::is_blocklisted() const {
return m_mem_cluster->is_blocklisted(m_nonce);
}
int TestMemRadosClient::blocklist_add(const std::string& client_address,
uint32_t expire_seconds) {
if (is_blocklisted()) {
return -EBLOCKLISTED;
}
// extract the nonce to use as a unique key to the client
auto idx = client_address.find("/");
if (idx == std::string::npos || idx + 1 >= client_address.size()) {
return -EINVAL;
}
std::stringstream nonce_ss(client_address.substr(idx + 1));
uint32_t nonce;
nonce_ss >> nonce;
if (!nonce_ss) {
return -EINVAL;
}
m_mem_cluster->blocklist(nonce);
return 0;
}
void TestMemRadosClient::transaction_start(const std::string& nspace,
const std::string &oid) {
m_mem_cluster->transaction_start({nspace, oid});
}
void TestMemRadosClient::transaction_finish(const std::string& nspace,
const std::string &oid) {
m_mem_cluster->transaction_finish({nspace, oid});
}
} // namespace librados
|