nu_engine::command_prelude

Struct Stack

Source
pub struct Stack {
    pub vars: Vec<(Id<Var>, Value)>,
    pub env_vars: Vec<Arc<HashMap<String, HashMap<String, Value>>>>,
    pub env_hidden: Arc<HashMap<String, HashSet<String>>>,
    pub active_overlays: Vec<String>,
    pub arguments: ArgumentStack,
    pub error_handlers: ErrorHandlerStack,
    pub use_ir: bool,
    pub recursion_count: u64,
    pub parent_stack: Option<Arc<Stack>>,
    pub parent_deletions: Vec<Id<Var>>,
    pub config: Option<Arc<Config>>,
    /* private fields */
}
Expand description

A runtime value stack used during evaluation

A note on implementation:

We previously set up the stack in a traditional way, where stack frames had parents which would represent other frames that you might return to when exiting a function.

While experimenting with blocks, we found that we needed to have closure captures of variables seen outside of the blocks, so that they blocks could be run in a way that was both thread-safe and followed the restrictions for closures applied to iterators. The end result left us with closure-captured single stack frames that blocks could see.

Blocks make up the only scope and stack definition abstraction in Nushell. As a result, we were creating closure captures at any point we wanted to have a Block value we could safely evaluate in any context. This meant that the parents were going largely unused, with captured variables taking their place. The end result is this, where we no longer have separate frames, but instead use the Stack as a way of representing the local and closure-captured state.

Fields§

§vars: Vec<(Id<Var>, Value)>

Variables

§env_vars: Vec<Arc<HashMap<String, HashMap<String, Value>>>>

Environment variables arranged as a stack to be able to recover values from parent scopes

§env_hidden: Arc<HashMap<String, HashSet<String>>>

Tells which environment variables from engine state are hidden, per overlay.

§active_overlays: Vec<String>

List of active overlays

§arguments: ArgumentStack

Argument stack for IR evaluation

§error_handlers: ErrorHandlerStack

Error handler stack for IR evaluation

§use_ir: bool

Set true to always use IR mode

§recursion_count: u64§parent_stack: Option<Arc<Stack>>§parent_deletions: Vec<Id<Var>>

Variables that have been deleted (this is used to hide values from parent stack lookups)

§config: Option<Arc<Config>>

Locally updated config. Use .get_config() to access correctly.

Implementations§

Source§

impl Stack

Source

pub fn new() -> Stack

Create a new stack.

stdout and stderr will be set to OutDest::Inherit. So, if the last command is an external command, then its output will be forwarded to the terminal/stdio streams.

Use Stack::collect_value afterwards if you need to evaluate an expression to a Value (as opposed to a PipelineData).

Source

pub fn with_parent(parent: Arc<Stack>) -> Stack

Create a new child stack from a parent.

Changes from this child can be merged back into the parent with Stack::with_changes_from_child

Source

pub fn with_changes_from_child(parent: Arc<Stack>, child: Stack) -> Stack

Take an Arc parent, and a child, and apply all the changes from a child back to the parent.

Here it is assumed that child was created by a call to Stack::with_parent with parent.

For this to be performant and not clone parent, child should be the only other referencer of parent.

Source

pub fn with_env( &mut self, env_vars: &[Arc<HashMap<String, HashMap<String, Value>>>], env_hidden: &Arc<HashMap<String, HashSet<String>>>, )

Source

pub fn get_var(&self, var_id: Id<Var>, span: Span) -> Result<Value, ShellError>

Lookup a variable, erroring if it is not found

The passed-in span will be used to tag the value

Source

pub fn get_var_with_origin( &self, var_id: Id<Var>, span: Span, ) -> Result<Value, ShellError>

Lookup a variable, erroring if it is not found

While the passed-in span will be used for errors, the returned value has the span from where it was originally defined

Source

pub fn get_config(&self, engine_state: &EngineState) -> Arc<Config>

Get the local config if set, otherwise the config from the engine state.

This is the canonical way to get Config when Stack is available.

Source

pub fn update_config( &mut self, engine_state: &EngineState, ) -> Result<(), ShellError>

Update the local config with the config stored in the config environment variable. Run this after assigning to $env.config.

The config will be updated with successfully parsed values even if an error occurs.

Source

pub fn add_var(&mut self, var_id: Id<Var>, value: Value)

Source

pub fn remove_var(&mut self, var_id: Id<Var>)

Source

pub fn add_env_var(&mut self, var: String, value: Value)

