]> git.proxmox.com Git - ceph.git/blame - ceph/src/librbd/io/AioCompletion.h
import 15.2.0 Octopus source
[ceph.git] / ceph / src / librbd / io / AioCompletion.h
CommitLineData
7c673cae
FG
1// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2// vim: ts=8 sw=2 smarttab
3
4#ifndef CEPH_LIBRBD_IO_AIO_COMPLETION_H
5#define CEPH_LIBRBD_IO_AIO_COMPLETION_H
6
11fdf7f2 7#include "common/ceph_time.h"
9f95a23c 8#include "include/common_fwd.h"
7c673cae
FG
9#include "include/Context.h"
10#include "include/utime.h"
11#include "include/rbd/librbd.hpp"
12
7c673cae 13#include "librbd/ImageCtx.h"
31f18b77 14#include "librbd/io/AsyncOperation.h"
7c673cae
FG
15#include "librbd/io/ReadResult.h"
16#include "librbd/io/Types.h"
17
9f95a23c
TL
18#include <atomic>
19#include <condition_variable>
20#include <mutex>
21
7c673cae
FG
22
23namespace librbd {
24namespace io {
25
26
27/**
28 * AioCompletion is the overall completion for a single
29 * rbd I/O request. It may be composed of many AioObjectRequests,
30 * which each go to a single object.
31 *
32 * The retrying of individual requests is handled at a lower level,
33 * so all AioCompletion cares about is the count of outstanding
34 * requests. The number of expected individual requests should be
35 * set initially using set_request_count() prior to issuing the
36 * requests. This ensures that the completion will not be completed
37 * within the caller's thread of execution (instead via a librados
38 * context or via a thread pool context for cache read hits).
39 */
40struct AioCompletion {
41 typedef enum {
42 AIO_STATE_PENDING = 0,
43 AIO_STATE_CALLBACK,
44 AIO_STATE_COMPLETE,
45 } aio_state_t;
46
9f95a23c
TL
47 mutable std::mutex lock;
48 std::condition_variable cond;
49
50 callback_t complete_cb = nullptr;
51 void *complete_arg = nullptr;
52 rbd_completion_t rbd_comp = nullptr;
53
54 /// note: only using atomic for built-in memory barrier
55 std::atomic<aio_state_t> state{AIO_STATE_PENDING};
56
57 std::atomic<ssize_t> rval{0};
58 std::atomic<int> error_rval{0};
59 std::atomic<uint32_t> ref{1};
60 std::atomic<uint32_t> pending_count{0}; ///< number of requests/blocks
61 std::atomic<bool> released{false};
62
63 ImageCtx *ictx = nullptr;
11fdf7f2 64 coarse_mono_time start_time;
9f95a23c 65 aio_type_t aio_type = AIO_TYPE_NONE;
7c673cae
FG
66
67 ReadResult read_result;
68
69 AsyncOperation async_op;
70
9f95a23c
TL
71 bool event_notify = false;
72 bool was_armed = false;
73 bool external_callback = false;
7c673cae
FG
74
75 template <typename T, void (T::*MF)(int)>
76 static void callback_adapter(completion_t cb, void *arg) {
77 AioCompletion *comp = reinterpret_cast<AioCompletion *>(cb);
78 T *t = reinterpret_cast<T *>(arg);
79 (t->*MF)(comp->get_return_value());
80 comp->release();
81 }
82
83 static AioCompletion *create(void *cb_arg, callback_t cb_complete,
84 rbd_completion_t rbd_comp) {
85 AioCompletion *comp = new AioCompletion();
86 comp->set_complete_cb(cb_arg, cb_complete);
87 comp->rbd_comp = (rbd_comp != nullptr ? rbd_comp : comp);
88 return comp;
89 }
90
91 template <typename T, void (T::*MF)(int) = &T::complete>
92 static AioCompletion *create(T *obj) {
93 AioCompletion *comp = new AioCompletion();
94 comp->set_complete_cb(obj, &callback_adapter<T, MF>);
95 comp->rbd_comp = comp;
96 return comp;
97 }
98
11fdf7f2
TL
99 template <typename T, void (T::*MF)(int) = &T::complete>
100 static AioCompletion *create_and_start(T *obj, ImageCtx *image_ctx,
101 aio_type_t type) {
494da23a
TL
102 AioCompletion *comp = create<T, MF>(obj);
103 comp->init_time(image_ctx, type);
7c673cae
FG
104 comp->start_op();
105 return comp;
106 }
107
9f95a23c 108 AioCompletion() {
7c673cae
FG
109 }
110
111 ~AioCompletion() {
112 }
113
114 int wait_for_complete();
115
9f95a23c 116 void finalize();
7c673cae
FG
117
118 inline bool is_initialized(aio_type_t type) const {
9f95a23c 119 std::unique_lock<std::mutex> locker(lock);
7c673cae
FG
120 return ((ictx != nullptr) && (aio_type == type));
121 }
122 inline bool is_started() const {
9f95a23c 123 std::unique_lock<std::mutex> locker(lock);
7c673cae
FG
124 return async_op.started();
125 }
126
9f95a23c
TL
127 void block(CephContext* cct);
128 void unblock(CephContext* cct);
129
7c673cae 130 void init_time(ImageCtx *i, aio_type_t t);
494da23a 131 void start_op();
7c673cae
FG
132 void fail(int r);
133
134 void complete();
135
136 void set_complete_cb(void *cb_arg, callback_t cb) {
137 complete_cb = cb;
138 complete_arg = cb_arg;
139 }
140
141 void set_request_count(uint32_t num);
142 void add_request() {
11fdf7f2 143 ceph_assert(pending_count > 0);
7c673cae
FG
144 get();
145 }
146 void complete_request(ssize_t r);
147
7c673cae
FG
148 bool is_complete();
149
150 ssize_t get_return_value();
151
152 void get() {
11fdf7f2 153 ceph_assert(ref > 0);
9f95a23c 154 ++ref;
7c673cae
FG
155 }
156 void release() {
9f95a23c
TL
157 bool previous_released = released.exchange(true);
158 ceph_assert(!previous_released);
159 put();
7c673cae
FG
160 }
161 void put() {
9f95a23c
TL
162 uint32_t previous_ref = ref--;
163 ceph_assert(previous_ref > 0);
164
165 if (previous_ref == 1) {
7c673cae
FG
166 delete this;
167 }
168 }
169
7c673cae 170 void set_event_notify(bool s) {
7c673cae
FG
171 event_notify = s;
172 }
173
174 void *get_arg() {
175 return complete_arg;
176 }
9f95a23c
TL
177
178private:
179 void queue_complete();
180 void complete_external_callback();
181 void complete_event_socket();
182
7c673cae
FG
183};
184
185class C_AioRequest : public Context {
186public:
187 C_AioRequest(AioCompletion *completion) : m_completion(completion) {
188 m_completion->add_request();
189 }
190 ~C_AioRequest() override {}
191 void finish(int r) override {
192 m_completion->complete_request(r);
193 }
194protected:
195 AioCompletion *m_completion;
196};
197
198} // namespace io
199} // namespace librbd
200
201#endif // CEPH_LIBRBD_IO_AIO_COMPLETION_H