mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
427b73c3ec
This commit deprecates "--unstable" flag. When "--unstable" flag is encountered a warning like this is printed: ``` The `--unstable` flag is deprecated, use granular `--unstable-*` flags instead. Learn more at: https://docs.deno.com/runtime/manual/tools/unstable_flags ``` When "--unstable" flag is used and an unstable API is called an additional warning like this is printed for each API call: ``` The `Deno.dlopen` API was used with `--unstable` flag. The `--unstable` flag is deprecated, use granular `--unstable-ffi` instead. Learn more at: https://docs.deno.com/runtime/manual/tools/unstable_flags ``` When no "--unstable-*" flag is provided and an unstable API is called following warning is issued before exiting: ``` Unstable API 'Deno.dlopen'. The `--unstable-ffi` flag must be provided. ``` --------- Signed-off-by: Divy Srivastava <dj.srivastava23@gmail.com> Signed-off-by: Bartek Iwańczuk <biwanczuk@gmail.com> Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com> Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>
112 lines
2.5 KiB
Rust
112 lines
2.5 KiB
Rust
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
use deno_core::op2;
|
|
use deno_core::OpState;
|
|
use serde::Serialize;
|
|
|
|
use crate::BootstrapOptions;
|
|
|
|
deno_core::extension!(
|
|
deno_bootstrap,
|
|
ops = [
|
|
op_bootstrap_args,
|
|
op_bootstrap_pid,
|
|
op_bootstrap_numcpus,
|
|
op_bootstrap_user_agent,
|
|
op_bootstrap_language,
|
|
op_bootstrap_log_level,
|
|
op_bootstrap_no_color,
|
|
op_bootstrap_is_tty,
|
|
op_bootstrap_unstable_args,
|
|
op_snapshot_options,
|
|
],
|
|
options = {
|
|
snapshot_options: Option<SnapshotOptions>,
|
|
},
|
|
state = |state, options| {
|
|
if let Some(snapshot_options) = options.snapshot_options {
|
|
state.put::<SnapshotOptions>(snapshot_options);
|
|
}
|
|
},
|
|
);
|
|
|
|
#[derive(Serialize, Default)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct SnapshotOptions {
|
|
pub deno_version: String,
|
|
pub ts_version: String,
|
|
pub v8_version: &'static str,
|
|
pub target: String,
|
|
}
|
|
|
|
// Note: Called at snapshot time, op perf is not a concern.
|
|
#[op2]
|
|
#[serde]
|
|
pub fn op_snapshot_options(state: &mut OpState) -> SnapshotOptions {
|
|
state.take::<SnapshotOptions>()
|
|
}
|
|
|
|
#[op2]
|
|
#[serde]
|
|
pub fn op_bootstrap_args(state: &mut OpState) -> Vec<String> {
|
|
state.borrow::<BootstrapOptions>().args.clone()
|
|
}
|
|
|
|
#[op2(fast)]
|
|
#[smi]
|
|
pub fn op_bootstrap_pid() -> u32 {
|
|
std::process::id()
|
|
}
|
|
|
|
#[op2(fast)]
|
|
#[smi]
|
|
pub fn op_bootstrap_numcpus(state: &mut OpState) -> u32 {
|
|
state.borrow::<BootstrapOptions>().cpu_count as u32
|
|
}
|
|
|
|
#[op2]
|
|
#[string]
|
|
pub fn op_bootstrap_user_agent(state: &mut OpState) -> String {
|
|
state.borrow::<BootstrapOptions>().user_agent.clone()
|
|
}
|
|
|
|
#[op2]
|
|
#[serde]
|
|
pub fn op_bootstrap_unstable_args(state: &mut OpState) -> Vec<String> {
|
|
let options = state.borrow::<BootstrapOptions>();
|
|
if options.unstable {
|
|
return vec!["--unstable".to_string()];
|
|
}
|
|
|
|
let mut flags = Vec::new();
|
|
for (name, _, id) in crate::UNSTABLE_GRANULAR_FLAGS.iter() {
|
|
if options.unstable_features.contains(id) {
|
|
flags.push(format!("--unstable-{}", name));
|
|
}
|
|
}
|
|
flags
|
|
}
|
|
|
|
#[op2]
|
|
#[string]
|
|
pub fn op_bootstrap_language(state: &mut OpState) -> String {
|
|
state.borrow::<BootstrapOptions>().locale.clone()
|
|
}
|
|
|
|
#[op2(fast)]
|
|
#[smi]
|
|
pub fn op_bootstrap_log_level(state: &mut OpState) -> i32 {
|
|
state.borrow::<BootstrapOptions>().log_level as i32
|
|
}
|
|
|
|
#[op2(fast)]
|
|
pub fn op_bootstrap_no_color(state: &mut OpState) -> bool {
|
|
let options = state.borrow::<BootstrapOptions>();
|
|
options.no_color
|
|
}
|
|
|
|
#[op2(fast)]
|
|
pub fn op_bootstrap_is_tty(state: &mut OpState) -> bool {
|
|
let options = state.borrow::<BootstrapOptions>();
|
|
options.is_tty
|
|
}
|