Source

pub fn set_last_exit_code(&mut self, code: i32, span: Span)

Source

pub fn set_last_error(&mut self, error: &ShellError)

Source

pub fn last_overlay_name(&self) -> Result<String, ShellError>

Source

pub fn captures_to_stack(&self, captures: Vec<(Id<Var>, Value)>) -> Stack

Source

pub fn captures_to_stack_preserve_out_dest( &self, captures: Vec<(Id<Var>, Value)>, ) -> Stack

Source

pub fn gather_captures( &self, engine_state: &EngineState, captures: &[Id<Var>], ) -> Stack

Source

pub fn get_env_vars(&self, engine_state: &EngineState) -> HashMap<String, Value>

Flatten the env var scope frames into one frame

Source

pub fn get_stack_env_vars(&self) -> HashMap<String, Value>

Get flattened environment variables only from the stack

Source

pub fn get_stack_overlay_env_vars( &self, overlay_name: &str, ) -> HashMap<String, Value>

Get flattened environment variables only from the stack and one overlay

Source

pub fn get_env_var_names(&self, engine_state: &EngineState) -> HashSet<String>

Same as get_env_vars, but returns only the names as a HashSet

Source

pub fn get_env_var<'a>( &'a self, engine_state: &'a EngineState, name: &str, ) -> Option<&'a Value>

Source

pub fn has_env_var(&self, engine_state: &EngineState, name: &str) -> bool

Source

pub fn remove_env_var(&mut self, engine_state: &EngineState, name: &str) -> bool

Source

pub fn has_env_overlay(&self, name: &str, engine_state: &EngineState) -> bool

Source

pub fn is_overlay_active(&self, name: &str) -> bool

Source

pub fn add_overlay(&mut self, name: String)

Source

pub fn remove_overlay(&mut self, name: &str)

Source

pub fn stdout(&self) -> &OutDest

Returns the OutDest to use for the current command’s stdout.

This will be the pipe redirection if one is set, otherwise it will be the current file redirection, otherwise it will be the process’s stdout indicated by OutDest::Inherit.

Source

pub fn stderr(&self) -> &OutDest

Returns the OutDest to use for the current command’s stderr.

This will be the pipe redirection if one is set, otherwise it will be the current file redirection, otherwise it will be the process’s stderr indicated by OutDest::Inherit.

Source

pub fn pipe_stdout(&self) -> Option<&OutDest>

Returns the OutDest of the pipe redirection applied to the current command’s stdout.

Source

pub fn pipe_stderr(&self) -> Option<&OutDest>

Returns the OutDest of the pipe redirection applied to the current command’s stderr.

Source

pub fn start_collect_value(&mut self) -> StackCollectValueGuard<'_>

Temporarily set the pipe stdout redirection to OutDest::Value.

This is used before evaluating an expression into a Value.

Source

pub fn use_call_arg_out_dest(&mut self) -> StackCallArgGuard<'_>

Temporarily use the output redirections in the parent scope.

This is used before evaluating an argument to a call.

Source

pub fn push_redirection( &mut self, stdout: Option<Redirection>, stderr: Option<Redirection>, ) -> StackIoGuard<'_>

Temporarily apply redirections to stdout and/or stderr.

Source

pub fn collect_value(self) -> Stack

Mark stdout for the last command as OutDest::Value.

This will irreversibly alter the output redirections, and so it only makes sense to use this on an owned Stack (which is why this function does not take &mut self).

See Stack::start_collect_value which can temporarily set stdout as OutDest::Value for a mutable Stack reference.

Source

pub fn reset_out_dest(self) -> Stack

Clears any pipe and file redirections and resets stdout and stderr to OutDest::Inherit.

This will irreversibly reset the output redirections, and so it only makes sense to use this on an owned Stack (which is why this function does not take &mut self).

Source

pub fn reset_pipes(self) -> Stack

Clears any pipe redirections, keeping the current stdout and stderr.

This will irreversibly reset some of the output redirections, and so it only makes sense to use this on an owned Stack (which is why this function does not take &mut self).

Source

pub fn stdout_file(self, file: File) -> Stack

Replaces the default stdout of the stack with a given file.

This method configures the default stdout to redirect to a specified file. It is primarily useful for applications using nu as a language, where the stdout of external commands that are not explicitly piped can be redirected to a file.

§Using Pipes

For use in third-party applications pipes might be very useful as they allow using the stdout of external commands for different uses. For example the os_pipe crate provides a elegant way to to access the stdout.

