File size: 24,683 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 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 |
use std::{borrow::Cow, iter, ops::ControlFlow, thread::available_parallelism, time::Duration};
use anyhow::{Result, anyhow, bail};
use async_stream::try_stream as generator;
use futures::{
SinkExt, StreamExt,
channel::mpsc::{UnboundedSender, unbounded},
pin_mut,
};
use futures_retry::{FutureRetry, RetryPolicy};
use parking_lot::Mutex;
use serde::{Deserialize, Serialize, de::DeserializeOwned};
use serde_json::Value as JsonValue;
use turbo_rcstr::rcstr;
use turbo_tasks::{
Completion, FxIndexMap, NonLocalValue, OperationVc, RawVc, ResolvedVc, TaskInput,
TryJoinIterExt, Vc, VcValueType, apply_effects, duration_span, fxindexmap, mark_finished,
prevent_gc, trace::TraceRawVcs, util::SharedError,
};
use turbo_tasks_bytes::{Bytes, Stream};
use turbo_tasks_env::{EnvMap, ProcessEnv};
use turbo_tasks_fs::{File, FileSystemPath, to_sys_path};
use turbopack_core::{
asset::AssetContent,
changed::content_changed,
chunk::{ChunkingContext, ChunkingContextExt, EvaluatableAsset, EvaluatableAssets},
context::AssetContext,
error::PrettyPrintError,
file_source::FileSource,
issue::{
Issue, IssueExt, IssueSource, IssueStage, OptionIssueSource, OptionStyledString,
StyledString,
},
module::Module,
module_graph::{ModuleGraph, chunk_group_info::ChunkGroupEntry},
output::{OutputAsset, OutputAssets},
reference_type::{InnerAssets, ReferenceType},
source::Source,
virtual_source::VirtualSource,
};
use crate::{
AssetsForSourceMapping,
embed_js::embed_file_path,
emit, emit_package_json, internal_assets_for_source_mapping,
pool::{FormattingMode, NodeJsOperation, NodeJsPool},
source_map::StructuredError,
};
#[derive(Serialize)]
#[serde(tag = "type", rename_all = "camelCase")]
enum EvalJavaScriptOutgoingMessage<'a> {
#[serde(rename_all = "camelCase")]
Evaluate { args: Vec<&'a JsonValue> },
Result {
id: u64,
data: Option<JsonValue>,
error: Option<String>,
},
}
#[derive(Deserialize, Debug)]
#[serde(tag = "type", rename_all = "camelCase")]
enum EvalJavaScriptIncomingMessage {
Info { data: JsonValue },
Request { id: u64, data: JsonValue },
End { data: Option<String> },
Error(StructuredError),
}
type LoopResult = ControlFlow<Result<Option<String>, StructuredError>, String>;
type EvaluationItem = Result<Bytes, SharedError>;
type JavaScriptStream = Stream<EvaluationItem>;
#[turbo_tasks::value(eq = "manual", cell = "new", serialization = "none")]
pub struct JavaScriptStreamSender {
#[turbo_tasks(trace_ignore, debug_ignore)]
get: Box<dyn Fn() -> UnboundedSender<Result<Bytes, SharedError>> + Send + Sync>,
}
#[turbo_tasks::value(transparent)]
#[derive(Clone, Debug)]
pub struct JavaScriptEvaluation(#[turbo_tasks(trace_ignore)] JavaScriptStream);
#[turbo_tasks::value]
struct EmittedEvaluatePoolAssets {
bootstrap: ResolvedVc<Box<dyn OutputAsset>>,
output_root: FileSystemPath,
entrypoint: FileSystemPath,
}
#[turbo_tasks::function(operation)]
async fn emit_evaluate_pool_assets_operation(
module_asset: ResolvedVc<Box<dyn Module>>,
asset_context: ResolvedVc<Box<dyn AssetContext>>,
chunking_context: ResolvedVc<Box<dyn ChunkingContext>>,
runtime_entries: Option<ResolvedVc<EvaluatableAssets>>,
) -> Result<Vc<EmittedEvaluatePoolAssets>> {
let runtime_asset = asset_context
.process(
Vc::upcast(FileSource::new(
embed_file_path(rcstr!("ipc/evaluate.ts")).owned().await?,
)),
ReferenceType::Internal(InnerAssets::empty().to_resolved().await?),
)
.module()
.to_resolved()
.await?;
let module_path = module_asset.ident().path().await?;
let file_name = module_path.file_name();
let file_name = if file_name.ends_with(".js") {
Cow::Borrowed(file_name)
} else if let Some(file_name) = file_name.strip_suffix(".ts") {
Cow::Owned(format!("{file_name}.js"))
} else {
Cow::Owned(format!("{file_name}.js"))
};
let entrypoint = chunking_context.output_root().await?.join(&file_name)?;
let entry_module = asset_context
.process(
Vc::upcast(VirtualSource::new(
runtime_asset.ident().path().await?.join("evaluate.js")?,
AssetContent::file(
File::from("import { run } from 'RUNTIME'; run(() => import('INNER'))").into(),
),
)),
ReferenceType::Internal(ResolvedVc::cell(fxindexmap! {
rcstr!("INNER") => module_asset,
rcstr!("RUNTIME") => runtime_asset
})),
)
.module()
.to_resolved()
.await?;
let runtime_entries = {
let globals_module = asset_context
.process(
Vc::upcast(FileSource::new(
embed_file_path(rcstr!("globals.ts")).owned().await?,
)),
ReferenceType::Internal(InnerAssets::empty().to_resolved().await?),
)
.module();
let Some(globals_module) =
Vc::try_resolve_sidecast::<Box<dyn EvaluatableAsset>>(globals_module).await?
else {
bail!("Internal module is not evaluatable");
};
let mut entries = vec![globals_module.to_resolved().await?];
if let Some(runtime_entries) = runtime_entries {
for &entry in &*runtime_entries.await? {
entries.push(entry)
}
}
entries
};
let module_graph = ModuleGraph::from_modules(
Vc::cell(vec![ChunkGroupEntry::Entry(
iter::once(entry_module)
.chain(runtime_entries.iter().copied().map(ResolvedVc::upcast))
.collect(),
)]),
false,
);
let bootstrap = chunking_context.root_entry_chunk_group_asset(
entrypoint.clone(),
Vc::<EvaluatableAssets>::cell(runtime_entries)
.with_entry(*ResolvedVc::try_downcast(entry_module).unwrap()),
module_graph,
OutputAssets::empty(),
);
let output_root = chunking_context.output_root().owned().await?;
emit_package_json(output_root.clone())?
.as_side_effect()
.await?;
emit(bootstrap, output_root.clone())
.as_side_effect()
.await?;
Ok(EmittedEvaluatePoolAssets {
bootstrap: bootstrap.to_resolved().await?,
output_root,
entrypoint: entrypoint.clone(),
}
.cell())
}
#[turbo_tasks::function(operation)]
async fn emit_evaluate_pool_assets_with_effects_operation(
module_asset: ResolvedVc<Box<dyn Module>>,
asset_context: ResolvedVc<Box<dyn AssetContext>>,
chunking_context: ResolvedVc<Box<dyn ChunkingContext>>,
runtime_entries: Option<ResolvedVc<EvaluatableAssets>>,
) -> Result<Vc<EmittedEvaluatePoolAssets>> {
let operation = emit_evaluate_pool_assets_operation(
module_asset,
asset_context,
chunking_context,
runtime_entries,
);
let result = operation.resolve_strongly_consistent().await?;
apply_effects(operation).await?;
Ok(*result)
}
#[derive(
Clone,
Copy,
Hash,
Debug,
PartialEq,
Eq,
Serialize,
Deserialize,
TaskInput,
NonLocalValue,
TraceRawVcs,
)]
pub enum EnvVarTracking {
WholeEnvTracked,
Untracked,
}
#[turbo_tasks::function(operation)]
/// Pass the file you cared as `runtime_entries` to invalidate and reload the
/// evaluated result automatically.
pub async fn get_evaluate_pool(
module_asset: ResolvedVc<Box<dyn Module>>,
cwd: FileSystemPath,
env: ResolvedVc<Box<dyn ProcessEnv>>,
asset_context: ResolvedVc<Box<dyn AssetContext>>,
chunking_context: ResolvedVc<Box<dyn ChunkingContext>>,
runtime_entries: Option<ResolvedVc<EvaluatableAssets>>,
additional_invalidation: ResolvedVc<Completion>,
debug: bool,
env_var_tracking: EnvVarTracking,
) -> Result<Vc<NodeJsPool>> {
let EmittedEvaluatePoolAssets {
bootstrap,
output_root,
entrypoint,
} = &*emit_evaluate_pool_assets_with_effects_operation(
module_asset,
asset_context,
chunking_context,
runtime_entries,
)
.read_strongly_consistent()
.await?;
let (Some(cwd), Some(entrypoint)) = (
to_sys_path(cwd.clone()).await?,
to_sys_path(entrypoint.clone()).await?,
) else {
panic!("can only evaluate from a disk filesystem");
};
// Invalidate pool when code content changes
content_changed(Vc::upcast(**bootstrap)).await?;
let assets_for_source_mapping =
internal_assets_for_source_mapping(**bootstrap, output_root.clone())
.to_resolved()
.await?;
let env = match env_var_tracking {
EnvVarTracking::WholeEnvTracked => env.read_all().await?,
EnvVarTracking::Untracked => {
// We always depend on some known env vars that are used by Node.js
common_node_env(*env).await?;
for name in ["FORCE_COLOR", "NO_COLOR", "OPENSSL_CONF", "TZ"] {
env.read(name.into()).await?;
}
env.read_all().untracked().await?
}
};
let pool = NodeJsPool::new(
cwd,
entrypoint,
env.iter().map(|(k, v)| (k.clone(), v.clone())).collect(),
assets_for_source_mapping,
output_root.clone(),
chunking_context.root_path().owned().await?,
available_parallelism().map_or(1, |v| v.get()),
debug,
);
additional_invalidation.await?;
Ok(pool.cell())
}
#[turbo_tasks::function]
async fn common_node_env(env: Vc<Box<dyn ProcessEnv>>) -> Result<Vc<EnvMap>> {
let mut filtered = FxIndexMap::default();
let env = env.read_all().await?;
for (key, value) in &*env {
let uppercase = key.to_uppercase();
for filter in &["NODE_", "UV_", "SSL_"] {
if uppercase.starts_with(filter) {
filtered.insert(key.clone(), value.clone());
break;
}
}
}
Ok(Vc::cell(filtered))
}
struct PoolErrorHandler;
/// Number of attempts before we start slowing down the retry.
const MAX_FAST_ATTEMPTS: usize = 5;
/// Total number of attempts.
const MAX_ATTEMPTS: usize = MAX_FAST_ATTEMPTS * 2;
impl futures_retry::ErrorHandler<anyhow::Error> for PoolErrorHandler {
type OutError = anyhow::Error;
fn handle(&mut self, attempt: usize, err: anyhow::Error) -> RetryPolicy<Self::OutError> {
if attempt >= MAX_ATTEMPTS {
RetryPolicy::ForwardError(err)
} else if attempt >= MAX_FAST_ATTEMPTS {
RetryPolicy::WaitRetry(Duration::from_secs(1))
} else {
RetryPolicy::Repeat
}
}
}
pub trait EvaluateContext {
type InfoMessage: DeserializeOwned;
type RequestMessage: DeserializeOwned;
type ResponseMessage: Serialize;
type State: Default;
fn compute(self, sender: Vc<JavaScriptStreamSender>)
-> impl Future<Output = Result<()>> + Send;
fn pool(&self) -> OperationVc<NodeJsPool>;
fn keep_alive(&self) -> bool {
false
}
fn args(&self) -> &[ResolvedVc<JsonValue>];
fn cwd(&self) -> Vc<FileSystemPath>;
fn emit_error(
&self,
error: StructuredError,
pool: &NodeJsPool,
) -> impl Future<Output = Result<()>> + Send;
fn info(
&self,
state: &mut Self::State,
data: Self::InfoMessage,
pool: &NodeJsPool,
) -> impl Future<Output = Result<()>> + Send;
fn request(
&self,
state: &mut Self::State,
data: Self::RequestMessage,
pool: &NodeJsPool,
) -> impl Future<Output = Result<Self::ResponseMessage>> + Send;
fn finish(
&self,
state: Self::State,
pool: &NodeJsPool,
) -> impl Future<Output = Result<()>> + Send;
}
pub async fn custom_evaluate(
evaluate_context: impl EvaluateContext,
) -> Result<Vc<JavaScriptEvaluation>> {
// TODO: The way we invoke compute_evaluate_stream as side effect is not
// GC-safe, so we disable GC for this task.
prevent_gc();
// Note the following code uses some hacks to create a child task that produces
// a stream that is returned by this task.
// We create a new cell in this task, which will be updated from the
// [compute_evaluate_stream] task.
let cell = turbo_tasks::macro_helpers::find_cell_by_type(
<JavaScriptEvaluation as VcValueType>::get_value_type_id(),
);
// We initialize the cell with a stream that is open, but has no values.
// The first [compute_evaluate_stream] pipe call will pick up that stream.
let (sender, receiver) = unbounded();
cell.update(JavaScriptEvaluation(JavaScriptStream::new_open(
vec![],
Box::new(receiver),
)));
let initial = Mutex::new(Some(sender));
// run the evaluation as side effect
evaluate_context
.compute(
JavaScriptStreamSender {
get: Box::new(move || {
if let Some(sender) = initial.lock().take() {
sender
} else {
// In cases when only [compute_evaluate_stream] is (re)executed, we need to
// update the old stream with a new value.
let (sender, receiver) = unbounded();
cell.update(JavaScriptEvaluation(JavaScriptStream::new_open(
vec![],
Box::new(receiver),
)));
sender
}
}),
}
.cell(),
)
.await?;
let raw: RawVc = cell.into();
Ok(raw.into())
}
/// Pass the file you cared as `runtime_entries` to invalidate and reload the
/// evaluated result automatically.
#[turbo_tasks::function]
pub async fn evaluate(
module_asset: ResolvedVc<Box<dyn Module>>,
cwd: FileSystemPath,
env: ResolvedVc<Box<dyn ProcessEnv>>,
context_source_for_issue: ResolvedVc<Box<dyn Source>>,
asset_context: ResolvedVc<Box<dyn AssetContext>>,
chunking_context: ResolvedVc<Box<dyn ChunkingContext>>,
runtime_entries: Option<ResolvedVc<EvaluatableAssets>>,
args: Vec<ResolvedVc<JsonValue>>,
additional_invalidation: ResolvedVc<Completion>,
debug: bool,
) -> Result<Vc<JavaScriptEvaluation>> {
custom_evaluate(BasicEvaluateContext {
module_asset,
cwd,
env,
context_source_for_issue,
asset_context,
chunking_context,
runtime_entries,
args,
additional_invalidation,
debug,
})
.await
}
pub async fn compute(
evaluate_context: impl EvaluateContext,
sender: Vc<JavaScriptStreamSender>,
) -> Result<Vc<()>> {
mark_finished();
let Ok(sender) = sender.await else {
// Impossible to handle the error in a good way.
return Ok(Default::default());
};
let stream = generator! {
let pool_op = evaluate_context.pool();
let mut state = Default::default();
// Read this strongly consistent, since we don't want to run inconsistent
// node.js code.
let pool = pool_op.read_strongly_consistent().await?;
let args = evaluate_context.args().iter().try_join().await?;
// Assume this is a one-off operation, so we can kill the process
// TODO use a better way to decide that.
let kill = !evaluate_context.keep_alive();
// Workers in the pool could be in a bad state that we didn't detect yet.
// The bad state might even be unnoticeable until we actually send the job to the
// worker. So we retry picking workers from the pools until we succeed
// sending the job.
let (mut operation, _) = FutureRetry::new(
|| async {
let mut operation = pool.operation().await?;
operation
.send(EvalJavaScriptOutgoingMessage::Evaluate {
args: args.iter().map(|v| &**v).collect(),
})
.await?;
Ok(operation)
},
PoolErrorHandler,
)
.await
.map_err(|(e, _)| e)?;
// The evaluation sent an initial intermediate value without completing. We'll
// need to spawn a new thread to continually pull data out of the process,
// and ferry that along.
loop {
let output = pull_operation(&mut operation, &pool, &evaluate_context, &mut state).await?;
match output {
LoopResult::Continue(data) => {
yield data.into();
}
LoopResult::Break(Ok(Some(data))) => {
yield data.into();
break;
}
LoopResult::Break(Err(e)) => {
let error = print_error(e, &pool, &evaluate_context).await?;
Err(anyhow!("Node.js evaluation failed: {}", error))?;
break;
}
LoopResult::Break(Ok(None)) => {
break;
}
}
}
evaluate_context.finish(state, &pool).await?;
if kill {
operation.wait_or_kill().await?;
}
};
let mut sender = (sender.get)();
pin_mut!(stream);
while let Some(value) = stream.next().await {
if sender.send(value).await.is_err() {
return Ok(Default::default());
}
if sender.flush().await.is_err() {
return Ok(Default::default());
}
}
Ok(Default::default())
}
/// Repeatedly pulls from the NodeJsOperation until we receive a
/// value/error/end.
async fn pull_operation<T: EvaluateContext>(
operation: &mut NodeJsOperation,
pool: &NodeJsPool,
evaluate_context: &T,
state: &mut T::State,
) -> Result<LoopResult> {
let guard = duration_span!("Node.js evaluation");
let output = loop {
match operation.recv().await? {
EvalJavaScriptIncomingMessage::Error(error) => {
evaluate_context.emit_error(error, pool).await?;
// Do not reuse the process in case of error
operation.disallow_reuse();
// Issue emitted, we want to break but don't want to return an error
break ControlFlow::Break(Ok(None));
}
EvalJavaScriptIncomingMessage::End { data } => break ControlFlow::Break(Ok(data)),
EvalJavaScriptIncomingMessage::Info { data } => {
evaluate_context
.info(state, serde_json::from_value(data)?, pool)
.await?;
}
EvalJavaScriptIncomingMessage::Request { id, data } => {
match evaluate_context
.request(state, serde_json::from_value(data)?, pool)
.await
{
Ok(response) => {
operation
.send(EvalJavaScriptOutgoingMessage::Result {
id,
error: None,
data: Some(serde_json::to_value(response)?),
})
.await?;
}
Err(e) => {
operation
.send(EvalJavaScriptOutgoingMessage::Result {
id,
error: Some(PrettyPrintError(&e).to_string()),
data: None,
})
.await?;
}
}
}
}
};
drop(guard);
Ok(output)
}
#[turbo_tasks::function]
async fn basic_compute(
evaluate_context: BasicEvaluateContext,
sender: Vc<JavaScriptStreamSender>,
) -> Result<Vc<()>> {
compute(evaluate_context, sender).await
}
#[derive(Clone, PartialEq, Eq, Hash, TaskInput, Debug, Serialize, Deserialize, TraceRawVcs)]
struct BasicEvaluateContext {
module_asset: ResolvedVc<Box<dyn Module>>,
cwd: FileSystemPath,
env: ResolvedVc<Box<dyn ProcessEnv>>,
context_source_for_issue: ResolvedVc<Box<dyn Source>>,
asset_context: ResolvedVc<Box<dyn AssetContext>>,
chunking_context: ResolvedVc<Box<dyn ChunkingContext>>,
runtime_entries: Option<ResolvedVc<EvaluatableAssets>>,
args: Vec<ResolvedVc<JsonValue>>,
additional_invalidation: ResolvedVc<Completion>,
debug: bool,
}
impl EvaluateContext for BasicEvaluateContext {
type InfoMessage = ();
type RequestMessage = ();
type ResponseMessage = ();
type State = ();
async fn compute(self, sender: Vc<JavaScriptStreamSender>) -> Result<()> {
basic_compute(self, sender).as_side_effect().await
}
fn pool(&self) -> OperationVc<crate::pool::NodeJsPool> {
get_evaluate_pool(
self.module_asset,
self.cwd.clone(),
self.env,
self.asset_context,
self.chunking_context,
self.runtime_entries,
self.additional_invalidation,
self.debug,
EnvVarTracking::WholeEnvTracked,
)
}
fn args(&self) -> &[ResolvedVc<serde_json::Value>] {
&self.args
}
fn cwd(&self) -> Vc<turbo_tasks_fs::FileSystemPath> {
self.cwd.clone().cell()
}
fn keep_alive(&self) -> bool {
!self.args.is_empty()
}
async fn emit_error(&self, error: StructuredError, pool: &NodeJsPool) -> Result<()> {
EvaluationIssue {
error,
source: IssueSource::from_source_only(self.context_source_for_issue),
assets_for_source_mapping: pool.assets_for_source_mapping,
assets_root: pool.assets_root.clone(),
root_path: self.chunking_context.root_path().owned().await?,
}
.resolved_cell()
.emit();
Ok(())
}
async fn info(
&self,
_state: &mut Self::State,
_data: Self::InfoMessage,
_pool: &NodeJsPool,
) -> Result<()> {
bail!("BasicEvaluateContext does not support info messages")
}
async fn request(
&self,
_state: &mut Self::State,
_data: Self::RequestMessage,
_pool: &NodeJsPool,
) -> Result<Self::ResponseMessage> {
bail!("BasicEvaluateContext does not support request messages")
}
async fn finish(&self, _state: Self::State, _pool: &NodeJsPool) -> Result<()> {
Ok(())
}
}
pub fn scale_zero() {
NodeJsPool::scale_zero();
}
pub fn scale_down() {
NodeJsPool::scale_down();
}
async fn print_error(
error: StructuredError,
pool: &NodeJsPool,
evaluate_context: &impl EvaluateContext,
) -> Result<String> {
error
.print(
*pool.assets_for_source_mapping,
pool.assets_root.clone(),
evaluate_context.cwd().owned().await?,
FormattingMode::Plain,
)
.await
}
/// An issue that occurred while evaluating node code.
#[turbo_tasks::value(shared)]
pub struct EvaluationIssue {
pub source: IssueSource,
pub error: StructuredError,
pub assets_for_source_mapping: ResolvedVc<AssetsForSourceMapping>,
pub assets_root: FileSystemPath,
pub root_path: FileSystemPath,
}
#[turbo_tasks::value_impl]
impl Issue for EvaluationIssue {
#[turbo_tasks::function]
fn title(&self) -> Vc<StyledString> {
StyledString::Text(rcstr!("Error evaluating Node.js code")).cell()
}
#[turbo_tasks::function]
fn stage(&self) -> Vc<IssueStage> {
IssueStage::Transform.into()
}
#[turbo_tasks::function]
fn file_path(&self) -> Vc<FileSystemPath> {
self.source.file_path()
}
#[turbo_tasks::function]
async fn description(&self) -> Result<Vc<OptionStyledString>> {
Ok(Vc::cell(Some(
StyledString::Text(
self.error
.print(
*self.assets_for_source_mapping,
self.assets_root.clone(),
self.root_path.clone(),
FormattingMode::Plain,
)
.await?
.into(),
)
.resolved_cell(),
)))
}
#[turbo_tasks::function]
fn source(&self) -> Vc<OptionIssueSource> {
Vc::cell(Some(self.source))
}
}
|