use std::ffi::c_void; use std::future::Future; use std::pin::Pin; use std::ptr; use std::sync::{
atomic::{AtomicBool, Ordering},
Arc, Mutex, Weak,
}; use std::task::{Context, Poll};
use futures_util::stream::{FuturesUnordered, Stream}; use libc::c_int;
type BoxFuture<T> = Pin<Box<dyn Future<Output = T> + Send>>; type BoxAny = Box<dyn AsTaskType + Send + Sync>;
/// Return in a poll function to indicate it was ready. pubconst HYPER_POLL_READY: c_int = 0; /// Return in a poll function to indicate it is still pending. /// /// The passed in `hyper_waker` should be registered to wake up the task at /// some later point. pubconst HYPER_POLL_PENDING: c_int = 1; /// Return in a poll function indicate an error. pubconst HYPER_POLL_ERROR: c_int = 3;
/// A task executor for `hyper_task`s. pubstruct hyper_executor { /// The executor of all task futures. /// /// There should never be contention on the mutex, as it is only locked /// to drive the futures. However, we cannot guarantee proper usage from /// `hyper_executor_poll()`, which in C could potentially be called inside /// one of the stored futures. The mutex isn't re-entrant, so doing so /// would result in a deadlock, but that's better than data corruption.
driver: Mutex<FuturesUnordered<TaskFuture>>,
/// The queue of futures that need to be pushed into the `driver`. /// /// This is has a separate mutex since `spawn` could be called from inside /// a future, which would mean the driver's mutex is already locked.
spawn_queue: Mutex<Vec<TaskFuture>>,
/// This is used to track when a future calls `wake` while we are within /// `hyper_executor::poll_next`.
is_woken: Arc<ExecWaker>,
}
/// An async context for a task that contains the related waker. pubstruct hyper_context<'a>(Context<'a>);
/// A waker that is saved and used to waken a pending task. pubstruct hyper_waker {
waker: std::task::Waker,
}
/// A descriptor for what type a `hyper_task` value is. #[repr(C)] pubenum hyper_task_return_type { /// The value of this task is null (does not imply an error).
HYPER_TASK_EMPTY, /// The value of this task is `hyper_error *`.
HYPER_TASK_ERROR, /// The value of this task is `hyper_clientconn *`.
HYPER_TASK_CLIENTCONN, /// The value of this task is `hyper_response *`.
HYPER_TASK_RESPONSE, /// The value of this task is `hyper_buf *`.
HYPER_TASK_BUF,
}
let waker = futures_util::task::waker_ref(&self.is_woken); letmut cx = Context::from_waker(&waker);
loop { match Pin::new(&mut *self.driver.lock().unwrap()).poll_next(&<span style='color:red'>mut cx) {
Poll::Ready(val) => return val,
Poll::Pending => { // Check if any of the pending tasks tried to spawn // some new tasks. If so, drain into the driver and loop. ifself.drain_queue() { continue;
}
// If the driver called `wake` while we were polling, // we should poll again immediately! ifself.is_woken.0.swap(false, Ordering::SeqCst) { continue;
}
ffi_fn! { /// Creates a new task executor. fn hyper_executor_new() -> *const hyper_executor {
Arc::into_raw(hyper_executor::new())
} ?= ptr::null()
}
ffi_fn! { /// Frees an executor and any incomplete tasks still part of it. fn hyper_executor_free(exec: *const hyper_executor) {
drop(non_null!(Arc::from_raw(exec) ?= ()));
}
}
ffi_fn! { /// Push a task onto the executor. /// /// The executor takes ownership of the task, it should not be accessed /// again unless returned back to the user with `hyper_executor_poll`. fn hyper_executor_push(exec: *const hyper_executor, task: *mut hyper_task) -> hyper_code { let exec = non_null!(&*exec ?= hyper_code::HYPERE_INVALID_ARG); let task = non_null!(Box::from_raw(task) ?= hyper_code::HYPERE_INVALID_ARG);
exec.spawn(task);
hyper_code::HYPERE_OK
}
}
ffi_fn! { /// Polls the executor, trying to make progress on any tasks that have notified /// that they are ready again. /// /// If ready, returns a task from the executor that has completed. /// /// If there are no ready tasks, this returns `NULL`. fn hyper_executor_poll(exec: *const hyper_executor) -> *mut hyper_task { let exec = non_null!(&*exec ?= ptr::null_mut()); match exec.poll_next() {
Some(task) => Box::into_raw(task),
None => ptr::null_mut(),
}
} ?= ptr::null_mut()
}
ffi_fn! { /// Takes the output value of this task. /// /// This must only be called once polling the task on an executor has finished /// this task. /// /// Use `hyper_task_type` to determine the type of the `void *` return value. fn hyper_task_value(task: *mut hyper_task) -> *mut c_void { let task = non_null!(&mut *task ?= ptr::null_mut());
iflet Some(val) = task.output.take() { let p = Box::into_raw(val) as *mut c_void; // protect from returning fake pointers to empty types if p == std::ptr::NonNull::<c_void>::dangling().as_ptr() {
ptr::null_mut()
} else {
p
}
} else {
ptr::null_mut()
}
} ?= ptr::null_mut()
}
ffi_fn! { /// Query the return type of this task. fn hyper_task_type(task: *mut hyper_task) -> hyper_task_return_type { // instead of blowing up spectacularly, just say this null task // doesn't have a value to retrieve.
non_null!(&*task ?= hyper_task_return_type::HYPER_TASK_EMPTY).output_type()
}
}
ffi_fn! { /// Set a user data pointer to be associated with this task. /// /// This value will be passed to task callbacks, and can be checked later /// with `hyper_task_userdata`. fn hyper_task_set_userdata(task: *mut hyper_task, userdata: *mut c_void) { if task.is_null() { return;
}
ffi_fn! { /// Retrieve the userdata that has been set via `hyper_task_set_userdata`. fn hyper_task_userdata(task: *mut hyper_task) -> *mut c_void {
non_null!(&*task ?= ptr::null_mut()).userdata.0
} ?= ptr::null_mut()
}
impl hyper_context<'_> { pub(crate) fn wrap<'a, 'b>(cx: &'a mut Context<'b>) -> &'a mut hyper_context<'b> { // A struct with only one field has the same layout as that field. unsafe { std::mem::transmute::<&mut Context<'_>, &mut hyper_context<'_>>(cx) }
}
}
ffi_fn! { /// Copies a waker out of the task context. fn hyper_context_waker(cx: *mut hyper_context<'_>) -> *mut hyper_waker { let waker = non_null!(&mut *cx ?= ptr::null_mut()).0.waker().clone(); Box::into_raw(Box::new(hyper_waker { waker }))
} ?= ptr::null_mut()
}
// ===== impl hyper_waker =====
ffi_fn! { /// Free a waker that hasn't been woken. fn hyper_waker_free(waker: *mut hyper_waker) {
drop(non_null!(Box::from_raw(waker) ?= ()));
}
}
ffi_fn! { /// Wake up the task associated with a waker. /// /// NOTE: This consumes the waker. You should not use or free the waker afterwards. fn hyper_waker_wake(waker: *mut hyper_waker) { let waker = non_null!(Box::from_raw(waker) ?= ());
waker.waker.wake();
}
}
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.14 Sekunden
(vorverarbeitet am 2026-06-18)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.