blob: 02481369d000c77203739923c7515e208cb58905 (
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
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#ifndef RBD_MIRROR_IMAGE_REPLAYER_CLOSE_IMAGE_REQUEST_H
#define RBD_MIRROR_IMAGE_REPLAYER_CLOSE_IMAGE_REQUEST_H
#include "include/int_types.h"
#include "librbd/ImageCtx.h"
#include <string>
class Context;
namespace librbd { class ImageCtx; }
namespace rbd {
namespace mirror {
namespace image_replayer {
template <typename ImageCtxT = librbd::ImageCtx>
class CloseImageRequest {
public:
static CloseImageRequest* create(ImageCtxT **image_ctx, Context *on_finish) {
return new CloseImageRequest(image_ctx, on_finish);
}
CloseImageRequest(ImageCtxT **image_ctx, Context *on_finish);
void send();
private:
/**
* @verbatim
*
* <start>
* |
* v
* CLOSE_IMAGE
* |
* v
* <finish>
*
* @endverbatim
*/
ImageCtxT **m_image_ctx;
Context *m_on_finish;
void close_image();
void handle_close_image(int r);
};
} // namespace image_replayer
} // namespace mirror
} // namespace rbd
extern template class rbd::mirror::image_replayer::CloseImageRequest<librbd::ImageCtx>;
#endif // RBD_MIRROR_IMAGE_REPLAYER_CLOSE_IMAGE_REQUEST_H
|