mirror of
https://github.com/nushell/nushell.git
synced 2025-08-03 16:48:22 +02:00
# Description Closes #15848. Currently, we expand unquoted strings to absolute paths if they are of type `path` or `directory`. This PR makes this no longer happen. `~`, `.`, and `..+` are still expanded, but a path like `.../foo/bar/..` will only be turned into `../../foo`, rather than a full absolute path. This is mostly so that paths don't get modified before being sent to known external commands (as in the linked issue). But also, it seems unnecessary to make all unquoted paths absolute. After feedback from @132ikl, this PR also makes it so that unquoted paths are expanded at parse time, so that it matches the runtime behavior. Previously, `path` expressions were turned into strings verbatim, while `directory` expressions were treated as not being const. API change: `nu_path::expansions::expand_path` is now exposed as `nu_path::expand_path`. # User-Facing Changes This has the potential to silently break a lot of scripts. For example, if someone has a command that expects an already-expanded absolute path, changes the current working directory, and then passes the path somewhere, they will now need to use `path expand` to expand the path themselves before changing the current working directory. # Tests + Formatting Just added one test to make sure unquoted `path` arguments aren't made absolute. # After Submitting This is a breaking change, so will need to be mentioned in the release notes.
652 lines
24 KiB
Rust
652 lines
24 KiB
Rust
use crate::eval_ir_block;
|
|
#[allow(deprecated)]
|
|
use crate::get_full_help;
|
|
use nu_protocol::{
|
|
BlockId, Config, DataSource, ENV_VARIABLE_ID, IntoPipelineData, PipelineData, PipelineMetadata,
|
|
ShellError, Span, Value, VarId,
|
|
ast::{Assignment, Block, Call, Expr, Expression, ExternalArgument, PathMember},
|
|
debugger::DebugContext,
|
|
engine::{Closure, EngineState, Stack},
|
|
eval_base::Eval,
|
|
};
|
|
use nu_utils::IgnoreCaseExt;
|
|
use std::sync::Arc;
|
|
|
|
pub fn eval_call<D: DebugContext>(
|
|
engine_state: &EngineState,
|
|
caller_stack: &mut Stack,
|
|
call: &Call,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
engine_state.signals().check(call.head)?;
|
|
let decl = engine_state.get_decl(call.decl_id);
|
|
|
|
if !decl.is_known_external() && call.named_iter().any(|(flag, _, _)| flag.item == "help") {
|
|
let help = get_full_help(decl, engine_state, caller_stack);
|
|
Ok(Value::string(help, call.head).into_pipeline_data())
|
|
} else if let Some(block_id) = decl.block_id() {
|
|
let block = engine_state.get_block(block_id);
|
|
|
|
let mut callee_stack = caller_stack.gather_captures(engine_state, &block.captures);
|
|
|
|
// Rust does not check recursion limits outside of const evaluation.
|
|
// But nu programs run in the same process as the shell.
|
|
// To prevent a stack overflow in user code from crashing the shell,
|
|
// we limit the recursion depth of function calls.
|
|
// Picked 50 arbitrarily, should work on all architectures.
|
|
let maximum_call_stack_depth: u64 = engine_state.config.recursion_limit as u64;
|
|
callee_stack.recursion_count += 1;
|
|
if callee_stack.recursion_count > maximum_call_stack_depth {
|
|
callee_stack.recursion_count = 0;
|
|
return Err(ShellError::RecursionLimitReached {
|
|
recursion_limit: maximum_call_stack_depth,
|
|
span: block.span,
|
|
});
|
|
}
|
|
|
|
for (param_idx, (param, required)) in decl
|
|
.signature()
|
|
.required_positional
|
|
.iter()
|
|
.map(|p| (p, true))
|
|
.chain(
|
|
decl.signature()
|
|
.optional_positional
|
|
.iter()
|
|
.map(|p| (p, false)),
|
|
)
|
|
.enumerate()
|
|
{
|
|
let var_id = param
|
|
.var_id
|
|
.expect("internal error: all custom parameters must have var_ids");
|
|
|
|
if let Some(arg) = call.positional_nth(param_idx) {
|
|
let result = eval_expression::<D>(engine_state, caller_stack, arg)?;
|
|
let param_type = param.shape.to_type();
|
|
if required && !result.is_subtype_of(¶m_type) {
|
|
return Err(ShellError::CantConvert {
|
|
to_type: param.shape.to_type().to_string(),
|
|
from_type: result.get_type().to_string(),
|
|
span: result.span(),
|
|
help: None,
|
|
});
|
|
}
|
|
callee_stack.add_var(var_id, result);
|
|
} else if let Some(value) = ¶m.default_value {
|
|
callee_stack.add_var(var_id, value.to_owned());
|
|
} else {
|
|
callee_stack.add_var(var_id, Value::nothing(call.head));
|
|
}
|
|
}
|
|
|
|
if let Some(rest_positional) = decl.signature().rest_positional {
|
|
let mut rest_items = vec![];
|
|
|
|
for result in call.rest_iter_flattened(
|
|
decl.signature().required_positional.len()
|
|
+ decl.signature().optional_positional.len(),
|
|
|expr| eval_expression::<D>(engine_state, caller_stack, expr),
|
|
)? {
|
|
rest_items.push(result);
|
|
}
|
|
|
|
let span = if let Some(rest_item) = rest_items.first() {
|
|
rest_item.span()
|
|
} else {
|
|
call.head
|
|
};
|
|
|
|
callee_stack.add_var(
|
|
rest_positional
|
|
.var_id
|
|
.expect("Internal error: rest positional parameter lacks var_id"),
|
|
Value::list(rest_items, span),
|
|
)
|
|
}
|
|
|
|
for named in decl.signature().named {
|
|
if let Some(var_id) = named.var_id {
|
|
let mut found = false;
|
|
for call_named in call.named_iter() {
|
|
if let (Some(spanned), Some(short)) = (&call_named.1, named.short) {
|
|
if spanned.item == short.to_string() {
|
|
if let Some(arg) = &call_named.2 {
|
|
let result = eval_expression::<D>(engine_state, caller_stack, arg)?;
|
|
|
|
callee_stack.add_var(var_id, result);
|
|
} else if let Some(value) = &named.default_value {
|
|
callee_stack.add_var(var_id, value.to_owned());
|
|
} else {
|
|
callee_stack.add_var(var_id, Value::bool(true, call.head))
|
|
}
|
|
found = true;
|
|
}
|
|
} else if call_named.0.item == named.long {
|
|
if let Some(arg) = &call_named.2 {
|
|
let result = eval_expression::<D>(engine_state, caller_stack, arg)?;
|
|
|
|
callee_stack.add_var(var_id, result);
|
|
} else if let Some(value) = &named.default_value {
|
|
callee_stack.add_var(var_id, value.to_owned());
|
|
} else {
|
|
callee_stack.add_var(var_id, Value::bool(true, call.head))
|
|
}
|
|
found = true;
|
|
}
|
|
}
|
|
|
|
if !found {
|
|
if named.arg.is_none() {
|
|
callee_stack.add_var(var_id, Value::bool(false, call.head))
|
|
} else if let Some(value) = named.default_value {
|
|
callee_stack.add_var(var_id, value);
|
|
} else {
|
|
callee_stack.add_var(var_id, Value::nothing(call.head))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
let result =
|
|
eval_block_with_early_return::<D>(engine_state, &mut callee_stack, block, input);
|
|
|
|
if block.redirect_env {
|
|
redirect_env(engine_state, caller_stack, &callee_stack);
|
|
}
|
|
|
|
result
|
|
} else {
|
|
// We pass caller_stack here with the knowledge that internal commands
|
|
// are going to be specifically looking for global state in the stack
|
|
// rather than any local state.
|
|
decl.run(engine_state, caller_stack, &call.into(), input)
|
|
}
|
|
}
|
|
|
|
/// Redirect the environment from callee to the caller.
|
|
pub fn redirect_env(engine_state: &EngineState, caller_stack: &mut Stack, callee_stack: &Stack) {
|
|
// Grab all environment variables from the callee
|
|
let caller_env_vars = caller_stack.get_env_var_names(engine_state);
|
|
|
|
// remove env vars that are present in the caller but not in the callee
|
|
// (the callee hid them)
|
|
for var in caller_env_vars.iter() {
|
|
if !callee_stack.has_env_var(engine_state, var) {
|
|
caller_stack.remove_env_var(engine_state, var);
|
|
}
|
|
}
|
|
|
|
// add new env vars from callee to caller
|
|
for (var, value) in callee_stack.get_stack_env_vars() {
|
|
caller_stack.add_env_var(var, value);
|
|
}
|
|
|
|
// set config to callee config, to capture any updates to that
|
|
caller_stack.config.clone_from(&callee_stack.config);
|
|
}
|
|
|
|
fn eval_external(
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
head: &Expression,
|
|
args: &[ExternalArgument],
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let decl_id = engine_state
|
|
.find_decl("run-external".as_bytes(), &[])
|
|
.ok_or(ShellError::ExternalNotSupported {
|
|
span: head.span(&engine_state),
|
|
})?;
|
|
|
|
let command = engine_state.get_decl(decl_id);
|
|
|
|
let mut call = Call::new(head.span(&engine_state));
|
|
|
|
call.add_positional(head.clone());
|
|
|
|
for arg in args {
|
|
match arg {
|
|
ExternalArgument::Regular(expr) => call.add_positional(expr.clone()),
|
|
ExternalArgument::Spread(expr) => call.add_spread(expr.clone()),
|
|
}
|
|
}
|
|
|
|
command.run(engine_state, stack, &(&call).into(), input)
|
|
}
|
|
|
|
pub fn eval_expression<D: DebugContext>(
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
expr: &Expression,
|
|
) -> Result<Value, ShellError> {
|
|
let stack = &mut stack.start_collect_value();
|
|
<EvalRuntime as Eval>::eval::<D>(engine_state, stack, expr)
|
|
}
|
|
|
|
/// Checks the expression to see if it's a internal or external call. If so, passes the input
|
|
/// into the call and gets out the result
|
|
/// Otherwise, invokes the expression
|
|
///
|
|
/// It returns PipelineData with a boolean flag, indicating if the external failed to run.
|
|
/// The boolean flag **may only be true** for external calls, for internal calls, it always to be false.
|
|
pub fn eval_expression_with_input<D: DebugContext>(
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
expr: &Expression,
|
|
mut input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
match &expr.expr {
|
|
Expr::Call(call) => {
|
|
input = eval_call::<D>(engine_state, stack, call, input)?;
|
|
}
|
|
Expr::ExternalCall(head, args) => {
|
|
input = eval_external(engine_state, stack, head, args, input)?;
|
|
}
|
|
|
|
Expr::Collect(var_id, expr) => {
|
|
input = eval_collect::<D>(engine_state, stack, *var_id, expr, input)?;
|
|
}
|
|
|
|
Expr::Subexpression(block_id) => {
|
|
let block = engine_state.get_block(*block_id);
|
|
// FIXME: protect this collect with ctrl-c
|
|
input = eval_subexpression::<D>(engine_state, stack, block, input)?;
|
|
}
|
|
|
|
Expr::FullCellPath(full_cell_path) => match &full_cell_path.head {
|
|
Expression {
|
|
expr: Expr::Subexpression(block_id),
|
|
span,
|
|
..
|
|
} => {
|
|
let block = engine_state.get_block(*block_id);
|
|
|
|
if !full_cell_path.tail.is_empty() {
|
|
let stack = &mut stack.start_collect_value();
|
|
// FIXME: protect this collect with ctrl-c
|
|
input = eval_subexpression::<D>(engine_state, stack, block, input)?
|
|
.into_value(*span)?
|
|
.follow_cell_path(&full_cell_path.tail)?
|
|
.into_owned()
|
|
.into_pipeline_data()
|
|
} else {
|
|
input = eval_subexpression::<D>(engine_state, stack, block, input)?;
|
|
}
|
|
}
|
|
_ => {
|
|
input = eval_expression::<D>(engine_state, stack, expr)?.into_pipeline_data();
|
|
}
|
|
},
|
|
|
|
_ => {
|
|
input = eval_expression::<D>(engine_state, stack, expr)?.into_pipeline_data();
|
|
}
|
|
};
|
|
|
|
Ok(input)
|
|
}
|
|
|
|
pub fn eval_block_with_early_return<D: DebugContext>(
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
block: &Block,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
match eval_block::<D>(engine_state, stack, block, input) {
|
|
Err(ShellError::Return { span: _, value }) => Ok(PipelineData::Value(*value, None)),
|
|
x => x,
|
|
}
|
|
}
|
|
|
|
pub fn eval_block<D: DebugContext>(
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
block: &Block,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let result = eval_ir_block::<D>(engine_state, stack, block, input);
|
|
if let Err(err) = &result {
|
|
stack.set_last_error(err);
|
|
}
|
|
result
|
|
}
|
|
|
|
pub fn eval_collect<D: DebugContext>(
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
var_id: VarId,
|
|
expr: &Expression,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
// Evaluate the expression with the variable set to the collected input
|
|
let span = input.span().unwrap_or(Span::unknown());
|
|
|
|
let metadata = match input.metadata() {
|
|
// Remove the `FilePath` metadata, because after `collect` it's no longer necessary to
|
|
// check where some input came from.
|
|
Some(PipelineMetadata {
|
|
data_source: DataSource::FilePath(_),
|
|
content_type: None,
|
|
}) => None,
|
|
other => other,
|
|
};
|
|
|
|
let input = input.into_value(span)?;
|
|
|
|
stack.add_var(var_id, input.clone());
|
|
|
|
let result = eval_expression_with_input::<D>(
|
|
engine_state,
|
|
stack,
|
|
expr,
|
|
// We still have to pass it as input
|
|
input.into_pipeline_data_with_metadata(metadata),
|
|
);
|
|
|
|
stack.remove_var(var_id);
|
|
|
|
result
|
|
}
|
|
|
|
pub fn eval_subexpression<D: DebugContext>(
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
block: &Block,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
eval_block::<D>(engine_state, stack, block, input)
|
|
}
|
|
|
|
pub fn eval_variable(
|
|
engine_state: &EngineState,
|
|
stack: &Stack,
|
|
var_id: VarId,
|
|
span: Span,
|
|
) -> Result<Value, ShellError> {
|
|
match var_id {
|
|
// $nu
|
|
nu_protocol::NU_VARIABLE_ID => {
|
|
if let Some(val) = engine_state.get_constant(var_id) {
|
|
Ok(val.clone())
|
|
} else {
|
|
Err(ShellError::VariableNotFoundAtRuntime { span })
|
|
}
|
|
}
|
|
// $env
|
|
ENV_VARIABLE_ID => {
|
|
let env_vars = stack.get_env_vars(engine_state);
|
|
let env_columns = env_vars.keys();
|
|
let env_values = env_vars.values();
|
|
|
|
let mut pairs = env_columns
|
|
.map(|x| x.to_string())
|
|
.zip(env_values.cloned())
|
|
.collect::<Vec<(String, Value)>>();
|
|
|
|
pairs.sort_by(|a, b| a.0.cmp(&b.0));
|
|
|
|
Ok(Value::record(pairs.into_iter().collect(), span))
|
|
}
|
|
var_id => stack.get_var(var_id, span),
|
|
}
|
|
}
|
|
|
|
struct EvalRuntime;
|
|
|
|
impl Eval for EvalRuntime {
|
|
type State<'a> = &'a EngineState;
|
|
|
|
type MutState = Stack;
|
|
|
|
fn get_config(engine_state: Self::State<'_>, stack: &mut Stack) -> Arc<Config> {
|
|
stack.get_config(engine_state)
|
|
}
|
|
|
|
fn eval_var(
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
var_id: VarId,
|
|
span: Span,
|
|
) -> Result<Value, ShellError> {
|
|
eval_variable(engine_state, stack, var_id, span)
|
|
}
|
|
|
|
fn eval_call<D: DebugContext>(
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
call: &Call,
|
|
_: Span,
|
|
) -> Result<Value, ShellError> {
|
|
// FIXME: protect this collect with ctrl-c
|
|
eval_call::<D>(engine_state, stack, call, PipelineData::empty())?.into_value(call.head)
|
|
}
|
|
|
|
fn eval_external_call(
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
head: &Expression,
|
|
args: &[ExternalArgument],
|
|
_: Span,
|
|
) -> Result<Value, ShellError> {
|
|
let span = head.span(&engine_state);
|
|
// FIXME: protect this collect with ctrl-c
|
|
eval_external(engine_state, stack, head, args, PipelineData::empty())?.into_value(span)
|
|
}
|
|
|
|
fn eval_collect<D: DebugContext>(
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
var_id: VarId,
|
|
expr: &Expression,
|
|
) -> Result<Value, ShellError> {
|
|
// It's a little bizarre, but the expression can still have some kind of result even with
|
|
// nothing input
|
|
eval_collect::<D>(engine_state, stack, var_id, expr, PipelineData::empty())?
|
|
.into_value(expr.span)
|
|
}
|
|
|
|
fn eval_subexpression<D: DebugContext>(
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
block_id: BlockId,
|
|
span: Span,
|
|
) -> Result<Value, ShellError> {
|
|
let block = engine_state.get_block(block_id);
|
|
// FIXME: protect this collect with ctrl-c
|
|
eval_subexpression::<D>(engine_state, stack, block, PipelineData::empty())?.into_value(span)
|
|
}
|
|
|
|
fn regex_match(
|
|
engine_state: &EngineState,
|
|
op_span: Span,
|
|
lhs: &Value,
|
|
rhs: &Value,
|
|
invert: bool,
|
|
expr_span: Span,
|
|
) -> Result<Value, ShellError> {
|
|
lhs.regex_match(engine_state, op_span, rhs, invert, expr_span)
|
|
}
|
|
|
|
fn eval_assignment<D: DebugContext>(
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
lhs: &Expression,
|
|
rhs: &Expression,
|
|
assignment: Assignment,
|
|
op_span: Span,
|
|
_expr_span: Span,
|
|
) -> Result<Value, ShellError> {
|
|
let rhs = eval_expression::<D>(engine_state, stack, rhs)?;
|
|
|
|
let rhs = match assignment {
|
|
Assignment::Assign => rhs,
|
|
Assignment::AddAssign => {
|
|
let lhs = eval_expression::<D>(engine_state, stack, lhs)?;
|
|
lhs.add(op_span, &rhs, op_span)?
|
|
}
|
|
Assignment::SubtractAssign => {
|
|
let lhs = eval_expression::<D>(engine_state, stack, lhs)?;
|
|
lhs.sub(op_span, &rhs, op_span)?
|
|
}
|
|
Assignment::MultiplyAssign => {
|
|
let lhs = eval_expression::<D>(engine_state, stack, lhs)?;
|
|
lhs.mul(op_span, &rhs, op_span)?
|
|
}
|
|
Assignment::DivideAssign => {
|
|
let lhs = eval_expression::<D>(engine_state, stack, lhs)?;
|
|
lhs.div(op_span, &rhs, op_span)?
|
|
}
|
|
Assignment::ConcatenateAssign => {
|
|
let lhs = eval_expression::<D>(engine_state, stack, lhs)?;
|
|
lhs.concat(op_span, &rhs, op_span)?
|
|
}
|
|
};
|
|
|
|
match &lhs.expr {
|
|
Expr::Var(var_id) | Expr::VarDecl(var_id) => {
|
|
let var_info = engine_state.get_var(*var_id);
|
|
if var_info.mutable {
|
|
stack.add_var(*var_id, rhs);
|
|
Ok(Value::nothing(lhs.span(&engine_state)))
|
|
} else {
|
|
Err(ShellError::AssignmentRequiresMutableVar {
|
|
lhs_span: lhs.span(&engine_state),
|
|
})
|
|
}
|
|
}
|
|
Expr::FullCellPath(cell_path) => {
|
|
match &cell_path.head.expr {
|
|
Expr::Var(var_id) | Expr::VarDecl(var_id) => {
|
|
// The $env variable is considered "mutable" in Nushell.
|
|
// As such, give it special treatment here.
|
|
let is_env = var_id == &ENV_VARIABLE_ID;
|
|
if is_env || engine_state.get_var(*var_id).mutable {
|
|
let mut lhs =
|
|
eval_expression::<D>(engine_state, stack, &cell_path.head)?;
|
|
if is_env {
|
|
// Reject attempts to assign to the entire $env
|
|
if cell_path.tail.is_empty() {
|
|
return Err(ShellError::CannotReplaceEnv {
|
|
span: cell_path.head.span(&engine_state),
|
|
});
|
|
}
|
|
|
|
// Updating environment variables should be case-preserving,
|
|
// so we need to figure out the original key before we do anything.
|
|
let (key, span) = match &cell_path.tail[0] {
|
|
PathMember::String { val, span, .. } => (val.to_string(), span),
|
|
PathMember::Int { val, span, .. } => (val.to_string(), span),
|
|
};
|
|
let original_key = if let Value::Record { val: record, .. } = &lhs {
|
|
record
|
|
.iter()
|
|
.rev()
|
|
.map(|(k, _)| k)
|
|
.find(|x| x.eq_ignore_case(&key))
|
|
.cloned()
|
|
.unwrap_or(key)
|
|
} else {
|
|
key
|
|
};
|
|
|
|
// Retrieve the updated environment value.
|
|
lhs.upsert_data_at_cell_path(&cell_path.tail, rhs)?;
|
|
let value = lhs.follow_cell_path(&[{
|
|
let mut pm = cell_path.tail[0].clone();
|
|
pm.make_insensitive();
|
|
pm
|
|
}])?;
|
|
|
|
// Reject attempts to set automatic environment variables.
|
|
if is_automatic_env_var(&original_key) {
|
|
return Err(ShellError::AutomaticEnvVarSetManually {
|
|
envvar_name: original_key,
|
|
span: *span,
|
|
});
|
|
}
|
|
|
|
let is_config = original_key == "config";
|
|
|
|
stack.add_env_var(original_key, value.into_owned());
|
|
|
|
// Trigger the update to config, if we modified that.
|
|
if is_config {
|
|
stack.update_config(engine_state)?;
|
|
}
|
|
} else {
|
|
lhs.upsert_data_at_cell_path(&cell_path.tail, rhs)?;
|
|
stack.add_var(*var_id, lhs);
|
|
}
|
|
Ok(Value::nothing(cell_path.head.span(&engine_state)))
|
|
} else {
|
|
Err(ShellError::AssignmentRequiresMutableVar {
|
|
lhs_span: lhs.span(&engine_state),
|
|
})
|
|
}
|
|
}
|
|
_ => Err(ShellError::AssignmentRequiresVar {
|
|
lhs_span: lhs.span(&engine_state),
|
|
}),
|
|
}
|
|
}
|
|
_ => Err(ShellError::AssignmentRequiresVar {
|
|
lhs_span: lhs.span(&engine_state),
|
|
}),
|
|
}
|
|
}
|
|
|
|
fn eval_row_condition_or_closure(
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
block_id: BlockId,
|
|
span: Span,
|
|
) -> Result<Value, ShellError> {
|
|
let captures = engine_state
|
|
.get_block(block_id)
|
|
.captures
|
|
.iter()
|
|
.map(|(id, span)| {
|
|
stack
|
|
.get_var(*id, *span)
|
|
.or_else(|_| {
|
|
engine_state
|
|
.get_var(*id)
|
|
.const_val
|
|
.clone()
|
|
.ok_or(ShellError::VariableNotFoundAtRuntime { span: *span })
|
|
})
|
|
.map(|var| (*id, var))
|
|
})
|
|
.collect::<Result<_, _>>()?;
|
|
|
|
Ok(Value::closure(Closure { block_id, captures }, span))
|
|
}
|
|
|
|
fn eval_overlay(engine_state: &EngineState, span: Span) -> Result<Value, ShellError> {
|
|
let name = String::from_utf8_lossy(engine_state.get_span_contents(span)).to_string();
|
|
|
|
Ok(Value::string(name, span))
|
|
}
|
|
|
|
fn unreachable(engine_state: &EngineState, expr: &Expression) -> Result<Value, ShellError> {
|
|
Ok(Value::nothing(expr.span(&engine_state)))
|
|
}
|
|
}
|
|
|
|
/// Returns whether a string, when used as the name of an environment variable,
|
|
/// is considered an automatic environment variable.
|
|
///
|
|
/// An automatic environment variable cannot be assigned to by user code.
|
|
/// Current there are three of them: $env.PWD, $env.FILE_PWD, $env.CURRENT_FILE
|
|
pub(crate) fn is_automatic_env_var(var: &str) -> bool {
|
|
let names = ["PWD", "FILE_PWD", "CURRENT_FILE"];
|
|
names.iter().any(|&name| {
|
|
if cfg!(windows) {
|
|
name.eq_ignore_case(var)
|
|
} else {
|
|
name.eq(var)
|
|
}
|
|
})
|
|
}
|