This reverts commit 0cfd5fbece
.
The original PR messed up syntax higlighting of aliases and causes
panics of completion in the presence of alias.
<!--
if this PR closes one or more issues, you can automatically link the PR
with
them by using one of the [*linking
keywords*](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword),
e.g.
- this PR should close #xxxx
- fixes #xxxx
you can also mention related issues, PRs or discussions!
-->
# Description
<!--
Thank you for improving Nushell. Please, check our [contributing
guide](../CONTRIBUTING.md) and talk to the core team before making major
changes.
Description of your pull request goes here. **Provide examples and/or
screenshots** if your changes affect the user experience.
-->
# User-Facing Changes
<!-- List of all changes that impact the user experience here. This
helps us keep track of breaking changes. -->
# Tests + Formatting
<!--
Don't forget to add tests that cover your changes.
Make sure you've run and fixed any issues with these commands:
- `cargo fmt --all -- --check` to check standard code formatting (`cargo
fmt --all` applies these changes)
- `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used` to
check that you're using the standard code style
- `cargo test --workspace` to check that all tests pass (on Windows make
sure to [enable developer
mode](https://learn.microsoft.com/en-us/windows/apps/get-started/developer-mode-features-and-debugging))
- `cargo run -- -c "use toolkit.nu; toolkit test stdlib"` to run the
tests for the standard library
> **Note**
> from `nushell` you can also use the `toolkit` as follows
> ```bash
> use toolkit.nu # or use an `env_change` hook to activate it
automatically
> toolkit check pr
> ```
-->
# After Submitting
<!-- If your PR had any user-facing changes, update [the
documentation](https://github.com/nushell/nushell.github.io) after the
PR is merged, if necessary. This will help us keep the docs up to date.
-->
475 lines
15 KiB
Rust
475 lines
15 KiB
Rust
use crate::{
|
|
ast::{Assignment, Block, Call, Expr, Expression, ExternalArgument},
|
|
debugger::{DebugContext, WithoutDebug},
|
|
engine::{EngineState, StateWorkingSet},
|
|
eval_base::Eval,
|
|
record, Config, HistoryFileFormat, PipelineData, Record, ShellError, Span, Value, VarId,
|
|
};
|
|
use nu_system::os_info::{get_kernel_version, get_os_arch, get_os_family, get_os_name};
|
|
use std::{
|
|
borrow::Cow,
|
|
path::{Path, PathBuf},
|
|
};
|
|
|
|
/// Create a Value for `$nu`.
|
|
pub(crate) fn create_nu_constant(engine_state: &EngineState, span: Span) -> Value {
|
|
fn canonicalize_path(engine_state: &EngineState, path: &Path) -> PathBuf {
|
|
#[allow(deprecated)]
|
|
let cwd = engine_state.current_work_dir();
|
|
|
|
if path.exists() {
|
|
match nu_path::canonicalize_with(path, cwd) {
|
|
Ok(canon_path) => canon_path,
|
|
Err(_) => path.to_owned(),
|
|
}
|
|
} else {
|
|
path.to_owned()
|
|
}
|
|
}
|
|
|
|
let mut record = Record::new();
|
|
|
|
let config_path = match nu_path::config_dir() {
|
|
Some(mut path) => {
|
|
path.push("nushell");
|
|
Ok(canonicalize_path(engine_state, &path))
|
|
}
|
|
None => Err(Value::error(
|
|
ShellError::ConfigDirNotFound { span: Some(span) },
|
|
span,
|
|
)),
|
|
};
|
|
|
|
record.push(
|
|
"default-config-dir",
|
|
config_path.as_ref().map_or_else(
|
|
|e| e.clone(),
|
|
|path| Value::string(path.to_string_lossy(), span),
|
|
),
|
|
);
|
|
|
|
record.push(
|
|
"config-path",
|
|
if let Some(path) = engine_state.get_config_path("config-path") {
|
|
let canon_config_path = canonicalize_path(engine_state, path);
|
|
Value::string(canon_config_path.to_string_lossy(), span)
|
|
} else {
|
|
config_path.clone().map_or_else(
|
|
|e| e,
|
|
|mut path| {
|
|
path.push("config.nu");
|
|
let canon_config_path = canonicalize_path(engine_state, &path);
|
|
Value::string(canon_config_path.to_string_lossy(), span)
|
|
},
|
|
)
|
|
},
|
|
);
|
|
|
|
record.push(
|
|
"env-path",
|
|
if let Some(path) = engine_state.get_config_path("env-path") {
|
|
let canon_env_path = canonicalize_path(engine_state, path);
|
|
Value::string(canon_env_path.to_string_lossy(), span)
|
|
} else {
|
|
config_path.clone().map_or_else(
|
|
|e| e,
|
|
|mut path| {
|
|
path.push("env.nu");
|
|
let canon_env_path = canonicalize_path(engine_state, &path);
|
|
Value::string(canon_env_path.to_string_lossy(), span)
|
|
},
|
|
)
|
|
},
|
|
);
|
|
|
|
record.push(
|
|
"history-path",
|
|
config_path.clone().map_or_else(
|
|
|e| e,
|
|
|mut path| {
|
|
match engine_state.config.history.file_format {
|
|
HistoryFileFormat::Sqlite => {
|
|
path.push("history.sqlite3");
|
|
}
|
|
HistoryFileFormat::PlainText => {
|
|
path.push("history.txt");
|
|
}
|
|
}
|
|
let canon_hist_path = canonicalize_path(engine_state, &path);
|
|
Value::string(canon_hist_path.to_string_lossy(), span)
|
|
},
|
|
),
|
|
);
|
|
|
|
record.push(
|
|
"loginshell-path",
|
|
config_path.clone().map_or_else(
|
|
|e| e,
|
|
|mut path| {
|
|
path.push("login.nu");
|
|
let canon_login_path = canonicalize_path(engine_state, &path);
|
|
Value::string(canon_login_path.to_string_lossy(), span)
|
|
},
|
|
),
|
|
);
|
|
|
|
#[cfg(feature = "plugin")]
|
|
{
|
|
record.push(
|
|
"plugin-path",
|
|
if let Some(path) = &engine_state.plugin_path {
|
|
let canon_plugin_path = canonicalize_path(engine_state, path);
|
|
Value::string(canon_plugin_path.to_string_lossy(), span)
|
|
} else {
|
|
// If there are no signatures, we should still populate the plugin path
|
|
config_path.clone().map_or_else(
|
|
|e| e,
|
|
|mut path| {
|
|
path.push("plugin.msgpackz");
|
|
let canonical_plugin_path = canonicalize_path(engine_state, &path);
|
|
Value::string(canonical_plugin_path.to_string_lossy(), span)
|
|
},
|
|
)
|
|
},
|
|
);
|
|
}
|
|
|
|
record.push(
|
|
"home-path",
|
|
if let Some(path) = nu_path::home_dir() {
|
|
let canon_home_path = canonicalize_path(engine_state, &path);
|
|
Value::string(canon_home_path.to_string_lossy(), span)
|
|
} else {
|
|
Value::error(
|
|
ShellError::IOError {
|
|
msg: "Could not get home path".into(),
|
|
},
|
|
span,
|
|
)
|
|
},
|
|
);
|
|
|
|
record.push(
|
|
"data-dir",
|
|
if let Some(path) = nu_path::data_dir() {
|
|
let mut canon_data_path = canonicalize_path(engine_state, &path);
|
|
canon_data_path.push("nushell");
|
|
Value::string(canon_data_path.to_string_lossy(), span)
|
|
} else {
|
|
Value::error(
|
|
ShellError::IOError {
|
|
msg: "Could not get data path".into(),
|
|
},
|
|
span,
|
|
)
|
|
},
|
|
);
|
|
|
|
record.push(
|
|
"cache-dir",
|
|
if let Some(path) = nu_path::cache_dir() {
|
|
let mut canon_cache_path = canonicalize_path(engine_state, &path);
|
|
canon_cache_path.push("nushell");
|
|
Value::string(canon_cache_path.to_string_lossy(), span)
|
|
} else {
|
|
Value::error(
|
|
ShellError::IOError {
|
|
msg: "Could not get cache path".into(),
|
|
},
|
|
span,
|
|
)
|
|
},
|
|
);
|
|
|
|
// Create a system level directory for nushell scripts, modules, completions, etc
|
|
// that can be changed by setting the NU_VENDOR_AUTOLOAD_DIR env var on any platform
|
|
// before nushell is compiled OR if NU_VENDOR_AUTOLOAD_DIR is not set for non-windows
|
|
// systems, the PREFIX env var can be set before compile and used as PREFIX/nushell/vendor/autoload
|
|
record.push(
|
|
"vendor-autoload-dir",
|
|
// pseudo code
|
|
// if env var NU_VENDOR_AUTOLOAD_DIR is set, in any platform, use it
|
|
// if not, if windows, use ALLUSERPROFILE\nushell\vendor\autoload
|
|
// if not, if non-windows, if env var PREFIX is set, use PREFIX/share/nushell/vendor/autoload
|
|
// if not, use the default /usr/share/nushell/vendor/autoload
|
|
|
|
// check to see if NU_VENDOR_AUTOLOAD_DIR env var is set, if not, use the default
|
|
if let Some(path) = get_vendor_autoload_dir(engine_state) {
|
|
Value::string(path.to_string_lossy(), span)
|
|
} else {
|
|
Value::error(ShellError::ConfigDirNotFound { span: Some(span) }, span)
|
|
},
|
|
);
|
|
|
|
record.push("temp-path", {
|
|
let canon_temp_path = canonicalize_path(engine_state, &std::env::temp_dir());
|
|
Value::string(canon_temp_path.to_string_lossy(), span)
|
|
});
|
|
|
|
record.push("pid", Value::int(std::process::id().into(), span));
|
|
|
|
record.push("os-info", {
|
|
let ver = get_kernel_version();
|
|
Value::record(
|
|
record! {
|
|
"name" => Value::string(get_os_name(), span),
|
|
"arch" => Value::string(get_os_arch(), span),
|
|
"family" => Value::string(get_os_family(), span),
|
|
"kernel_version" => Value::string(ver, span),
|
|
},
|
|
span,
|
|
)
|
|
});
|
|
|
|
record.push(
|
|
"startup-time",
|
|
Value::duration(engine_state.get_startup_time(), span),
|
|
);
|
|
|
|
record.push(
|
|
"is-interactive",
|
|
Value::bool(engine_state.is_interactive, span),
|
|
);
|
|
|
|
record.push("is-login", Value::bool(engine_state.is_login, span));
|
|
|
|
record.push(
|
|
"history-enabled",
|
|
Value::bool(engine_state.history_enabled, span),
|
|
);
|
|
|
|
record.push(
|
|
"current-exe",
|
|
if let Ok(current_exe) = std::env::current_exe() {
|
|
Value::string(current_exe.to_string_lossy(), span)
|
|
} else {
|
|
Value::error(
|
|
ShellError::IOError {
|
|
msg: "Could not get current executable path".to_string(),
|
|
},
|
|
span,
|
|
)
|
|
},
|
|
);
|
|
|
|
Value::record(record, span)
|
|
}
|
|
|
|
pub fn get_vendor_autoload_dir(engine_state: &EngineState) -> Option<PathBuf> {
|
|
// pseudo code
|
|
// if env var NU_VENDOR_AUTOLOAD_DIR is set, in any platform, use it
|
|
// if not, if windows, use ALLUSERPROFILE\nushell\vendor\autoload
|
|
// if not, if non-windows, if env var PREFIX is set, use PREFIX/share/nushell/vendor/autoload
|
|
// if not, use the default /usr/share/nushell/vendor/autoload
|
|
|
|
// check to see if NU_VENDOR_AUTOLOAD_DIR env var is set, if not, use the default
|
|
Some(
|
|
option_env!("NU_VENDOR_AUTOLOAD_DIR")
|
|
.map(String::from)
|
|
.unwrap_or_else(|| {
|
|
if cfg!(windows) {
|
|
let all_user_profile = match engine_state.get_env_var("ALLUSERPROFILE") {
|
|
Some(v) => format!(
|
|
"{}\\nushell\\vendor\\autoload",
|
|
v.coerce_string().unwrap_or("C:\\ProgramData".into())
|
|
),
|
|
None => "C:\\ProgramData\\nushell\\vendor\\autoload".into(),
|
|
};
|
|
all_user_profile
|
|
} else {
|
|
// In non-Windows environments, if NU_VENDOR_AUTOLOAD_DIR is not set
|
|
// check to see if PREFIX env var is set, and use it as PREFIX/nushell/vendor/autoload
|
|
// otherwise default to /usr/share/nushell/vendor/autoload
|
|
option_env!("PREFIX").map(String::from).map_or_else(
|
|
|| "/usr/local/share/nushell/vendor/autoload".into(),
|
|
|prefix| format!("{}/share/nushell/vendor/autoload", prefix),
|
|
)
|
|
}
|
|
})
|
|
.into(),
|
|
)
|
|
}
|
|
|
|
fn eval_const_call(
|
|
working_set: &StateWorkingSet,
|
|
call: &Call,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let decl = working_set.get_decl(call.decl_id);
|
|
|
|
if !decl.is_const() {
|
|
return Err(ShellError::NotAConstCommand { span: call.head });
|
|
}
|
|
|
|
if !decl.is_known_external() && call.named_iter().any(|(flag, _, _)| flag.item == "help") {
|
|
// It would require re-implementing get_full_help() for const evaluation. Assuming that
|
|
// getting help messages at parse-time is rare enough, we can simply disallow it.
|
|
return Err(ShellError::NotAConstHelp { span: call.head });
|
|
}
|
|
|
|
decl.run_const(working_set, call, input)
|
|
}
|
|
|
|
pub fn eval_const_subexpression(
|
|
working_set: &StateWorkingSet,
|
|
block: &Block,
|
|
mut input: PipelineData,
|
|
span: Span,
|
|
) -> Result<PipelineData, ShellError> {
|
|
for pipeline in block.pipelines.iter() {
|
|
for element in pipeline.elements.iter() {
|
|
if element.redirection.is_some() {
|
|
return Err(ShellError::NotAConstant { span });
|
|
}
|
|
|
|
input = eval_constant_with_input(working_set, &element.expr, input)?
|
|
}
|
|
}
|
|
|
|
Ok(input)
|
|
}
|
|
|
|
pub fn eval_constant_with_input(
|
|
working_set: &StateWorkingSet,
|
|
expr: &Expression,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
match &expr.expr {
|
|
Expr::Call(call) => eval_const_call(working_set, call, input),
|
|
Expr::Subexpression(block_id) => {
|
|
let block = working_set.get_block(*block_id);
|
|
eval_const_subexpression(working_set, block, input, expr.span(&working_set))
|
|
}
|
|
_ => eval_constant(working_set, expr).map(|v| PipelineData::Value(v, None)),
|
|
}
|
|
}
|
|
|
|
/// Evaluate a constant value at parse time
|
|
pub fn eval_constant(
|
|
working_set: &StateWorkingSet,
|
|
expr: &Expression,
|
|
) -> Result<Value, ShellError> {
|
|
// TODO: Allow debugging const eval
|
|
<EvalConst as Eval>::eval::<WithoutDebug>(working_set, &mut (), expr)
|
|
}
|
|
|
|
struct EvalConst;
|
|
|
|
impl Eval for EvalConst {
|
|
type State<'a> = &'a StateWorkingSet<'a>;
|
|
|
|
type MutState = ();
|
|
|
|
fn get_config<'a>(state: Self::State<'a>, _: &mut ()) -> Cow<'a, Config> {
|
|
Cow::Borrowed(state.get_config())
|
|
}
|
|
|
|
fn eval_filepath(
|
|
_: &StateWorkingSet,
|
|
_: &mut (),
|
|
path: String,
|
|
_: bool,
|
|
span: Span,
|
|
) -> Result<Value, ShellError> {
|
|
Ok(Value::string(path, span))
|
|
}
|
|
|
|
fn eval_directory(
|
|
_: &StateWorkingSet,
|
|
_: &mut (),
|
|
_: String,
|
|
_: bool,
|
|
span: Span,
|
|
) -> Result<Value, ShellError> {
|
|
Err(ShellError::NotAConstant { span })
|
|
}
|
|
|
|
fn eval_var(
|
|
working_set: &StateWorkingSet,
|
|
_: &mut (),
|
|
var_id: VarId,
|
|
span: Span,
|
|
) -> Result<Value, ShellError> {
|
|
match working_set.get_variable(var_id).const_val.as_ref() {
|
|
Some(val) => Ok(val.clone()),
|
|
None => Err(ShellError::NotAConstant { span }),
|
|
}
|
|
}
|
|
|
|
fn eval_call<D: DebugContext>(
|
|
working_set: &StateWorkingSet,
|
|
_: &mut (),
|
|
call: &Call,
|
|
span: Span,
|
|
) -> Result<Value, ShellError> {
|
|
// TODO: Allow debugging const eval
|
|
// TODO: eval.rs uses call.head for the span rather than expr.span
|
|
eval_const_call(working_set, call, PipelineData::empty())?.into_value(span)
|
|
}
|
|
|
|
fn eval_external_call(
|
|
_: &StateWorkingSet,
|
|
_: &mut (),
|
|
_: &Expression,
|
|
_: &[ExternalArgument],
|
|
span: Span,
|
|
) -> Result<Value, ShellError> {
|
|
// TODO: It may be more helpful to give not_a_const_command error
|
|
Err(ShellError::NotAConstant { span })
|
|
}
|
|
|
|
fn eval_subexpression<D: DebugContext>(
|
|
working_set: &StateWorkingSet,
|
|
_: &mut (),
|
|
block_id: usize,
|
|
span: Span,
|
|
) -> Result<Value, ShellError> {
|
|
// TODO: Allow debugging const eval
|
|
let block = working_set.get_block(block_id);
|
|
eval_const_subexpression(working_set, block, PipelineData::empty(), span)?.into_value(span)
|
|
}
|
|
|
|
fn regex_match(
|
|
_: &StateWorkingSet,
|
|
_op_span: Span,
|
|
_: &Value,
|
|
_: &Value,
|
|
_: bool,
|
|
expr_span: Span,
|
|
) -> Result<Value, ShellError> {
|
|
Err(ShellError::NotAConstant { span: expr_span })
|
|
}
|
|
|
|
fn eval_assignment<D: DebugContext>(
|
|
_: &StateWorkingSet,
|
|
_: &mut (),
|
|
_: &Expression,
|
|
_: &Expression,
|
|
_: Assignment,
|
|
_op_span: Span,
|
|
expr_span: Span,
|
|
) -> Result<Value, ShellError> {
|
|
// TODO: Allow debugging const eval
|
|
Err(ShellError::NotAConstant { span: expr_span })
|
|
}
|
|
|
|
fn eval_row_condition_or_closure(
|
|
_: &StateWorkingSet,
|
|
_: &mut (),
|
|
_: usize,
|
|
span: Span,
|
|
) -> Result<Value, ShellError> {
|
|
Err(ShellError::NotAConstant { span })
|
|
}
|
|
|
|
fn eval_overlay(_: &StateWorkingSet, span: Span) -> Result<Value, ShellError> {
|
|
Err(ShellError::NotAConstant { span })
|
|
}
|
|
|
|
fn unreachable(working_set: &StateWorkingSet, expr: &Expression) -> Result<Value, ShellError> {
|
|
Err(ShellError::NotAConstant {
|
|
span: expr.span(&working_set),
|
|
})
|
|
}
|
|
}
|