File size: 16,838 Bytes
1e92f2d |
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 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 |
//! # Function tasks
//!
//! This module contains the trait definitions and implementations that are
//! necessary for accepting functions as tasks when using the
//! `turbo_tasks::function` macro.
//!
//! This system is inspired by Bevy's Systems and Axum's Handlers.
//!
//! The original principle is somewhat simple: a function is accepted if all
//! of its arguments implement `TaskInput` and its return type implements
//! `TaskOutput`. There are a few hoops one needs to jump through to make this
//! work, but they are described in this blog post:
//! <https://blog.logrocket.com/rust-bevy-entity-component-system/>
//!
//! However, there is an additional complication in our case: async methods
//! that accept a reference to the receiver as their first argument.
//!
//! This complication handled through our own version of the `async_trait`
//! crate, which allows us to target `async fn` as trait bounds. The naive
//! approach runs into many issues with lifetimes, hence the need for an
//! intermediate trait. However, this implementation doesn't support all async
//! methods (see commented out tests).
use std::{future::Future, marker::PhantomData, pin::Pin};
use anyhow::Result;
use super::{TaskInput, TaskOutput};
use crate::{RawVc, Vc, VcRead, VcValueType, magic_any::MagicAny};
pub type NativeTaskFuture = Pin<Box<dyn Future<Output = Result<RawVc>> + Send>>;
pub trait TaskFn: Send + Sync + 'static {
fn functor(&self, this: Option<RawVc>, arg: &dyn MagicAny) -> Result<NativeTaskFuture>;
}
pub trait IntoTaskFn<Mode, Inputs> {
type TaskFn: TaskFn;
fn into_task_fn(self) -> Self::TaskFn;
}
impl<F, Mode, Inputs> IntoTaskFn<Mode, Inputs> for F
where
F: TaskFnInputFunction<Mode, Inputs>,
Mode: TaskFnMode,
Inputs: TaskInputs,
{
type TaskFn = FunctionTaskFn<F, Mode, Inputs>;
fn into_task_fn(self) -> Self::TaskFn {
FunctionTaskFn {
task_fn: self,
mode: PhantomData,
inputs: PhantomData,
}
}
}
pub trait IntoTaskFnWithThis<Mode, This, Inputs> {
type TaskFn: TaskFn;
fn into_task_fn_with_this(self) -> Self::TaskFn;
}
impl<F, Mode, This, Inputs> IntoTaskFnWithThis<Mode, This, Inputs> for F
where
F: TaskFnInputFunctionWithThis<Mode, This, Inputs>,
Mode: TaskFnMode,
This: Sync + Send + 'static,
Inputs: TaskInputs,
{
type TaskFn = FunctionTaskFnWithThis<F, Mode, This, Inputs>;
fn into_task_fn_with_this(self) -> Self::TaskFn {
FunctionTaskFnWithThis {
task_fn: self,
mode: PhantomData,
this: PhantomData,
inputs: PhantomData,
}
}
}
pub struct FunctionTaskFn<F, Mode: TaskFnMode, Inputs: TaskInputs> {
task_fn: F,
mode: PhantomData<Mode>,
inputs: PhantomData<Inputs>,
}
impl<F, Mode, Inputs> TaskFn for FunctionTaskFn<F, Mode, Inputs>
where
F: TaskFnInputFunction<Mode, Inputs>,
Mode: TaskFnMode,
Inputs: TaskInputs,
{
fn functor(&self, _this: Option<RawVc>, arg: &dyn MagicAny) -> Result<NativeTaskFuture> {
TaskFnInputFunction::functor(&self.task_fn, arg)
}
}
pub struct FunctionTaskFnWithThis<
F,
Mode: TaskFnMode,
This: Sync + Send + 'static,
Inputs: TaskInputs,
> {
task_fn: F,
mode: PhantomData<Mode>,
this: PhantomData<This>,
inputs: PhantomData<Inputs>,
}
impl<F, Mode, This, Inputs> TaskFn for FunctionTaskFnWithThis<F, Mode, This, Inputs>
where
F: TaskFnInputFunctionWithThis<Mode, This, Inputs>,
Mode: TaskFnMode,
This: Sync + Send + 'static,
Inputs: TaskInputs,
{
fn functor(&self, this: Option<RawVc>, arg: &dyn MagicAny) -> Result<NativeTaskFuture> {
let Some(this) = this else {
panic!("Method needs a `self` argument");
};
TaskFnInputFunctionWithThis::functor(&self.task_fn, this, arg)
}
}
trait TaskFnInputFunction<Mode: TaskFnMode, Inputs: TaskInputs>: Send + Sync + Clone + 'static {
fn functor(&self, arg: &dyn MagicAny) -> Result<NativeTaskFuture>;
}
trait TaskFnInputFunctionWithThis<Mode: TaskFnMode, This: Sync + Send + 'static, Inputs: TaskInputs>:
Send + Sync + Clone + 'static
{
fn functor(&self, this: RawVc, arg: &dyn MagicAny) -> Result<NativeTaskFuture>;
}
pub trait TaskInputs: Send + Sync + 'static {}
/// Modes to allow multiple `TaskFnInputFunction` blanket implementations on
/// `Fn`s. Even though the implementations are non-conflicting in practice, they
/// could be in theory (at least from with the compiler's current limitations).
/// Despite this, the compiler is still able to infer the correct mode from a
/// function.
pub trait TaskFnMode: Send + Sync + 'static {}
pub struct FunctionMode;
impl TaskFnMode for FunctionMode {}
pub struct AsyncFunctionMode;
impl TaskFnMode for AsyncFunctionMode {}
pub struct MethodMode;
impl TaskFnMode for MethodMode {}
pub struct AsyncMethodMode;
impl TaskFnMode for AsyncMethodMode {}
macro_rules! task_inputs_impl {
( $( $arg:ident )* ) => {
impl<$($arg,)*> TaskInputs for ($($arg,)*)
where
$($arg: TaskInput + 'static,)*
{}
}
}
/// Downcast, and clone all the arguments in the singular `arg` tuple.
///
/// This helper function for `task_fn_impl!()` reduces the amount of code inside the macro, and
/// gives the compiler more chances to dedupe monomorphized code across small functions with less
/// typevars.
fn get_args<T: MagicAny + Clone>(arg: &dyn MagicAny) -> Result<T> {
let value = arg.downcast_ref::<T>().cloned();
#[cfg(debug_assertions)]
return anyhow::Context::with_context(value, || {
crate::native_function::debug_downcast_args_error_msg(std::any::type_name::<T>(), arg)
});
#[cfg(not(debug_assertions))]
return anyhow::Context::context(value, "Invalid argument type");
}
// Helper function for `task_fn_impl!()`
async fn output_try_into_non_local_raw_vc(output: impl TaskOutput) -> Result<RawVc> {
// TODO: Potential future optimization: If we know we're inside a local task, we can avoid
// calling `to_non_local()` here, which might let us avoid constructing a non-local cell for the
// local task's return value. Flattening chains of `RawVc::LocalOutput` may still be useful to
// reduce traversal later.
output.try_into_raw_vc()?.to_non_local().await
}
macro_rules! task_fn_impl {
( $async_fn_trait:ident $arg_len:literal $( $arg:ident )* ) => {
impl<F, Output, $($arg,)*> TaskFnInputFunction<FunctionMode, ($($arg,)*)> for F
where
$($arg: TaskInput + 'static,)*
F: Fn($($arg,)*) -> Output + Send + Sync + Clone + 'static,
Output: TaskOutput + 'static,
{
#[allow(non_snake_case)]
fn functor(&self, arg: &dyn MagicAny) -> Result<NativeTaskFuture> {
let task_fn = self.clone();
let ($($arg,)*) = get_args::<($($arg,)*)>(arg)?;
Ok(Box::pin(async move {
let output = (task_fn)($($arg,)*);
output_try_into_non_local_raw_vc(output).await
}))
}
}
impl<F, Output, FutureOutput, $($arg,)*> TaskFnInputFunction<AsyncFunctionMode, ($($arg,)*)> for F
where
$($arg: TaskInput + 'static,)*
F: Fn($($arg,)*) -> FutureOutput + Send + Sync + Clone + 'static,
FutureOutput: Future<Output = Output> + Send + 'static,
Output: TaskOutput + 'static,
{
#[allow(non_snake_case)]
fn functor(&self, arg: &dyn MagicAny) -> Result<NativeTaskFuture> {
let task_fn = self.clone();
let ($($arg,)*) = get_args::<($($arg,)*)>(arg)?;
Ok(Box::pin(async move {
let output = (task_fn)($($arg,)*).await;
output_try_into_non_local_raw_vc(output).await
}))
}
}
impl<F, Output, Recv, $($arg,)*> TaskFnInputFunctionWithThis<MethodMode, Recv, ($($arg,)*)> for F
where
Recv: VcValueType,
$($arg: TaskInput + 'static,)*
F: Fn(&Recv, $($arg,)*) -> Output + Send + Sync + Clone + 'static,
Output: TaskOutput + 'static,
{
#[allow(non_snake_case)]
fn functor(&self, this: RawVc, arg: &dyn MagicAny) -> Result<NativeTaskFuture> {
let task_fn = self.clone();
let recv = Vc::<Recv>::from(this);
let ($($arg,)*) = get_args::<($($arg,)*)>(arg)?;
Ok(Box::pin(async move {
let recv = recv.await?;
let recv = <Recv::Read as VcRead<Recv>>::target_to_value_ref(&*recv);
let output = (task_fn)(recv, $($arg,)*);
output_try_into_non_local_raw_vc(output).await
}))
}
}
impl<F, Output, Recv, $($arg,)*> TaskFnInputFunctionWithThis<FunctionMode, Recv, ($($arg,)*)> for F
where
Recv: Sync + Send + 'static,
$($arg: TaskInput + 'static,)*
F: Fn(Vc<Recv>, $($arg,)*) -> Output + Send + Sync + Clone + 'static,
Output: TaskOutput + 'static,
{
#[allow(non_snake_case)]
fn functor(&self, this: RawVc, arg: &dyn MagicAny) -> Result<NativeTaskFuture> {
let task_fn = self.clone();
let recv = Vc::<Recv>::from(this);
let ($($arg,)*) = get_args::<($($arg,)*)>(arg)?;
Ok(Box::pin(async move {
let output = (task_fn)(recv, $($arg,)*);
output_try_into_non_local_raw_vc(output).await
}))
}
}
pub trait $async_fn_trait<A0, $($arg,)*>: Fn(A0, $($arg,)*) -> Self::OutputFuture {
type OutputFuture: Future<Output = <Self as $async_fn_trait<A0, $($arg,)*>>::Output> + Send;
type Output: TaskOutput;
}
impl<F: ?Sized, Fut, A0, $($arg,)*> $async_fn_trait<A0, $($arg,)*> for F
where
F: Fn(A0, $($arg,)*) -> Fut,
Fut: Future + Send,
Fut::Output: TaskOutput + 'static
{
type OutputFuture = Fut;
type Output = Fut::Output;
}
impl<F, Recv, $($arg,)*> TaskFnInputFunctionWithThis<AsyncMethodMode, Recv, ($($arg,)*)> for F
where
Recv: VcValueType,
$($arg: TaskInput + 'static,)*
F: for<'a> $async_fn_trait<&'a Recv, $($arg,)*> + Clone + Send + Sync + 'static,
{
#[allow(non_snake_case)]
fn functor(&self, this: RawVc, arg: &dyn MagicAny) -> Result<NativeTaskFuture> {
let task_fn = self.clone();
let recv = Vc::<Recv>::from(this);
let ($($arg,)*) = get_args::<($($arg,)*)>(arg)?;
Ok(Box::pin(async move {
let recv = recv.await?;
let recv = <Recv::Read as VcRead<Recv>>::target_to_value_ref(&*recv);
let output = (task_fn)(recv, $($arg,)*).await;
output_try_into_non_local_raw_vc(output).await
}))
}
}
impl<F, Recv, $($arg,)*> TaskFnInputFunctionWithThis<AsyncFunctionMode, Recv, ($($arg,)*)> for F
where
Recv: Sync + Send + 'static,
$($arg: TaskInput + 'static,)*
F: $async_fn_trait<Vc<Recv>, $($arg,)*> + Clone + Send + Sync + 'static,
{
#[allow(non_snake_case)]
fn functor(&self, this: RawVc, arg: &dyn MagicAny) -> Result<NativeTaskFuture> {
let task_fn = self.clone();
let recv = Vc::<Recv>::from(this);
let ($($arg,)*) = get_args::<($($arg,)*)>(arg)?;
Ok(Box::pin(async move {
let output = (task_fn)(recv, $($arg,)*).await;
output_try_into_non_local_raw_vc(output).await
}))
}
}
};
}
task_fn_impl! { AsyncFn0 0 }
task_fn_impl! { AsyncFn1 1 A1 }
task_fn_impl! { AsyncFn2 2 A1 A2 }
task_fn_impl! { AsyncFn3 3 A1 A2 A3 }
task_fn_impl! { AsyncFn4 4 A1 A2 A3 A4 }
task_fn_impl! { AsyncFn5 5 A1 A2 A3 A4 A5 }
task_fn_impl! { AsyncFn6 6 A1 A2 A3 A4 A5 A6 }
task_fn_impl! { AsyncFn7 7 A1 A2 A3 A4 A5 A6 A7 }
task_fn_impl! { AsyncFn8 8 A1 A2 A3 A4 A5 A6 A7 A8 }
task_fn_impl! { AsyncFn9 9 A1 A2 A3 A4 A5 A6 A7 A8 A9 }
task_fn_impl! { AsyncFn10 10 A1 A2 A3 A4 A5 A6 A7 A8 A9 A10 }
task_fn_impl! { AsyncFn11 11 A1 A2 A3 A4 A5 A6 A7 A8 A9 A10 A11 }
task_fn_impl! { AsyncFn12 12 A1 A2 A3 A4 A5 A6 A7 A8 A9 A10 A11 A12 }
// There needs to be one more implementation than task_fn_impl to account for
// the receiver.
task_inputs_impl! {}
task_inputs_impl! { A1 }
task_inputs_impl! { A1 A2 }
task_inputs_impl! { A1 A2 A3 }
task_inputs_impl! { A1 A2 A3 A4 }
task_inputs_impl! { A1 A2 A3 A4 A5 }
task_inputs_impl! { A1 A2 A3 A4 A5 A6 }
task_inputs_impl! { A1 A2 A3 A4 A5 A6 A7 }
task_inputs_impl! { A1 A2 A3 A4 A5 A6 A7 A8 }
task_inputs_impl! { A1 A2 A3 A4 A5 A6 A7 A8 A9 }
task_inputs_impl! { A1 A2 A3 A4 A5 A6 A7 A8 A9 A10 }
task_inputs_impl! { A1 A2 A3 A4 A5 A6 A7 A8 A9 A10 A11 }
task_inputs_impl! { A1 A2 A3 A4 A5 A6 A7 A8 A9 A10 A11 A12 }
task_inputs_impl! { A1 A2 A3 A4 A5 A6 A7 A8 A9 A10 A11 A12 A13 }
#[cfg(test)]
mod tests {
use turbo_rcstr::RcStr;
use super::*;
use crate::{ShrinkToFit, VcCellNewMode, VcDefaultRead};
#[test]
fn test_task_fn() {
fn no_args() -> crate::Vc<i32> {
todo!()
}
fn one_arg(_a: i32) -> crate::Vc<i32> {
todo!()
}
async fn async_one_arg(_a: i32) -> crate::Vc<i32> {
todo!()
}
fn with_recv(_a: &i32) -> crate::Vc<i32> {
todo!()
}
async fn async_with_recv(_a: &i32) -> crate::Vc<i32> {
todo!()
}
fn with_recv_and_str(_a: &i32, _s: RcStr) -> crate::Vc<i32> {
todo!()
}
async fn async_with_recv_and_str(_a: &i32, _s: RcStr) -> crate::Vc<i32> {
todo!()
}
async fn async_with_recv_and_str_and_result(_a: &i32, _s: RcStr) -> Result<crate::Vc<i32>> {
todo!()
}
fn accepts_task_fn<F>(_task_fn: F)
where
F: TaskFn,
{
}
struct Struct;
impl Struct {
async fn inherent_method(&self) {}
}
impl ShrinkToFit for Struct {
fn shrink_to_fit(&mut self) {}
}
unsafe impl VcValueType for Struct {
type Read = VcDefaultRead<Struct>;
type CellMode = VcCellNewMode<Struct>;
fn get_value_type_id() -> crate::ValueTypeId {
todo!()
}
}
trait AsyncTrait {
async fn async_method(&self);
}
impl AsyncTrait for Struct {
async fn async_method(&self) {
todo!()
}
}
/*
async fn async_with_recv_and_str_and_lf(
_a: &i32,
_s: String,
) -> Result<crate::Vc<i32>, crate::Vc<i32>> {
todo!()
}
#[async_trait::async_trait]
trait BoxAsyncTrait {
async fn box_async_method(&self);
}
#[async_trait::async_trait]
impl BoxAsyncTrait for Struct {
async fn box_async_method(&self) {
todo!()
}
}
*/
let _task_fn = no_args.into_task_fn();
accepts_task_fn(no_args.into_task_fn());
let _task_fn = one_arg.into_task_fn();
accepts_task_fn(one_arg.into_task_fn());
let _task_fn = async_one_arg.into_task_fn();
accepts_task_fn(async_one_arg.into_task_fn());
let task_fn = with_recv.into_task_fn_with_this();
accepts_task_fn(task_fn);
let task_fn = async_with_recv.into_task_fn_with_this();
accepts_task_fn(task_fn);
let task_fn = with_recv_and_str.into_task_fn_with_this();
accepts_task_fn(task_fn);
let task_fn = async_with_recv_and_str.into_task_fn_with_this();
accepts_task_fn(task_fn);
let task_fn = async_with_recv_and_str_and_result.into_task_fn_with_this();
accepts_task_fn(task_fn);
let task_fn = <Struct as AsyncTrait>::async_method.into_task_fn_with_this();
accepts_task_fn(task_fn);
let task_fn = Struct::inherent_method.into_task_fn_with_this();
accepts_task_fn(task_fn);
/*
let task_fn = <Struct as BoxAsyncTrait>::box_async_method.into_task_fn();
accepts_task_fn(task_fn);
let task_fn = async_with_recv_and_str_and_lf.into_task_fn();
accepts_task_fn(task_fn);
*/
}
}
|