-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
use anyhow::Result; | ||
use async_trait::async_trait; | ||
use turbo_tasks::{emit, CollectiblesSource, Upcast, Vc}; | ||
|
||
#[turbo_tasks::value(serialization = "none")] | ||
#[derive(Clone, Debug)] | ||
pub struct PlainDiagnostic { | ||
pub category: String, | ||
pub key: String, | ||
pub value: String, | ||
} | ||
|
||
/// An arbitrary payload can be used to analyze, diagnose | ||
/// Turbopack's behavior. | ||
#[turbo_tasks::value_trait] | ||
pub trait Diagnostic { | ||
// [TODO]: These are subject to change; not finalized yet. | ||
fn category(&self) -> Vc<String>; | ||
fn key(&self) -> Vc<String>; | ||
fn value(&self) -> Vc<String>; | ||
|
||
async fn into_plain(self: Vc<Self>) -> Result<Vc<PlainDiagnostic>> { | ||
Ok(PlainDiagnostic { | ||
category: self.category().await?.clone_value(), | ||
key: self.key().await?.clone_value(), | ||
value: self.value().await?.clone_value(), | ||
} | ||
.cell()) | ||
} | ||
} | ||
|
||
pub trait DiagnosticExt { | ||
fn emit(self); | ||
} | ||
|
||
impl<T> DiagnosticExt for Vc<T> | ||
where | ||
T: Upcast<Box<dyn Diagnostic>>, | ||
{ | ||
fn emit(self) { | ||
let diagnostic = Vc::upcast::<Box<dyn Diagnostic>>(self); | ||
emit(diagnostic); | ||
} | ||
} | ||
|
||
#[async_trait] | ||
pub trait DiagnosticContextExt | ||
where | ||
Self: Sized, | ||
{ | ||
async fn peek_diagnostics(self) -> Result<Vc<CapturedDiagnostics>>; | ||
} | ||
|
||
#[async_trait] | ||
impl<T> DiagnosticContextExt for T | ||
where | ||
T: CollectiblesSource + Copy + Send, | ||
{ | ||
async fn peek_diagnostics(self) -> Result<Vc<CapturedDiagnostics>> { | ||
Ok(CapturedDiagnostics::cell(CapturedDiagnostics { | ||
diagnostics: self.peek_collectibles().strongly_consistent().await?, | ||
})) | ||
} | ||
} | ||
|
||
/// A list of diagnostics captured with | ||
/// [`DiagnosticsVc::peek_diagnostics_with_path`] and | ||
#[derive(Debug)] | ||
#[turbo_tasks::value] | ||
pub struct CapturedDiagnostics { | ||
pub diagnostics: auto_hash_map::AutoSet<Vc<Box<dyn Diagnostic>>>, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters