File size: 12,018 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 483 484 485 486 487 488 489 |
use std::{
collections::BTreeMap, fmt::Debug, future::Future, hash::Hash, sync::Arc, time::Duration,
};
use anyhow::Result;
use either::Either;
use serde::{Deserialize, Serialize};
use turbo_rcstr::RcStr;
use crate::{
MagicAny, ResolvedVc, TaskId, TransientInstance, TransientValue, ValueTypeId, Vc,
trace::TraceRawVcs,
};
/// Trait to implement in order for a type to be accepted as a
/// [`#[turbo_tasks::function]`][crate::function] argument.
pub trait TaskInput: Send + Sync + Clone + Debug + PartialEq + Eq + Hash + TraceRawVcs {
fn resolve_input(&self) -> impl Future<Output = Result<Self>> + Send + '_ {
async { Ok(self.clone()) }
}
fn is_resolved(&self) -> bool {
true
}
fn is_transient(&self) -> bool;
}
macro_rules! impl_task_input {
($($t:ty),*) => {
$(
impl TaskInput for $t {
fn is_transient(&self) -> bool {
false
}
}
)*
};
}
impl_task_input! {
(),
bool,
u8,
u16,
u32,
i32,
u64,
usize,
RcStr,
TaskId,
ValueTypeId,
Duration,
String
}
impl<T> TaskInput for Vec<T>
where
T: TaskInput,
{
fn is_resolved(&self) -> bool {
self.iter().all(TaskInput::is_resolved)
}
fn is_transient(&self) -> bool {
self.iter().any(TaskInput::is_transient)
}
async fn resolve_input(&self) -> Result<Self> {
let mut resolved = Vec::with_capacity(self.len());
for value in self {
resolved.push(value.resolve_input().await?);
}
Ok(resolved)
}
}
impl<T> TaskInput for Box<T>
where
T: TaskInput,
{
fn is_resolved(&self) -> bool {
self.as_ref().is_resolved()
}
fn is_transient(&self) -> bool {
self.as_ref().is_transient()
}
async fn resolve_input(&self) -> Result<Self> {
Ok(Box::new(Box::pin(self.as_ref().resolve_input()).await?))
}
}
impl<T> TaskInput for Arc<T>
where
T: TaskInput,
{
fn is_resolved(&self) -> bool {
self.as_ref().is_resolved()
}
fn is_transient(&self) -> bool {
self.as_ref().is_transient()
}
async fn resolve_input(&self) -> Result<Self> {
Ok(Arc::new(Box::pin(self.as_ref().resolve_input()).await?))
}
}
impl<T> TaskInput for Option<T>
where
T: TaskInput,
{
fn is_resolved(&self) -> bool {
match self {
Some(value) => value.is_resolved(),
None => true,
}
}
fn is_transient(&self) -> bool {
match self {
Some(value) => value.is_transient(),
None => false,
}
}
async fn resolve_input(&self) -> Result<Self> {
match self {
Some(value) => Ok(Some(value.resolve_input().await?)),
None => Ok(None),
}
}
}
impl<T> TaskInput for Vc<T>
where
T: Send + Sync + ?Sized,
{
fn is_resolved(&self) -> bool {
Vc::is_resolved(*self)
}
fn is_transient(&self) -> bool {
self.node.is_transient()
}
async fn resolve_input(&self) -> Result<Self> {
Vc::resolve(*self).await
}
}
// `TaskInput` isn't needed/used for a bare `ResolvedVc`, as we'll expose `ResolvedVc` arguments as
// `Vc`, but it is useful for structs that contain `ResolvedVc` and want to derive `TaskInput`.
impl<T> TaskInput for ResolvedVc<T>
where
T: Send + Sync + ?Sized,
{
fn is_resolved(&self) -> bool {
true
}
fn is_transient(&self) -> bool {
self.node.is_transient()
}
async fn resolve_input(&self) -> Result<Self> {
Ok(*self)
}
}
impl<T> TaskInput for TransientValue<T>
where
T: MagicAny + Clone + Debug + Hash + Eq + TraceRawVcs + 'static,
{
fn is_transient(&self) -> bool {
true
}
}
impl<T> Serialize for TransientValue<T>
where
T: MagicAny + Clone + 'static,
{
fn serialize<S>(&self, _serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
Err(serde::ser::Error::custom(
"cannot serialize transient task inputs",
))
}
}
impl<'de, T> Deserialize<'de> for TransientValue<T>
where
T: MagicAny + Clone + 'static,
{
fn deserialize<D>(_deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
Err(serde::de::Error::custom(
"cannot deserialize transient task inputs",
))
}
}
impl<T> TaskInput for TransientInstance<T>
where
T: Sync + Send + TraceRawVcs + 'static,
{
fn is_transient(&self) -> bool {
true
}
}
impl<T> Serialize for TransientInstance<T> {
fn serialize<S>(&self, _serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
Err(serde::ser::Error::custom(
"cannot serialize transient task inputs",
))
}
}
impl<'de, T> Deserialize<'de> for TransientInstance<T> {
fn deserialize<D>(_deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
Err(serde::de::Error::custom(
"cannot deserialize transient task inputs",
))
}
}
impl<L, R> TaskInput for Either<L, R>
where
L: TaskInput,
R: TaskInput,
{
fn resolve_input(&self) -> impl Future<Output = Result<Self>> + Send + '_ {
self.as_ref().map_either(
|l| async move { anyhow::Ok(Either::Left(l.resolve_input().await?)) },
|r| async move { anyhow::Ok(Either::Right(r.resolve_input().await?)) },
)
}
fn is_resolved(&self) -> bool {
self.as_ref()
.either(TaskInput::is_resolved, TaskInput::is_resolved)
}
fn is_transient(&self) -> bool {
self.as_ref()
.either(TaskInput::is_transient, TaskInput::is_transient)
}
}
impl<K, V> TaskInput for BTreeMap<K, V>
where
K: TaskInput + Ord,
V: TaskInput,
{
async fn resolve_input(&self) -> Result<Self> {
let mut new_map = BTreeMap::new();
for (k, v) in self {
new_map.insert(
TaskInput::resolve_input(k).await?,
TaskInput::resolve_input(v).await?,
);
}
Ok(new_map)
}
fn is_resolved(&self) -> bool {
self.iter()
.all(|(k, v)| TaskInput::is_resolved(k) || TaskInput::is_resolved(v))
}
fn is_transient(&self) -> bool {
self.iter()
.any(|(k, v)| TaskInput::is_transient(k) || TaskInput::is_transient(v))
}
}
macro_rules! tuple_impls {
( $( $name:ident )+ ) => {
impl<$($name: TaskInput),+> TaskInput for ($($name,)+)
where $($name: TaskInput),+
{
#[allow(non_snake_case)]
fn is_resolved(&self) -> bool {
let ($($name,)+) = self;
$($name.is_resolved() &&)+ true
}
#[allow(non_snake_case)]
fn is_transient(&self) -> bool {
let ($($name,)+) = self;
$($name.is_transient() ||)+ false
}
#[allow(non_snake_case)]
async fn resolve_input(&self) -> Result<Self> {
let ($($name,)+) = self;
Ok(($($name.resolve_input().await?,)+))
}
}
};
}
// Implement `TaskInput` for all tuples of 1 to 12 elements.
tuple_impls! { A }
tuple_impls! { A B }
tuple_impls! { A B C }
tuple_impls! { A B C D }
tuple_impls! { A B C D E }
tuple_impls! { A B C D E F }
tuple_impls! { A B C D E F G }
tuple_impls! { A B C D E F G H }
tuple_impls! { A B C D E F G H I }
tuple_impls! { A B C D E F G H I J }
tuple_impls! { A B C D E F G H I J K }
tuple_impls! { A B C D E F G H I J K L }
#[cfg(test)]
mod tests {
use turbo_rcstr::rcstr;
use turbo_tasks_macros::TaskInput;
use super::*;
// This is necessary for the derive macro to work, as its expansion refers to
// the crate name directly.
use crate as turbo_tasks;
fn assert_task_input<T>(_: T)
where
T: TaskInput,
{
}
#[test]
fn test_no_fields() -> Result<()> {
#[derive(
Clone, TaskInput, Eq, PartialEq, Hash, Debug, Serialize, Deserialize, TraceRawVcs,
)]
struct NoFields;
assert_task_input(NoFields);
Ok(())
}
#[test]
fn test_one_unnamed_field() -> Result<()> {
#[derive(
Clone, TaskInput, Eq, PartialEq, Hash, Debug, Serialize, Deserialize, TraceRawVcs,
)]
struct OneUnnamedField(u32);
assert_task_input(OneUnnamedField(42));
Ok(())
}
#[test]
fn test_multiple_unnamed_fields() -> Result<()> {
#[derive(
Clone, TaskInput, Eq, PartialEq, Hash, Debug, Serialize, Deserialize, TraceRawVcs,
)]
struct MultipleUnnamedFields(u32, RcStr);
assert_task_input(MultipleUnnamedFields(42, rcstr!("42")));
Ok(())
}
#[test]
fn test_one_named_field() -> Result<()> {
#[derive(
Clone, TaskInput, Eq, PartialEq, Hash, Debug, Serialize, Deserialize, TraceRawVcs,
)]
struct OneNamedField {
named: u32,
}
assert_task_input(OneNamedField { named: 42 });
Ok(())
}
#[test]
fn test_multiple_named_fields() -> Result<()> {
#[derive(
Clone, TaskInput, Eq, PartialEq, Hash, Debug, Serialize, Deserialize, TraceRawVcs,
)]
struct MultipleNamedFields {
named: u32,
other: RcStr,
}
assert_task_input(MultipleNamedFields {
named: 42,
other: rcstr!("42"),
});
Ok(())
}
#[test]
fn test_generic_field() -> Result<()> {
#[derive(
Clone, TaskInput, Eq, PartialEq, Hash, Debug, Serialize, Deserialize, TraceRawVcs,
)]
struct GenericField<T>(T);
assert_task_input(GenericField(42));
assert_task_input(GenericField(rcstr!("42")));
Ok(())
}
#[derive(Clone, TaskInput, Eq, PartialEq, Hash, Debug, Serialize, Deserialize, TraceRawVcs)]
enum OneVariant {
Variant,
}
#[test]
fn test_one_variant() -> Result<()> {
assert_task_input(OneVariant::Variant);
Ok(())
}
#[test]
fn test_multiple_variants() -> Result<()> {
#[derive(
Clone, TaskInput, PartialEq, Eq, Hash, Debug, Serialize, Deserialize, TraceRawVcs,
)]
enum MultipleVariants {
Variant1,
Variant2,
}
assert_task_input(MultipleVariants::Variant2);
Ok(())
}
#[derive(Clone, TaskInput, Eq, PartialEq, Hash, Debug, Serialize, Deserialize, TraceRawVcs)]
enum MultipleVariantsAndHeterogeneousFields {
Variant1,
Variant2(u32),
Variant3 { named: u32 },
Variant4(u32, RcStr),
Variant5 { named: u32, other: RcStr },
}
#[test]
fn test_multiple_variants_and_heterogeneous_fields() -> Result<()> {
assert_task_input(MultipleVariantsAndHeterogeneousFields::Variant5 {
named: 42,
other: rcstr!("42"),
});
Ok(())
}
#[test]
fn test_nested_variants() -> Result<()> {
#[derive(
Clone, TaskInput, Eq, PartialEq, Hash, Debug, Serialize, Deserialize, TraceRawVcs,
)]
enum NestedVariants {
Variant1,
Variant2(MultipleVariantsAndHeterogeneousFields),
Variant3 { named: OneVariant },
Variant4(OneVariant, RcStr),
Variant5 { named: OneVariant, other: RcStr },
}
assert_task_input(NestedVariants::Variant5 {
named: OneVariant::Variant,
other: rcstr!("42"),
});
assert_task_input(NestedVariants::Variant2(
MultipleVariantsAndHeterogeneousFields::Variant5 {
named: 42,
other: rcstr!("42"),
},
));
Ok(())
}
}
|