2022-01-07 22:09:52 -05:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-10-10 17:26:22 -04:00
|
|
|
|
|
|
|
//! The collection of APIs to be able to take `deno_graph` module graphs and
|
|
|
|
//! populate a cache, emit files, and transform a graph into the structures for
|
|
|
|
//! loading into an isolate.
|
|
|
|
|
2022-06-28 16:45:55 -04:00
|
|
|
use crate::args::config_file::IgnoredCompilerOptions;
|
2022-06-27 16:54:09 -04:00
|
|
|
use crate::args::ConfigFile;
|
|
|
|
use crate::args::EmitConfigOptions;
|
|
|
|
use crate::args::TsConfig;
|
2022-07-12 18:58:39 -04:00
|
|
|
use crate::cache::EmitCache;
|
2022-07-19 11:58:18 -04:00
|
|
|
use crate::cache::FastInsecureHasher;
|
2022-08-22 12:14:59 -04:00
|
|
|
use crate::cache::ParsedSourceCache;
|
2021-10-10 17:26:22 -04:00
|
|
|
|
2022-01-13 11:58:00 -05:00
|
|
|
use deno_ast::swc::bundler::Hook;
|
|
|
|
use deno_ast::swc::bundler::ModuleRecord;
|
|
|
|
use deno_ast::swc::common::Span;
|
2021-10-10 17:26:22 -04:00
|
|
|
use deno_core::error::AnyError;
|
|
|
|
use deno_core::serde::Serialize;
|
|
|
|
use deno_core::serde::Serializer;
|
2022-01-13 11:58:00 -05:00
|
|
|
use deno_core::serde_json;
|
2021-10-10 17:26:22 -04:00
|
|
|
use deno_core::serde_json::json;
|
|
|
|
use deno_core::ModuleSpecifier;
|
|
|
|
use deno_graph::MediaType;
|
|
|
|
use deno_graph::ModuleGraphError;
|
|
|
|
use deno_graph::ResolutionError;
|
|
|
|
use std::fmt;
|
|
|
|
use std::sync::Arc;
|
|
|
|
|
2022-06-28 16:45:55 -04:00
|
|
|
/// Represents the "default" type library that should be used when type
|
|
|
|
/// checking the code in the module graph. Note that a user provided config
|
|
|
|
/// of `"lib"` would override this value.
|
|
|
|
#[derive(Debug, Clone, Copy, Eq, Hash, PartialEq)]
|
|
|
|
pub enum TsTypeLib {
|
|
|
|
DenoWindow,
|
|
|
|
DenoWorker,
|
|
|
|
UnstableDenoWindow,
|
|
|
|
UnstableDenoWorker,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for TsTypeLib {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::DenoWindow
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Serialize for TsTypeLib {
|
|
|
|
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
|
|
|
|
where
|
|
|
|
S: Serializer,
|
|
|
|
{
|
|
|
|
let value = match self {
|
|
|
|
Self::DenoWindow => vec!["deno.window".to_string()],
|
|
|
|
Self::DenoWorker => vec!["deno.worker".to_string()],
|
|
|
|
Self::UnstableDenoWindow => {
|
|
|
|
vec!["deno.window".to_string(), "deno.unstable".to_string()]
|
|
|
|
}
|
|
|
|
Self::UnstableDenoWorker => {
|
|
|
|
vec!["deno.worker".to_string(), "deno.unstable".to_string()]
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Serialize::serialize(&value, serializer)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-10 17:26:22 -04:00
|
|
|
/// An enum that represents the base tsc configuration to return.
|
2022-06-28 16:45:55 -04:00
|
|
|
pub enum TsConfigType {
|
2021-10-10 17:26:22 -04:00
|
|
|
/// Return a configuration for bundling, using swc to emit the bundle. This is
|
|
|
|
/// independent of type checking.
|
|
|
|
Bundle,
|
2022-07-19 11:58:18 -04:00
|
|
|
/// Return a configuration to use tsc to type check. This
|
|
|
|
/// is independent of either bundling or emitting via swc.
|
2022-07-13 15:38:36 -04:00
|
|
|
Check { lib: TsTypeLib },
|
2021-10-10 17:26:22 -04:00
|
|
|
/// Return a configuration to use swc to emit single module files.
|
|
|
|
Emit,
|
|
|
|
}
|
|
|
|
|
2022-06-28 16:45:55 -04:00
|
|
|
pub struct TsConfigWithIgnoredOptions {
|
|
|
|
pub ts_config: TsConfig,
|
|
|
|
pub maybe_ignored_options: Option<IgnoredCompilerOptions>,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// For a given configuration type and optionally a configuration file,
|
|
|
|
/// return a `TsConfig` struct and optionally any user configuration
|
|
|
|
/// options that were ignored.
|
|
|
|
pub fn get_ts_config_for_emit(
|
|
|
|
config_type: TsConfigType,
|
2021-10-10 17:26:22 -04:00
|
|
|
maybe_config_file: Option<&ConfigFile>,
|
2022-06-28 16:45:55 -04:00
|
|
|
) -> Result<TsConfigWithIgnoredOptions, AnyError> {
|
2021-10-10 17:26:22 -04:00
|
|
|
let mut ts_config = match config_type {
|
2022-06-28 16:45:55 -04:00
|
|
|
TsConfigType::Bundle => TsConfig::new(json!({
|
2021-10-10 17:26:22 -04:00
|
|
|
"checkJs": false,
|
|
|
|
"emitDecoratorMetadata": false,
|
|
|
|
"importsNotUsedAsValues": "remove",
|
|
|
|
"inlineSourceMap": false,
|
|
|
|
"inlineSources": false,
|
|
|
|
"sourceMap": false,
|
|
|
|
"jsx": "react",
|
|
|
|
"jsxFactory": "React.createElement",
|
|
|
|
"jsxFragmentFactory": "React.Fragment",
|
|
|
|
})),
|
2022-07-13 15:38:36 -04:00
|
|
|
TsConfigType::Check { lib } => TsConfig::new(json!({
|
|
|
|
"allowJs": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"checkJs": false,
|
|
|
|
"emitDecoratorMetadata": false,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"incremental": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"importsNotUsedAsValues": "remove",
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
"inlineSources": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"lib": lib,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleDetection": "force",
|
|
|
|
"noEmit": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"sourceMap": false,
|
|
|
|
"strict": true,
|
|
|
|
"target": "esnext",
|
|
|
|
"tsBuildInfoFile": "deno:///.tsbuildinfo",
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
// TODO(@kitsonk) remove for Deno 2.0
|
|
|
|
"useUnknownInCatchVariables": false,
|
|
|
|
})),
|
2022-06-28 16:45:55 -04:00
|
|
|
TsConfigType::Emit => TsConfig::new(json!({
|
2021-10-10 17:26:22 -04:00
|
|
|
"checkJs": false,
|
|
|
|
"emitDecoratorMetadata": false,
|
|
|
|
"importsNotUsedAsValues": "remove",
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
"inlineSources": true,
|
|
|
|
"sourceMap": false,
|
|
|
|
"jsx": "react",
|
|
|
|
"jsxFactory": "React.createElement",
|
|
|
|
"jsxFragmentFactory": "React.Fragment",
|
2021-12-15 13:22:36 -05:00
|
|
|
"resolveJsonModule": true,
|
2021-10-10 17:26:22 -04:00
|
|
|
})),
|
|
|
|
};
|
2022-06-28 16:45:55 -04:00
|
|
|
let maybe_ignored_options =
|
|
|
|
ts_config.merge_tsconfig_from_config_file(maybe_config_file)?;
|
|
|
|
Ok(TsConfigWithIgnoredOptions {
|
|
|
|
ts_config,
|
|
|
|
maybe_ignored_options,
|
|
|
|
})
|
2021-10-10 17:26:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// A hashing function that takes the source code, version and optionally a
|
|
|
|
/// user provided config and generates a string hash which can be stored to
|
|
|
|
/// determine if the cached emit is valid or not.
|
2022-07-19 11:58:18 -04:00
|
|
|
pub fn get_source_hash(source_text: &str, emit_options_hash: u64) -> u64 {
|
|
|
|
FastInsecureHasher::new()
|
|
|
|
.write_str(source_text)
|
|
|
|
.write_u64(emit_options_hash)
|
|
|
|
.finish()
|
2021-10-10 17:26:22 -04:00
|
|
|
}
|
|
|
|
|
2022-07-19 11:58:18 -04:00
|
|
|
pub fn emit_parsed_source(
|
2022-08-22 12:14:59 -04:00
|
|
|
emit_cache: &EmitCache,
|
|
|
|
parsed_source_cache: &ParsedSourceCache,
|
2022-07-19 11:58:18 -04:00
|
|
|
specifier: &ModuleSpecifier,
|
2022-08-22 12:14:59 -04:00
|
|
|
media_type: MediaType,
|
|
|
|
source: &Arc<str>,
|
2022-07-19 11:58:18 -04:00
|
|
|
emit_options: &deno_ast::EmitOptions,
|
|
|
|
emit_config_hash: u64,
|
|
|
|
) -> Result<String, AnyError> {
|
2022-08-22 12:14:59 -04:00
|
|
|
let source_hash = get_source_hash(source, emit_config_hash);
|
2022-07-19 11:58:18 -04:00
|
|
|
|
2022-08-22 12:14:59 -04:00
|
|
|
if let Some(emit_code) =
|
|
|
|
emit_cache.get_emit_code(specifier, Some(source_hash))
|
|
|
|
{
|
2022-07-19 11:58:18 -04:00
|
|
|
Ok(emit_code)
|
|
|
|
} else {
|
2022-08-22 12:14:59 -04:00
|
|
|
// this will use a cached version if it exists
|
|
|
|
let parsed_source = parsed_source_cache.get_or_parse_module(
|
|
|
|
specifier,
|
|
|
|
source.clone(),
|
|
|
|
media_type,
|
|
|
|
)?;
|
2022-07-19 11:58:18 -04:00
|
|
|
let transpiled_source = parsed_source.transpile(emit_options)?;
|
|
|
|
debug_assert!(transpiled_source.source_map.is_none());
|
2022-08-22 12:14:59 -04:00
|
|
|
emit_cache.set_emit_code(specifier, source_hash, &transpiled_source.text);
|
2022-07-19 11:58:18 -04:00
|
|
|
Ok(transpiled_source.text)
|
2021-10-10 17:26:22 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// An adapter struct to make a deno_graph::ModuleGraphError display as expected
|
|
|
|
/// in the Deno CLI.
|
|
|
|
#[derive(Debug)]
|
2022-03-23 09:54:22 -04:00
|
|
|
pub struct GraphError(pub ModuleGraphError);
|
2021-10-10 17:26:22 -04:00
|
|
|
|
|
|
|
impl std::error::Error for GraphError {}
|
|
|
|
|
|
|
|
impl From<ModuleGraphError> for GraphError {
|
|
|
|
fn from(err: ModuleGraphError) -> Self {
|
|
|
|
Self(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for GraphError {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
match &self.0 {
|
|
|
|
ModuleGraphError::ResolutionError(err) => {
|
|
|
|
if matches!(
|
|
|
|
err,
|
2022-01-31 17:33:57 -05:00
|
|
|
ResolutionError::InvalidDowngrade { .. }
|
|
|
|
| ResolutionError::InvalidLocalImport { .. }
|
2021-10-10 17:26:22 -04:00
|
|
|
) {
|
2021-10-21 10:18:18 -04:00
|
|
|
write!(f, "{}", err.to_string_with_range())
|
2021-10-10 17:26:22 -04:00
|
|
|
} else {
|
|
|
|
self.0.fmt(f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => self.0.fmt(f),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-13 11:58:00 -05:00
|
|
|
/// This contains the logic for Deno to rewrite the `import.meta` when bundling.
|
|
|
|
pub struct BundleHook;
|
|
|
|
|
|
|
|
impl Hook for BundleHook {
|
|
|
|
fn get_import_meta_props(
|
|
|
|
&self,
|
|
|
|
span: Span,
|
|
|
|
module_record: &ModuleRecord,
|
|
|
|
) -> Result<Vec<deno_ast::swc::ast::KeyValueProp>, AnyError> {
|
|
|
|
use deno_ast::swc::ast;
|
|
|
|
|
|
|
|
Ok(vec![
|
|
|
|
ast::KeyValueProp {
|
|
|
|
key: ast::PropName::Ident(ast::Ident::new("url".into(), span)),
|
|
|
|
value: Box::new(ast::Expr::Lit(ast::Lit::Str(ast::Str {
|
|
|
|
span,
|
|
|
|
value: module_record.file_name.to_string().into(),
|
2022-04-08 12:31:47 -04:00
|
|
|
raw: None,
|
2022-01-13 11:58:00 -05:00
|
|
|
}))),
|
|
|
|
},
|
|
|
|
ast::KeyValueProp {
|
|
|
|
key: ast::PropName::Ident(ast::Ident::new("main".into(), span)),
|
|
|
|
value: Box::new(if module_record.is_entry {
|
|
|
|
ast::Expr::Member(ast::MemberExpr {
|
|
|
|
span,
|
|
|
|
obj: Box::new(ast::Expr::MetaProp(ast::MetaPropExpr {
|
|
|
|
span,
|
|
|
|
kind: ast::MetaPropKind::ImportMeta,
|
|
|
|
})),
|
|
|
|
prop: ast::MemberProp::Ident(ast::Ident::new("main".into(), span)),
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
ast::Expr::Lit(ast::Lit::Bool(ast::Bool { span, value: false }))
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-27 16:54:09 -04:00
|
|
|
impl From<TsConfig> for deno_ast::EmitOptions {
|
|
|
|
fn from(config: TsConfig) -> Self {
|
|
|
|
let options: EmitConfigOptions = serde_json::from_value(config.0).unwrap();
|
2022-01-13 11:58:00 -05:00
|
|
|
let imports_not_used_as_values =
|
|
|
|
match options.imports_not_used_as_values.as_str() {
|
|
|
|
"preserve" => deno_ast::ImportsNotUsedAsValues::Preserve,
|
|
|
|
"error" => deno_ast::ImportsNotUsedAsValues::Error,
|
|
|
|
_ => deno_ast::ImportsNotUsedAsValues::Remove,
|
|
|
|
};
|
|
|
|
let (transform_jsx, jsx_automatic, jsx_development) =
|
|
|
|
match options.jsx.as_str() {
|
|
|
|
"react" => (true, false, false),
|
|
|
|
"react-jsx" => (true, true, false),
|
|
|
|
"react-jsxdev" => (true, true, true),
|
|
|
|
_ => (false, false, false),
|
|
|
|
};
|
|
|
|
deno_ast::EmitOptions {
|
|
|
|
emit_metadata: options.emit_decorator_metadata,
|
|
|
|
imports_not_used_as_values,
|
|
|
|
inline_source_map: options.inline_source_map,
|
|
|
|
inline_sources: options.inline_sources,
|
|
|
|
source_map: options.source_map,
|
|
|
|
jsx_automatic,
|
|
|
|
jsx_development,
|
|
|
|
jsx_factory: options.jsx_factory,
|
|
|
|
jsx_fragment_factory: options.jsx_fragment_factory,
|
|
|
|
jsx_import_source: options.jsx_import_source,
|
|
|
|
transform_jsx,
|
|
|
|
var_decl_imports: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|