blob: b26645138425bfd013157626616aef0e3a29efa1 (
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
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#ifndef RBD_MIRROR_IMAGE_REPLAYER_GET_MIRROR_IMAGE_ID_REQUEST_H
#define RBD_MIRROR_IMAGE_REPLAYER_GET_MIRROR_IMAGE_ID_REQUEST_H
#include "include/buffer.h"
#include "include/rados/librados_fwd.hpp"
#include <string>
namespace librbd { struct ImageCtx; }
struct Context;
namespace rbd {
namespace mirror {
namespace image_replayer {
template <typename ImageCtxT = librbd::ImageCtx>
class GetMirrorImageIdRequest {
public:
static GetMirrorImageIdRequest *create(librados::IoCtx &io_ctx,
const std::string &global_image_id,
std::string *image_id,
Context *on_finish) {
return new GetMirrorImageIdRequest(io_ctx, global_image_id, image_id,
on_finish);
}
GetMirrorImageIdRequest(librados::IoCtx &io_ctx,
const std::string &global_image_id,
std::string *image_id,
Context *on_finish)
: m_io_ctx(io_ctx), m_global_image_id(global_image_id),
m_image_id(image_id), m_on_finish(on_finish) {
}
void send();
private:
/**
* @verbatim
*
* <start>
* |
* v
* GET_IMAGE_ID
* |
* v
* <finish>
* @endverbatim
*/
librados::IoCtx &m_io_ctx;
std::string m_global_image_id;
std::string *m_image_id;
Context *m_on_finish;
bufferlist m_out_bl;
void get_image_id();
void handle_get_image_id(int r);
void finish(int r);
};
} // namespace image_replayer
} // namespace mirror
} // namespace rbd
extern template class rbd::mirror::image_replayer::GetMirrorImageIdRequest<librbd::ImageCtx>;
#endif // RBD_MIRROR_IMAGE_REPLAYER_GET_MIRROR_IMAGE_ID_REQUEST_H
|