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
// Copyright 2021 John Spray All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License
use futures::{FutureExt, Stream};
use std::ffi::CString;
use std::future::Future;
use std::os::raw::c_char;
use std::pin::Pin;
use std::task::{Context, Poll};
use crate::ceph::IoCtx;
use crate::completion::with_completion;
use crate::error::RadosResult;
use crate::rados::rados_aio_read;
const DEFAULT_BUFFER_SIZE: usize = 4 * 1024 * 1024;
const DEFAULT_CONCURRENCY: usize = 2;
pub struct ReadStream<'a> {
ioctx: &'a IoCtx,
// Size of each RADOS read op
buffer_size: usize,
// Number of concurrent RADOS read ops to issue
concurrency: usize,
// Caller's hint as to the object size (not required to be accurate)
size_hint: Option<u64>,
in_flight: Vec<IOSlot<'a>>,
// Counter for how many bytes we have issued reads for
next: u64,
// Counter for how many bytes we have yielded from poll_next()
// (i.e. the size of the object so far)
yielded: u64,
object_name: String,
// Flag is set when we see a short read - means do not issue any more IOs,
// and return Poll::Ready(None) on next poll
done: bool,
}
unsafe impl Send for ReadStream<'_> {}
impl<'a> ReadStream<'a> {
pub fn new(
ioctx: &'a IoCtx,
object_name: &str,
buffer_size: Option<usize>,
concurrency: Option<usize>,
size_hint: Option<u64>,
) -> Self {
let mut inst = Self {
ioctx,
buffer_size: buffer_size.unwrap_or(DEFAULT_BUFFER_SIZE),
concurrency: concurrency.unwrap_or(DEFAULT_CONCURRENCY),
size_hint,
in_flight: Vec::new(),
next: 0,
yielded: 0,
object_name: object_name.to_string(),
done: false,
};
// Start IOs early, don't wait for the first poll.
inst.maybe_issue();
inst
}
}
enum IOSlot<'a> {
Pending(Pin<Box<dyn Future<Output = (Vec<u8>, RadosResult<u32>)> + 'a>>),
Complete((Vec<u8>, RadosResult<u32>)),
}
impl<'a> ReadStream<'a> {
fn maybe_issue(&mut self) {
// Issue reads if any of these are true:
// - Nothing is in flight
// - No size bound, and in flight < concurrency
// - A size bound, and we're within it, and in flight < concurrency
// - A size bound, and it has been disproved, and in flight < concurrency
while !self.done
&& (self.in_flight.is_empty()
|| (((self.size_hint.is_some()
&& (self.next < self.size_hint.unwrap()
|| self.yielded > self.size_hint.unwrap()))
|| self.size_hint.is_none())
&& (self.in_flight.len() < self.concurrency)))
{
let read_at = self.next;
self.next += self.buffer_size as u64;
// Inefficient: copying out string to dodge ownership issues for the moment
let object_name_bg = self.object_name.clone();
// Grab items for use inside async{} block to avoid referencing self from in there.
let ioctx = self.ioctx;
let read_size = self.buffer_size;
// Use an async block to tie together the lifetime of a Vec and the Completion that uses it
let fut = async move {
let obj_name_str = CString::new(object_name_bg).expect("CString error");
let mut fill_buffer = Vec::with_capacity(read_size);
let completion = with_completion(ioctx, |c| unsafe {
rados_aio_read(
ioctx.ioctx,
obj_name_str.as_ptr(),
c,
fill_buffer.as_mut_ptr() as *mut c_char,
fill_buffer.capacity(),
read_at,
)
})
.expect("Can't issue read");
let result = completion.await;
if let Ok(rval) = &result {
unsafe {
let len = *rval as usize;
assert!(len <= fill_buffer.capacity());
fill_buffer.set_len(len);
}
}
(fill_buffer, result)
};
let mut fut = Box::pin(fut);
let slot = match fut.as_mut().now_or_never() {
Some(result) => IOSlot::Complete(result),
None => IOSlot::Pending(fut),
};
self.in_flight.push(slot);
}
}
}
impl<'a> Stream for ReadStream<'a> {
type Item = RadosResult<Vec<u8>>;
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
if self.done {
// Our last read result was a short one: we know nothing else needs doing.
return Poll::Ready(None);
}
self.maybe_issue();
// Poll next read: maybe return pending if none is ready
let next_op = &mut self.in_flight[0];
let (buffer, result) = match next_op {
IOSlot::Complete(_) => {
let complete = self.in_flight.remove(0);
if let IOSlot::Complete(c) = complete {
c
} else {
panic!("Cannot happen")
}
}
IOSlot::Pending(fut) => match fut.as_mut().poll(cx) {
Poll::Pending => return Poll::Pending,
Poll::Ready(r) => {
self.in_flight.remove(0);
r
}
},
};
// A result is ready, handle it.
let r = match result {
Ok(length) => {
if (length as usize) < self.buffer_size {
// Cancel outstanding ops
self.in_flight.clear();
// Flag to return Ready(None) on next call to poll.
self.done = true;
}
self.yielded += buffer.len() as u64;
Poll::Ready(Some(Ok(buffer)))
}
Err(e) => Poll::Ready(Some(Err(e))),
};
self.maybe_issue();
r
}
}