let (mut reader, writer) = os_pipe::pipe().unwrap();
// Use a thread to avoid blocking the execution of the called command.
let reader = thread::spawn(move || {
    let mut buf: Vec<u8> = Vec::new();
    reader.read_to_end(&mut buf)?;
    Ok::<_, io::Error>(buf)
});

#[cfg(windows)]
let file = std::os::windows::io::OwnedHandle::from(writer).into();
#[cfg(unix)]
let file = std::os::unix::io::OwnedFd::from(writer).into();

let stack = Stack::new().stdout_file(file);

// Execute some nu code.

drop(stack); // drop the stack so that the writer will be dropped too
let buf = reader.join().unwrap().unwrap();
// Do with your buffer whatever you want.
Source

pub fn stderr_file(self, file: File) -> Stack

Replaces the default stderr of the stack with a given file.

For more info, see stdout_file.

Source

pub fn set_cwd(&mut self, path: impl AsRef<Path>) -> Result<(), ShellError>

Set the PWD environment variable to path.

This method accepts path with trailing slashes, but they’re removed before writing the value into PWD.

Trait Implementations§

Source§

impl Clone for Stack

Source§

fn clone(&self) -> Stack

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Stack

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Default for Stack

Source§

fn default() -> Stack

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl Freeze for Stack

§

impl !RefUnwindSafe for Stack

§

impl Send for Stack

§

impl Sync for Stack

§

impl Unpin for Stack

§

impl !UnwindSafe for Stack

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> IntoSpanned for T

Source§

fn into_spanned(self, span: Span) -> Spanned<T>

Wrap items together with a span into Spanned. Read more
Source§

impl<D> OwoColorize for D

Source§

fn fg<C>(&self) -> FgColorDisplay<'_, C, Self>
where C: Color,

Set the foreground color generically Read more
Source§

fn bg<C>(&self) -> BgColorDisplay<'_, C, Self>
where C: Color,

Set the background color generically. Read more
Source§

fn black(&self) -> FgColorDisplay<'_, Black, Self>

Change the foreground color to black
Source§

fn on_black(&self) -> BgColorDisplay<'_, Black, Self>

Change the background color to black
Source§

fn red(&self) -> FgColorDisplay<'_, Red, Self>

Change the foreground color to red
Source§

fn on_red(&self) -> BgColorDisplay<'_, Red, Self>

Change the background color to red
Source§

fn green(&self) -> FgColorDisplay<'_, Green, Self>

Change the foreground color to green
Source§

fn on_green(&self) -> BgColorDisplay<'_, Green, Self>

Change the background color to green
Source§

fn yellow(&self) -> FgColorDisplay<'_, Yellow, Self>

Change the foreground color to yellow
Source§

fn on_yellow(&self) -> BgColorDisplay<'_, Yellow, Self>

Change the background color to yellow
Source§

fn blue(&self) -> FgColorDisplay<'_, Blue, Self>

Change the foreground color to blue
Source§

fn on_blue(&self) -> BgColorDisplay<'_, Blue, Self>

Change the background color to blue
Source§

fn magenta(&self) -> FgColorDisplay<'_, Magenta, Self>

Change the foreground color to magenta
Source§

fn on_magenta(&self) -> BgColorDisplay<'_, Magenta, Self>

Change the background color to magenta
Source§

fn purple(&self) -> FgColorDisplay<'_, Magenta, Self>

Change the foreground color to purple
Source§

fn on_purple(&self) -> BgColorDisplay<'_, Magenta, Self>

Change the background color to purple
Source§

fn cyan(&self) -> FgColorDisplay<'_, Cyan, Self>

Change the foreground color to cyan
Source§

fn on_cyan(&self) -> BgColorDisplay<'_, Cyan, Self>

Change the background color to cyan
Source§

fn white(&self) -> FgColorDisplay<'_, White, Self>

Change the foreground color to white
Source§

fn on_white(&self) -> BgColorDisplay<'_, White, Self>

Change the background color to white
Source§

fn default_color(&self) -> FgColorDisplay<'_, Default, Self>

Change the foreground color to the terminal default
Source§

fn on_default_color(&self) -> BgColorDisplay<'_, Default, Self>

Change the background color to the terminal default
Source§

fn bright_black(&self) -> FgColorDisplay<'_, BrightBlack, Self>

Change the foreground color to bright black
Source§

fn on_bright_black(&self) -> BgColorDisplay<'_, BrightBlack, Self>

