2022-08-31 20:32:56 +00:00
|
|
|
use std::path::PathBuf;
|
|
|
|
|
2023-04-05 16:56:48 +00:00
|
|
|
use nu_engine::{
|
|
|
|
eval_block_with_early_return, find_in_dirs_env, get_dirs_var_from_call, redirect_env, CallExt,
|
|
|
|
};
|
2022-08-31 20:32:56 +00:00
|
|
|
use nu_protocol::ast::Call;
|
2022-09-08 20:41:49 +00:00
|
|
|
use nu_protocol::engine::{Command, EngineState, Stack};
|
2022-08-31 20:32:56 +00:00
|
|
|
use nu_protocol::{
|
2022-12-21 19:20:46 +00:00
|
|
|
Category, Example, PipelineData, ShellError, Signature, Spanned, SyntaxShape, Type, Value,
|
2022-08-31 20:32:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Source a file for environment variables.
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct SourceEnv;
|
|
|
|
|
|
|
|
impl Command for SourceEnv {
|
|
|
|
fn name(&self) -> &str {
|
|
|
|
"source-env"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
|
|
|
Signature::build("source-env")
|
2022-12-21 19:20:46 +00:00
|
|
|
.input_output_types(vec![(Type::Any, Type::Any)])
|
2022-08-31 20:32:56 +00:00
|
|
|
.required(
|
|
|
|
"filename",
|
|
|
|
SyntaxShape::String, // type is string to avoid automatically canonicalizing the path
|
2023-12-15 06:32:37 +00:00
|
|
|
"The filepath to the script file to source the environment from.",
|
2022-08-31 20:32:56 +00:00
|
|
|
)
|
|
|
|
.category(Category::Core)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn usage(&self) -> &str {
|
|
|
|
"Source the environment from a source file into the current environment."
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run(
|
|
|
|
&self,
|
|
|
|
engine_state: &EngineState,
|
|
|
|
caller_stack: &mut Stack,
|
|
|
|
call: &Call,
|
|
|
|
input: PipelineData,
|
|
|
|
) -> Result<PipelineData, ShellError> {
|
|
|
|
let source_filename: Spanned<String> = call.req(engine_state, caller_stack, 0)?;
|
|
|
|
|
2022-09-08 20:41:49 +00:00
|
|
|
// Note: this hidden positional is the block_id that corresponded to the 0th position
|
|
|
|
// it is put here by the parser
|
2023-04-05 16:56:48 +00:00
|
|
|
let block_id: i64 = call.req_parser_info(engine_state, caller_stack, "block_id")?;
|
2022-09-08 20:41:49 +00:00
|
|
|
|
|
|
|
// Set the currently evaluated directory (file-relative PWD)
|
2023-04-13 20:33:29 +00:00
|
|
|
let file_path = if let Some(path) = find_in_dirs_env(
|
2023-04-05 16:56:48 +00:00
|
|
|
&source_filename.item,
|
|
|
|
engine_state,
|
|
|
|
caller_stack,
|
|
|
|
get_dirs_var_from_call(call),
|
|
|
|
)? {
|
2022-09-08 20:41:49 +00:00
|
|
|
PathBuf::from(&path)
|
2022-08-31 20:32:56 +00:00
|
|
|
} else {
|
2023-11-21 09:08:10 +00:00
|
|
|
return Err(ShellError::FileNotFound {
|
|
|
|
span: source_filename.span,
|
|
|
|
});
|
2022-09-08 20:41:49 +00:00
|
|
|
};
|
|
|
|
|
2023-04-13 20:33:29 +00:00
|
|
|
if let Some(parent) = file_path.parent() {
|
|
|
|
let file_pwd = Value::string(parent.to_string_lossy(), call.head);
|
2022-09-08 20:41:49 +00:00
|
|
|
|
2023-04-13 20:33:29 +00:00
|
|
|
caller_stack.add_env_var("FILE_PWD".to_string(), file_pwd);
|
|
|
|
}
|
|
|
|
|
|
|
|
caller_stack.add_env_var(
|
|
|
|
"CURRENT_FILE".to_string(),
|
|
|
|
Value::string(file_path.to_string_lossy(), call.head),
|
|
|
|
);
|
2022-09-08 20:41:49 +00:00
|
|
|
|
|
|
|
// Evaluate the block
|
|
|
|
let block = engine_state.get_block(block_id as usize).clone();
|
Recursively export constants from modules (#10049)
<!--
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.
-->
https://github.com/nushell/nushell/pull/9773 introduced constants to
modules and allowed to export them, but only within one level. This PR:
* allows recursive exporting of constants from all submodules
* fixes submodule imports in a list import pattern
* makes sure exported constants are actual constants
Should unblock https://github.com/nushell/nushell/pull/9678
### Example:
```nushell
module spam {
export module eggs {
export module bacon {
export const viking = 'eats'
}
}
}
use spam
print $spam.eggs.bacon.viking # prints 'eats'
use spam [eggs]
print $eggs.bacon.viking # prints 'eats'
use spam eggs bacon viking
print $viking # prints 'eats'
```
### Limitation 1:
Considering the above `spam` module, attempting to get `eggs bacon` from
`spam` module doesn't work directly:
```nushell
use spam [ eggs bacon ] # attempts to load `eggs`, then `bacon`
use spam [ "eggs bacon" ] # obviously wrong name for a constant, but doesn't work also for commands
```
Workaround (for example):
```nushell
use spam eggs
use eggs [ bacon ]
print $bacon.viking # prints 'eats'
```
I'm thinking I'll just leave it in, as you can easily work around this.
It is also a limitation of the import pattern in general, not just
constants.
### Limitation 2:
`overlay use` successfully imports the constants, but `overlay hide`
does not hide them, even though it seems to hide normal variables
successfully. This needs more investigation.
# User-Facing Changes
<!-- List of all changes that impact the user experience here. This
helps us keep track of breaking changes. -->
Allows recursive constant exports from submodules.
# 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 -A
clippy::needless_collect -A clippy::result_large_err` to check that
you're using the standard code style
- `cargo test --workspace` to check that all tests pass
- `cargo run -- -c "use std testing; testing run-tests --path
crates/nu-std"` 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.
-->
2023-08-20 12:51:35 +00:00
|
|
|
let mut callee_stack = caller_stack.gather_captures(engine_state, &block.captures);
|
2022-09-08 20:41:49 +00:00
|
|
|
|
2023-02-01 23:02:27 +00:00
|
|
|
let result = eval_block_with_early_return(
|
2022-09-08 20:41:49 +00:00
|
|
|
engine_state,
|
|
|
|
&mut callee_stack,
|
|
|
|
&block,
|
|
|
|
input,
|
|
|
|
call.redirect_stdout,
|
|
|
|
call.redirect_stderr,
|
|
|
|
);
|
|
|
|
|
|
|
|
// Merge the block's environment to the current stack
|
|
|
|
redirect_env(engine_state, caller_stack, &callee_stack);
|
|
|
|
|
|
|
|
// Remove the file-relative PWD
|
|
|
|
caller_stack.remove_env_var(engine_state, "FILE_PWD");
|
2023-04-13 20:33:29 +00:00
|
|
|
caller_stack.remove_env_var(engine_state, "CURRENT_FILE");
|
2022-09-08 20:41:49 +00:00
|
|
|
|
|
|
|
result
|
2022-08-31 20:32:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
|
|
vec![Example {
|
|
|
|
description: "Sources the environment from foo.nu in the current context",
|
|
|
|
example: r#"source-env foo.nu"#,
|
|
|
|
result: None,
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
}
|