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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
//! A dynamic collection of I/O buffers pre-registered with the kernel.
//!
//! This module provides [`FixedBufPool`], a collection that implements
//! dynamic management of sets of interchangeable memory buffers
//! registered with the kernel for `io-uring` operations. Asynchronous
//! rotation of the buffers shared by multiple tasks is also supported
//! by [`FixedBufPool`].
//!
//! [`FixedBufPool`]: self::FixedBufPool
use FixedBuf;
use plumbing;
use crateIoBufMut;
use crateCONTEXT;
use pin;
use Notify;
use RefCell;
use io;
use Rc;
use Arc;
/// A dynamic collection of I/O buffers pre-registered with the kernel.
///
/// `FixedBufPool` allows the application to manage a collection of buffers
/// allocated in memory, that can be registered in the current `tokio-uring`
/// context using the [`register`] method. Unlike [`FixedBufRegistry`],
/// individual buffers are not retrieved by index; instead, an available
/// buffer matching a specified capacity can be retrieved with the [`try_next`]
/// method. In asynchronous contexts, the [`next`] method can be used to wait
/// until such a buffer becomes available.
/// This allows some flexibility in managing sets of buffers with
/// different capacity tiers. The need to maintain lists of free buffers,
/// however, imposes additional runtime overhead.
///
/// A `FixedBufPool` value is a lightweight handle for a collection of
/// allocated buffers. Cloning of a `FixedBufPool` creates a new reference to
/// the same collection of buffers.
///
/// The buffers of the collection are not deallocated until:
/// - all `FixedBufPool` references to the collection have been dropped;
/// - all [`FixedBuf`] handles to individual buffers in the collection have
/// been dropped, including the buffer handles owned by any I/O operations
/// in flight;
/// - The `tokio-uring` [`Runtime`] the buffers are registered with
/// has been dropped.
///
/// [`register`]: Self::register
/// [`try_next`]: Self::try_next
/// [`next`]: Self::next
/// [`FixedBufRegistry`]: super::FixedBufRegistry
/// [`Runtime`]: crate::Runtime
/// [`FixedBuf`]: super::FixedBuf
///
/// # Examples
///
/// ```
/// use tokio_uring_xitca::buf::fixed::FixedBufPool;
/// use tokio_uring_xitca::buf::IoBuf;
/// use std::iter;
/// use std::mem;
///
/// # #[allow(non_snake_case)]
/// # fn main() -> Result<(), std::io::Error> {
/// # use nix::sys::resource::{getrlimit, Resource};
/// # let (memlock_limit, _) = getrlimit(Resource::RLIMIT_MEMLOCK)?;
/// # let BUF_SIZE_LARGE = memlock_limit as usize / 8;
/// # let BUF_SIZE_SMALL = memlock_limit as usize / 16;
/// tokio_uring_xitca::start(async {
/// let pool = FixedBufPool::new(
/// iter::once(Vec::with_capacity(BUF_SIZE_LARGE))
/// .chain(iter::repeat_with(|| Vec::with_capacity(BUF_SIZE_SMALL)).take(2))
/// );
///
/// pool.register()?;
///
/// let buf = pool.try_next(BUF_SIZE_LARGE).unwrap();
/// assert_eq!(buf.bytes_total(), BUF_SIZE_LARGE);
/// let next = pool.try_next(BUF_SIZE_LARGE);
/// assert!(next.is_none());
/// let buf1 = pool.try_next(BUF_SIZE_SMALL).unwrap();
/// assert_eq!(buf1.bytes_total(), BUF_SIZE_SMALL);
/// let buf2 = pool.try_next(BUF_SIZE_SMALL).unwrap();
/// assert_eq!(buf2.bytes_total(), BUF_SIZE_SMALL);
/// let next = pool.try_next(BUF_SIZE_SMALL);
/// assert!(next.is_none());
/// mem::drop(buf);
/// let buf = pool.try_next(BUF_SIZE_LARGE).unwrap();
/// assert_eq!(buf.bytes_total(), BUF_SIZE_LARGE);
///
/// Ok(())
/// })
/// # }
/// ```