Change the background color to bright black
Source§

fn bright_red(&self) -> FgColorDisplay<'_, BrightRed, Self>

Change the foreground color to bright red
Source§

fn on_bright_red(&self) -> BgColorDisplay<'_, BrightRed, Self>

Change the background color to bright red
Source§

fn bright_green(&self) -> FgColorDisplay<'_, BrightGreen, Self>

Change the foreground color to bright green
Source§

fn on_bright_green(&self) -> BgColorDisplay<'_, BrightGreen, Self>

Change the background color to bright green
Source§

fn bright_yellow(&self) -> FgColorDisplay<'_, BrightYellow, Self>

Change the foreground color to bright yellow
Source§

fn on_bright_yellow(&self) -> BgColorDisplay<'_, BrightYellow, Self>

Change the background color to bright yellow
Source§

fn bright_blue(&self) -> FgColorDisplay<'_, BrightBlue, Self>

Change the foreground color to bright blue
Source§

fn on_bright_blue(&self) -> BgColorDisplay<'_, BrightBlue, Self>

Change the background color to bright blue
Source§

fn bright_magenta(&self) -> FgColorDisplay<'_, BrightMagenta, Self>

Change the foreground color to bright magenta
Source§

fn on_bright_magenta(&self) -> BgColorDisplay<'_, BrightMagenta, Self>

Change the background color to bright magenta
Source§

fn bright_purple(&self) -> FgColorDisplay<'_, BrightMagenta, Self>

Change the foreground color to bright purple
Source§

fn on_bright_purple(&self) -> BgColorDisplay<'_, BrightMagenta, Self>

Change the background color to bright purple
Source§

fn bright_cyan(&self) -> FgColorDisplay<'_, BrightCyan, Self>

Change the foreground color to bright cyan
Source§

fn on_bright_cyan(&self) -> BgColorDisplay<'_, BrightCyan, Self>

Change the background color to bright cyan
Source§

fn bright_white(&self) -> FgColorDisplay<'_, BrightWhite, Self>

Change the foreground color to bright white
Source§

fn on_bright_white(&self) -> BgColorDisplay<'_, BrightWhite, Self>

Change the background color to bright white
Source§

fn bold(&self) -> BoldDisplay<'_, Self>

Make the text bold
Source§

fn dimmed(&self) -> DimDisplay<'_, Self>

Make the text dim
Source§

fn italic(&self) -> ItalicDisplay<'_, Self>

Make the text italicized
Source§

fn underline(&self) -> UnderlineDisplay<'_, Self>

Make the text underlined
Make the text blink
Make the text blink (but fast!)
Source§

fn reversed(&self) -> ReversedDisplay<'_, Self>

Swap the foreground and background colors
Source§

fn hidden(&self) -> HiddenDisplay<'_, Self>

Hide the text
Source§

fn strikethrough(&self) -> StrikeThroughDisplay<'_, Self>

Cross out the text
Source§

fn color<Color>(&self, color: Color) -> FgDynColorDisplay<'_, Color, Self>
where Color: DynColor,

Set the foreground color at runtime. Only use if you do not know which color will be used at compile-time. If the color is constant, use either OwoColorize::fg or a color-specific method, such as OwoColorize::green, Read more
Source§

fn on_color<Color>(&self, color: Color) -> BgDynColorDisplay<'_, Color, Self>
where Color: DynColor,

Set the background color at runtime. Only use if you do not know what color to use at compile-time. If the color is constant, use either OwoColorize::bg or a color-specific method, such as OwoColorize::on_yellow, Read more
Source§

fn fg_rgb<const R: u8, const G: u8, const B: u8>( &self, ) -> FgColorDisplay<'_, CustomColor<R, G, B>, Self>

Set the foreground color to a specific RGB value.
Source§

fn bg_rgb<const R: u8, const G: u8, const B: u8>( &self, ) -> BgColorDisplay<'_, CustomColor<R, G, B>, Self>

Set the background color to a specific RGB value.
Source§

fn truecolor(&self, r: u8, g: u8, b: u8) -> FgDynColorDisplay<'_, Rgb, Self>

Sets the foreground color to an RGB value.
Source§

fn on_truecolor(&self, r: u8, g: u8, b: u8) -> BgDynColorDisplay<'_, Rgb, Self>

Sets the background color to an RGB value.
Source§

fn style(&self, style: Style) -> Styled<&Self>

Apply a runtime-determined style
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize = _

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.