blob: 760e9b1e32e4a1831b5d972e4ce8d5bdd305015f (
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
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#include "librbd/operation/MetadataSetRequest.h"
#include "common/dout.h"
#include "common/errno.h"
#include "librbd/ImageCtx.h"
#define dout_subsys ceph_subsys_rbd
#undef dout_prefix
#define dout_prefix *_dout << "librbd::MetadataSetRequest: "
namespace librbd {
namespace operation {
template <typename I>
MetadataSetRequest<I>::MetadataSetRequest(I &image_ctx,
Context *on_finish,
const std::string &key,
const std::string &value)
: Request<I>(image_ctx, on_finish), m_key(key), m_value(value) {
}
template <typename I>
void MetadataSetRequest<I>::send_op() {
send_metadata_set();
}
template <typename I>
bool MetadataSetRequest<I>::should_complete(int r) {
I &image_ctx = this->m_image_ctx;
CephContext *cct = image_ctx.cct;
ldout(cct, 20) << this << " " << __func__ << " r=" << r << dendl;
if (r < 0) {
lderr(cct) << "encountered error: " << cpp_strerror(r) << dendl;
}
return true;
}
template <typename I>
void MetadataSetRequest<I>::send_metadata_set() {
I &image_ctx = this->m_image_ctx;
ceph_assert(image_ctx.owner_lock.is_locked());
CephContext *cct = image_ctx.cct;
ldout(cct, 20) << this << " " << __func__ << dendl;
m_data[m_key].append(m_value);
librados::ObjectWriteOperation op;
cls_client::metadata_set(&op, m_data);
librados::AioCompletion *comp = this->create_callback_completion();
int r = image_ctx.md_ctx.aio_operate(image_ctx.header_oid, comp, &op);
ceph_assert(r == 0);
comp->release();
}
} // namespace operation
} // namespace librbd
template class librbd::operation::MetadataSetRequest<librbd::ImageCtx>;
|