2023-01-02 16:00:42 -05:00
|
|
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
2020-12-13 13:45:53 -05:00
|
|
|
|
2022-07-04 18:12:41 -04:00
|
|
|
use std::env;
|
|
|
|
use std::path::PathBuf;
|
|
|
|
|
2023-02-20 15:45:34 -05:00
|
|
|
#[cfg(all(
|
|
|
|
not(feature = "docsrs"),
|
|
|
|
not(feature = "dont_create_runtime_snapshot")
|
|
|
|
))]
|
|
|
|
mod startup_snapshot {
|
2022-07-04 18:12:41 -04:00
|
|
|
use super::*;
|
2023-02-08 16:40:18 -05:00
|
|
|
use deno_ast::MediaType;
|
|
|
|
use deno_ast::ParseParams;
|
|
|
|
use deno_ast::SourceTextInfo;
|
2023-02-20 15:45:34 -05:00
|
|
|
use deno_cache::SqliteBackedCache;
|
2023-02-08 16:40:18 -05:00
|
|
|
use deno_core::error::AnyError;
|
2023-02-20 15:45:34 -05:00
|
|
|
use deno_core::snapshot_util::*;
|
|
|
|
use deno_core::Extension;
|
2023-02-08 16:40:18 -05:00
|
|
|
use deno_core::ExtensionFileSource;
|
2023-03-21 18:33:12 -04:00
|
|
|
use deno_core::ModuleCode;
|
2023-05-10 10:23:26 -04:00
|
|
|
use deno_http::DefaultHttpPropertyExtractor;
|
2023-03-17 14:22:15 -04:00
|
|
|
use std::path::Path;
|
2023-02-08 16:40:18 -05:00
|
|
|
|
|
|
|
fn transpile_ts_for_snapshotting(
|
|
|
|
file_source: &ExtensionFileSource,
|
2023-03-21 18:33:12 -04:00
|
|
|
) -> Result<ModuleCode, AnyError> {
|
2023-03-21 11:46:40 -04:00
|
|
|
let media_type = MediaType::from_path(Path::new(&file_source.specifier));
|
2023-02-08 16:40:18 -05:00
|
|
|
|
|
|
|
let should_transpile = match media_type {
|
|
|
|
MediaType::JavaScript => false,
|
2023-02-14 11:38:45 -05:00
|
|
|
MediaType::Mjs => false,
|
2023-02-08 16:40:18 -05:00
|
|
|
MediaType::TypeScript => true,
|
2023-02-14 11:38:45 -05:00
|
|
|
_ => panic!(
|
|
|
|
"Unsupported media type for snapshotting {media_type:?} for file {}",
|
|
|
|
file_source.specifier
|
|
|
|
),
|
2023-02-08 16:40:18 -05:00
|
|
|
};
|
2023-06-13 11:45:06 -04:00
|
|
|
let code = file_source.load();
|
2023-02-19 19:11:56 -05:00
|
|
|
|
2023-02-08 16:40:18 -05:00
|
|
|
if !should_transpile {
|
2023-02-20 15:45:34 -05:00
|
|
|
return Ok(code);
|
2023-02-08 16:40:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
let parsed = deno_ast::parse_module(ParseParams {
|
|
|
|
specifier: file_source.specifier.to_string(),
|
2023-04-04 08:46:31 -04:00
|
|
|
text_info: SourceTextInfo::from_string(code.as_str().to_owned()),
|
2023-02-08 16:40:18 -05:00
|
|
|
media_type,
|
|
|
|
capture_tokens: false,
|
|
|
|
scope_analysis: false,
|
|
|
|
maybe_syntax: None,
|
|
|
|
})?;
|
2023-02-14 11:38:45 -05:00
|
|
|
let transpiled_source = parsed.transpile(&deno_ast::EmitOptions {
|
|
|
|
imports_not_used_as_values: deno_ast::ImportsNotUsedAsValues::Remove,
|
|
|
|
inline_source_map: false,
|
|
|
|
..Default::default()
|
|
|
|
})?;
|
|
|
|
|
2023-03-21 18:33:12 -04:00
|
|
|
Ok(transpiled_source.text.into())
|
2023-02-08 16:40:18 -05:00
|
|
|
}
|
|
|
|
|
2023-03-17 14:22:15 -04:00
|
|
|
#[derive(Clone)]
|
2022-07-04 18:12:41 -04:00
|
|
|
struct Permissions;
|
|
|
|
|
|
|
|
impl deno_fetch::FetchPermissions for Permissions {
|
|
|
|
fn check_net_url(
|
|
|
|
&mut self,
|
|
|
|
_url: &deno_core::url::Url,
|
2022-09-27 16:36:33 -04:00
|
|
|
_api_name: &str,
|
2022-07-04 18:12:41 -04:00
|
|
|
) -> Result<(), deno_core::error::AnyError> {
|
|
|
|
unreachable!("snapshotting!")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_read(
|
|
|
|
&mut self,
|
|
|
|
_p: &Path,
|
2022-09-27 16:36:33 -04:00
|
|
|
_api_name: &str,
|
2022-07-04 18:12:41 -04:00
|
|
|
) -> Result<(), deno_core::error::AnyError> {
|
|
|
|
unreachable!("snapshotting!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl deno_websocket::WebSocketPermissions for Permissions {
|
|
|
|
fn check_net_url(
|
|
|
|
&mut self,
|
|
|
|
_url: &deno_core::url::Url,
|
2022-09-27 16:36:33 -04:00
|
|
|
_api_name: &str,
|
2022-07-04 18:12:41 -04:00
|
|
|
) -> Result<(), deno_core::error::AnyError> {
|
|
|
|
unreachable!("snapshotting!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl deno_web::TimersPermission for Permissions {
|
|
|
|
fn allow_hrtime(&mut self) -> bool {
|
|
|
|
unreachable!("snapshotting!")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_unstable(
|
|
|
|
&self,
|
|
|
|
_state: &deno_core::OpState,
|
|
|
|
_api_name: &'static str,
|
|
|
|
) {
|
|
|
|
unreachable!("snapshotting!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl deno_ffi::FfiPermissions for Permissions {
|
|
|
|
fn check(
|
|
|
|
&mut self,
|
|
|
|
_path: Option<&Path>,
|
|
|
|
) -> Result<(), deno_core::error::AnyError> {
|
|
|
|
unreachable!("snapshotting!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-05 10:06:44 -04:00
|
|
|
impl deno_napi::NapiPermissions for Permissions {
|
|
|
|
fn check(
|
|
|
|
&mut self,
|
|
|
|
_path: Option<&Path>,
|
|
|
|
) -> Result<(), deno_core::error::AnyError> {
|
|
|
|
unreachable!("snapshotting!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-24 12:07:49 -04:00
|
|
|
impl deno_node::NodePermissions for Permissions {
|
2023-05-27 09:42:20 -04:00
|
|
|
fn check_net_url(
|
|
|
|
&mut self,
|
|
|
|
_url: &deno_core::url::Url,
|
|
|
|
_api_name: &str,
|
|
|
|
) -> Result<(), deno_core::error::AnyError> {
|
|
|
|
unreachable!("snapshotting!")
|
|
|
|
}
|
2023-04-24 21:07:48 -04:00
|
|
|
fn check_read(&self, _p: &Path) -> Result<(), deno_core::error::AnyError> {
|
2022-08-24 12:07:49 -04:00
|
|
|
unreachable!("snapshotting!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-04 18:12:41 -04:00
|
|
|
impl deno_net::NetPermissions for Permissions {
|
|
|
|
fn check_net<T: AsRef<str>>(
|
|
|
|
&mut self,
|
|
|
|
_host: &(T, Option<u16>),
|
2022-09-27 16:36:33 -04:00
|
|
|
_api_name: &str,
|
2022-07-04 18:12:41 -04:00
|
|
|
) -> Result<(), deno_core::error::AnyError> {
|
|
|
|
unreachable!("snapshotting!")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_read(
|
|
|
|
&mut self,
|
|
|
|
_p: &Path,
|
2022-09-27 16:36:33 -04:00
|
|
|
_api_name: &str,
|
2022-07-04 18:12:41 -04:00
|
|
|
) -> Result<(), deno_core::error::AnyError> {
|
|
|
|
unreachable!("snapshotting!")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_write(
|
|
|
|
&mut self,
|
|
|
|
_p: &Path,
|
2022-09-27 16:36:33 -04:00
|
|
|
_api_name: &str,
|
2022-07-04 18:12:41 -04:00
|
|
|
) -> Result<(), deno_core::error::AnyError> {
|
|
|
|
unreachable!("snapshotting!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-07 04:13:44 -05:00
|
|
|
impl deno_fs::FsPermissions for Permissions {
|
|
|
|
fn check_read(
|
|
|
|
&mut self,
|
|
|
|
_path: &Path,
|
|
|
|
_api_name: &str,
|
|
|
|
) -> Result<(), AnyError> {
|
|
|
|
unreachable!("snapshotting!")
|
|
|
|
}
|
|
|
|
|
2023-04-12 09:13:32 -04:00
|
|
|
fn check_read_all(&mut self, _api_name: &str) -> Result<(), AnyError> {
|
|
|
|
unreachable!("snapshotting!")
|
|
|
|
}
|
|
|
|
|
2023-03-07 04:13:44 -05:00
|
|
|
fn check_read_blind(
|
|
|
|
&mut self,
|
|
|
|
_path: &Path,
|
|
|
|
_display: &str,
|
|
|
|
_api_name: &str,
|
|
|
|
) -> Result<(), AnyError> {
|
|
|
|
unreachable!("snapshotting!")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_write(
|
|
|
|
&mut self,
|
|
|
|
_path: &Path,
|
|
|
|
_api_name: &str,
|
|
|
|
) -> Result<(), AnyError> {
|
|
|
|
unreachable!("snapshotting!")
|
|
|
|
}
|
|
|
|
|
2023-04-12 09:13:32 -04:00
|
|
|
fn check_write_all(&mut self, _api_name: &str) -> Result<(), AnyError> {
|
2023-03-07 04:13:44 -05:00
|
|
|
unreachable!("snapshotting!")
|
|
|
|
}
|
|
|
|
|
2023-04-12 09:13:32 -04:00
|
|
|
fn check_write_blind(
|
|
|
|
&mut self,
|
|
|
|
_path: &Path,
|
|
|
|
_display: &str,
|
|
|
|
_api_name: &str,
|
|
|
|
) -> Result<(), AnyError> {
|
2023-03-07 04:13:44 -05:00
|
|
|
unreachable!("snapshotting!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-22 00:13:24 -04:00
|
|
|
impl deno_kv::sqlite::SqliteDbHandlerPermissions for Permissions {
|
|
|
|
fn check_read(
|
|
|
|
&mut self,
|
|
|
|
_path: &Path,
|
|
|
|
_api_name: &str,
|
|
|
|
) -> Result<(), AnyError> {
|
|
|
|
unreachable!("snapshotting!")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_write(
|
|
|
|
&mut self,
|
|
|
|
_path: &Path,
|
|
|
|
_api_name: &str,
|
|
|
|
) -> Result<(), AnyError> {
|
|
|
|
unreachable!("snapshotting!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-17 14:22:15 -04:00
|
|
|
deno_core::extension!(runtime,
|
|
|
|
deps = [
|
|
|
|
deno_webidl,
|
|
|
|
deno_console,
|
|
|
|
deno_url,
|
|
|
|
deno_tls,
|
|
|
|
deno_web,
|
|
|
|
deno_fetch,
|
|
|
|
deno_cache,
|
|
|
|
deno_websocket,
|
|
|
|
deno_webstorage,
|
|
|
|
deno_crypto,
|
|
|
|
deno_broadcast_channel,
|
|
|
|
// FIXME(bartlomieju): this should be reenabled
|
|
|
|
// "deno_node",
|
|
|
|
deno_ffi,
|
|
|
|
deno_net,
|
|
|
|
deno_napi,
|
|
|
|
deno_http,
|
|
|
|
deno_io,
|
|
|
|
deno_fs
|
|
|
|
],
|
|
|
|
esm = [
|
2023-03-09 07:10:54 -05:00
|
|
|
dir "js",
|
|
|
|
"01_errors.js",
|
|
|
|
"01_version.ts",
|
|
|
|
"06_util.js",
|
|
|
|
"10_permissions.js",
|
|
|
|
"11_workers.js",
|
|
|
|
"13_buffer.js",
|
|
|
|
"30_os.js",
|
|
|
|
"40_fs_events.js",
|
|
|
|
"40_http.js",
|
|
|
|
"40_process.js",
|
|
|
|
"40_signals.js",
|
|
|
|
"40_tty.js",
|
|
|
|
"41_prompt.js",
|
|
|
|
"90_deno_ns.js",
|
2023-03-17 14:22:15 -04:00
|
|
|
"98_global_scope.js"
|
|
|
|
],
|
|
|
|
);
|
|
|
|
|
2023-06-13 11:45:06 -04:00
|
|
|
#[cfg(not(feature = "exclude_js_main_from_snapshot"))]
|
2023-03-17 14:22:15 -04:00
|
|
|
deno_core::extension!(
|
|
|
|
runtime_main,
|
|
|
|
deps = [runtime],
|
|
|
|
customizer = |ext: &mut deno_core::ExtensionBuilder| {
|
|
|
|
ext.esm(vec![ExtensionFileSource {
|
2023-03-18 16:09:13 -04:00
|
|
|
specifier: "ext:runtime_main/js/99_main.js",
|
2023-06-13 11:45:06 -04:00
|
|
|
code: include_str!("js/99_main.js"),
|
2023-03-17 14:22:15 -04:00
|
|
|
}]);
|
2023-05-09 06:37:13 -04:00
|
|
|
ext.esm_entry_point("ext:runtime_main/js/99_main.js");
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2023-06-13 11:45:06 -04:00
|
|
|
#[cfg(feature = "exclude_js_main_from_snapshot")]
|
2023-05-09 06:37:13 -04:00
|
|
|
deno_core::extension!(
|
|
|
|
runtime_main,
|
|
|
|
deps = [runtime],
|
|
|
|
customizer = |ext: &mut deno_core::ExtensionBuilder| {
|
|
|
|
eprintln!("I am here!!!");
|
|
|
|
ext.esm_entry_point("ext:runtime/90_deno_ns.js");
|
2023-03-17 14:22:15 -04:00
|
|
|
}
|
|
|
|
);
|
2023-02-13 09:34:32 -05:00
|
|
|
|
2023-03-17 14:22:15 -04:00
|
|
|
pub fn create_runtime_snapshot(snapshot_path: PathBuf) {
|
2023-03-16 13:36:53 -04:00
|
|
|
// NOTE(bartlomieju): ordering is important here, keep it in sync with
|
|
|
|
// `runtime/worker.rs`, `runtime/web_worker.rs` and `cli/build.rs`!
|
2023-05-05 12:44:24 -04:00
|
|
|
let fs = std::sync::Arc::new(deno_fs::RealFs);
|
2023-03-17 14:22:15 -04:00
|
|
|
let extensions: Vec<Extension> = vec![
|
2023-06-13 11:45:06 -04:00
|
|
|
deno_webidl::deno_webidl::init(),
|
|
|
|
deno_console::deno_console::init(),
|
|
|
|
deno_url::deno_url::init(),
|
|
|
|
deno_web::deno_web::init::<Permissions>(
|
2022-07-04 18:12:41 -04:00
|
|
|
deno_web::BlobStore::default(),
|
|
|
|
Default::default(),
|
|
|
|
),
|
2023-06-13 11:45:06 -04:00
|
|
|
deno_fetch::deno_fetch::init::<Permissions>(Default::default()),
|
|
|
|
deno_cache::deno_cache::init::<SqliteBackedCache>(None),
|
|
|
|
deno_websocket::deno_websocket::init::<Permissions>(
|
2023-03-09 09:56:19 -05:00
|
|
|
"".to_owned(),
|
|
|
|
None,
|
|
|
|
None,
|
|
|
|
),
|
2023-06-13 11:45:06 -04:00
|
|
|
deno_webstorage::deno_webstorage::init(None),
|
|
|
|
deno_crypto::deno_crypto::init(None),
|
|
|
|
deno_broadcast_channel::deno_broadcast_channel::init(
|
2022-07-04 18:12:41 -04:00
|
|
|
deno_broadcast_channel::InMemoryBroadcastChannel::default(),
|
|
|
|
false, // No --unstable.
|
|
|
|
),
|
2023-06-13 11:45:06 -04:00
|
|
|
deno_ffi::deno_ffi::init::<Permissions>(false),
|
|
|
|
deno_net::deno_net::init::<Permissions>(
|
2022-07-04 18:12:41 -04:00
|
|
|
None, false, // No --unstable.
|
|
|
|
None,
|
|
|
|
),
|
2023-06-13 11:45:06 -04:00
|
|
|
deno_tls::deno_tls::init(),
|
|
|
|
deno_kv::deno_kv::init(
|
2023-03-22 00:13:24 -04:00
|
|
|
deno_kv::sqlite::SqliteDbHandler::<Permissions>::new(None),
|
|
|
|
false, // No --unstable
|
|
|
|
),
|
2023-06-13 11:45:06 -04:00
|
|
|
deno_napi::deno_napi::init::<Permissions>(),
|
|
|
|
deno_http::deno_http::init::<DefaultHttpPropertyExtractor>(),
|
|
|
|
deno_io::deno_io::init(Default::default()),
|
|
|
|
deno_fs::deno_fs::init::<Permissions>(false, fs.clone()),
|
|
|
|
runtime::init(),
|
2023-02-14 11:38:45 -05:00
|
|
|
// FIXME(bartlomieju): these extensions are specified last, because they
|
|
|
|
// depend on `runtime`, even though it should be other way around
|
2023-06-13 11:45:06 -04:00
|
|
|
deno_node::deno_node::init::<Permissions>(None, fs),
|
|
|
|
runtime_main::init(),
|
2022-07-04 18:12:41 -04:00
|
|
|
];
|
|
|
|
|
2023-06-13 11:45:06 -04:00
|
|
|
create_snapshot(CreateSnapshotOptions {
|
2022-11-21 08:36:26 -05:00
|
|
|
cargo_manifest_dir: env!("CARGO_MANIFEST_DIR"),
|
|
|
|
snapshot_path,
|
|
|
|
startup_snapshot: None,
|
2023-03-09 19:22:27 -05:00
|
|
|
extensions,
|
2023-03-16 23:19:46 -04:00
|
|
|
compression_cb: None,
|
2023-02-08 16:40:18 -05:00
|
|
|
snapshot_module_load_cb: Some(Box::new(transpile_ts_for_snapshotting)),
|
2022-07-04 18:12:41 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-11 12:01:30 -04:00
|
|
|
fn main() {
|
2022-07-04 18:12:41 -04:00
|
|
|
// To debug snapshot issues uncomment:
|
|
|
|
// op_fetch_asset::trace_serializer();
|
|
|
|
|
|
|
|
println!("cargo:rustc-env=TARGET={}", env::var("TARGET").unwrap());
|
|
|
|
println!("cargo:rustc-env=PROFILE={}", env::var("PROFILE").unwrap());
|
|
|
|
let o = PathBuf::from(env::var_os("OUT_DIR").unwrap());
|
|
|
|
|
|
|
|
// Main snapshot
|
2022-11-21 08:36:26 -05:00
|
|
|
let runtime_snapshot_path = o.join("RUNTIME_SNAPSHOT.bin");
|
2022-07-04 18:12:41 -04:00
|
|
|
|
|
|
|
// If we're building on docs.rs we just create
|
|
|
|
// and empty snapshot file and return, because `rusty_v8`
|
|
|
|
// doesn't actually compile on docs.rs
|
|
|
|
if env::var_os("DOCS_RS").is_some() {
|
|
|
|
let snapshot_slice = &[];
|
2023-02-20 15:45:34 -05:00
|
|
|
#[allow(clippy::needless_borrow)]
|
2023-05-10 20:06:59 -04:00
|
|
|
#[allow(clippy::disallowed_methods)]
|
2022-07-04 18:12:41 -04:00
|
|
|
std::fs::write(&runtime_snapshot_path, snapshot_slice).unwrap();
|
2021-08-11 12:01:30 -04:00
|
|
|
}
|
2020-12-13 13:45:53 -05:00
|
|
|
|
2023-02-20 15:45:34 -05:00
|
|
|
#[cfg(all(
|
|
|
|
not(feature = "docsrs"),
|
|
|
|
not(feature = "dont_create_runtime_snapshot")
|
|
|
|
))]
|
2023-03-17 14:22:15 -04:00
|
|
|
startup_snapshot::create_runtime_snapshot(runtime_snapshot_path)
|
2020-12-13 13:45:53 -05:00
|
|
|
}
|