File size: 8,618 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 |
use std::{
fmt::Display,
hash::Hash,
mem::replace,
sync::{Arc, Weak},
};
use anyhow::Result;
use indexmap::map::Entry;
use serde::{Deserialize, Serialize, de::Visitor};
use tokio::runtime::Handle;
use turbo_dyn_eq_hash::{
DynEq, DynHash, impl_eq_for_dyn, impl_hash_for_dyn, impl_partial_eq_for_dyn,
};
use crate::{
FxIndexMap, FxIndexSet, TaskId, TurboTasksApi,
manager::{current_task, mark_invalidator, with_turbo_tasks},
trace::TraceRawVcs,
util::StaticOrArc,
};
/// Get an [`Invalidator`] that can be used to invalidate the current task
/// based on external events.
pub fn get_invalidator() -> Invalidator {
mark_invalidator();
let handle = Handle::current();
Invalidator {
task: current_task("turbo_tasks::get_invalidator()"),
turbo_tasks: with_turbo_tasks(Arc::downgrade),
handle,
}
}
pub struct Invalidator {
task: TaskId,
turbo_tasks: Weak<dyn TurboTasksApi>,
handle: Handle,
}
impl Invalidator {
pub fn invalidate(self) {
let Invalidator {
task,
turbo_tasks,
handle,
} = self;
let _guard = handle.enter();
if let Some(turbo_tasks) = turbo_tasks.upgrade() {
turbo_tasks.invalidate(task);
}
}
pub fn invalidate_with_reason<T: InvalidationReason>(self, reason: T) {
let Invalidator {
task,
turbo_tasks,
handle,
} = self;
let _guard = handle.enter();
if let Some(turbo_tasks) = turbo_tasks.upgrade() {
turbo_tasks.invalidate_with_reason(
task,
(Arc::new(reason) as Arc<dyn InvalidationReason>).into(),
);
}
}
pub fn invalidate_with_static_reason<T: InvalidationReason>(self, reason: &'static T) {
let Invalidator {
task,
turbo_tasks,
handle,
} = self;
let _guard = handle.enter();
if let Some(turbo_tasks) = turbo_tasks.upgrade() {
turbo_tasks
.invalidate_with_reason(task, (reason as &'static dyn InvalidationReason).into());
}
}
}
impl Hash for Invalidator {
fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
self.task.hash(state);
}
}
impl PartialEq for Invalidator {
fn eq(&self, other: &Self) -> bool {
self.task == other.task
}
}
impl Eq for Invalidator {}
impl TraceRawVcs for Invalidator {
fn trace_raw_vcs(&self, _context: &mut crate::trace::TraceRawVcsContext) {
// nothing here
}
}
impl Serialize for Invalidator {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
serializer.serialize_newtype_struct("Invalidator", &self.task)
}
}
impl<'de> Deserialize<'de> for Invalidator {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct V;
impl<'de> Visitor<'de> for V {
type Value = Invalidator;
fn expecting(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
write!(f, "an Invalidator")
}
fn visit_newtype_struct<D>(self, deserializer: D) -> Result<Self::Value, D::Error>
where
D: serde::Deserializer<'de>,
{
Ok(Invalidator {
task: TaskId::deserialize(deserializer)?,
turbo_tasks: with_turbo_tasks(Arc::downgrade),
handle: tokio::runtime::Handle::current(),
})
}
}
deserializer.deserialize_newtype_struct("Invalidator", V)
}
}
/// A user-facing reason why a task was invalidated. This should only be used
/// for invalidation that were triggered by the user.
///
/// Reasons are deduplicated, so this need to implement [Eq] and [Hash]
pub trait InvalidationReason: DynEq + DynHash + Display + Send + Sync + 'static {
fn kind(&self) -> Option<StaticOrArc<dyn InvalidationReasonKind>> {
None
}
}
/// Invalidation reason kind. This is used to merge multiple reasons of the same
/// kind into a combined description.
///
/// Reason kinds are used a hash map key, so this need to implement [Eq] and
/// [Hash]
pub trait InvalidationReasonKind: DynEq + DynHash + Send + Sync + 'static {
/// Displays a description of multiple invalidation reasons of the same
/// kind. It is only called with two or more reasons.
fn fmt(
&self,
data: &FxIndexSet<StaticOrArc<dyn InvalidationReason>>,
f: &mut std::fmt::Formatter<'_>,
) -> std::fmt::Result;
}
impl_partial_eq_for_dyn!(dyn InvalidationReason);
impl_eq_for_dyn!(dyn InvalidationReason);
impl_hash_for_dyn!(dyn InvalidationReason);
impl_partial_eq_for_dyn!(dyn InvalidationReasonKind);
impl_eq_for_dyn!(dyn InvalidationReasonKind);
impl_hash_for_dyn!(dyn InvalidationReasonKind);
#[derive(PartialEq, Eq, Hash)]
enum MapKey {
Untyped {
unique_tag: usize,
},
Typed {
kind: StaticOrArc<dyn InvalidationReasonKind>,
},
}
enum MapEntry {
Single {
reason: StaticOrArc<dyn InvalidationReason>,
},
Multiple {
reasons: FxIndexSet<StaticOrArc<dyn InvalidationReason>>,
},
}
/// A set of [InvalidationReason]s. They are automatically deduplicated and
/// merged by kind during insertion. It implements [Display] to get a readable
/// representation.
#[derive(Default)]
pub struct InvalidationReasonSet {
next_unique_tag: usize,
// We track typed and untyped entries in the same map to keep the occurrence order of entries.
map: FxIndexMap<MapKey, MapEntry>,
}
impl InvalidationReasonSet {
pub(crate) fn insert(&mut self, reason: StaticOrArc<dyn InvalidationReason>) {
if let Some(kind) = reason.kind() {
let key = MapKey::Typed { kind };
match self.map.entry(key) {
Entry::Occupied(mut entry) => {
let entry = &mut *entry.get_mut();
match replace(
entry,
MapEntry::Multiple {
reasons: FxIndexSet::default(),
},
) {
MapEntry::Single {
reason: existing_reason,
} => {
if reason == existing_reason {
*entry = MapEntry::Single {
reason: existing_reason,
};
return;
}
let mut reasons = FxIndexSet::default();
reasons.insert(existing_reason);
reasons.insert(reason);
*entry = MapEntry::Multiple { reasons };
}
MapEntry::Multiple { mut reasons } => {
reasons.insert(reason);
*entry = MapEntry::Multiple { reasons };
}
}
}
Entry::Vacant(entry) => {
entry.insert(MapEntry::Single { reason });
}
}
} else {
let key = MapKey::Untyped {
unique_tag: self.next_unique_tag,
};
self.next_unique_tag += 1;
self.map.insert(key, MapEntry::Single { reason });
}
}
pub fn is_empty(&self) -> bool {
self.map.is_empty()
}
pub fn len(&self) -> usize {
self.map.len()
}
}
impl Display for InvalidationReasonSet {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let count = self.map.len();
for (i, (key, entry)) in self.map.iter().enumerate() {
if i > 0 {
write!(f, ", ")?;
if i == count - 1 {
write!(f, "and ")?;
}
}
match entry {
MapEntry::Single { reason } => {
write!(f, "{reason}")?;
}
MapEntry::Multiple { reasons } => {
let MapKey::Typed { kind } = key else {
unreachable!("An untyped reason can't collect more than one reason");
};
kind.fmt(reasons, f)?
}
}
}
Ok(())
}
}
|