2023-08-29 23:46:50 +02:00
|
|
|
use nu_cmd_base::hook::{eval_env_change_hook, eval_hook};
|
2022-07-29 22:42:00 +02:00
|
|
|
use nu_engine::eval_block;
|
|
|
|
use nu_parser::parse;
|
Add `command_prelude` module (#12291)
# Description
When implementing a `Command`, one must also import all the types
present in the function signatures for `Command`. This makes it so that
we often import the same set of types in each command implementation
file. E.g., something like this:
```rust
use nu_protocol::ast::Call;
use nu_protocol::engine::{Command, EngineState, Stack};
use nu_protocol::{
record, Category, Example, IntoInterruptiblePipelineData, IntoPipelineData, PipelineData,
ShellError, Signature, Span, Type, Value,
};
```
This PR adds the `nu_engine::command_prelude` module which contains the
necessary and commonly used types to implement a `Command`:
```rust
// command_prelude.rs
pub use crate::CallExt;
pub use nu_protocol::{
ast::{Call, CellPath},
engine::{Command, EngineState, Stack},
record, Category, Example, IntoInterruptiblePipelineData, IntoPipelineData, IntoSpanned,
PipelineData, Record, ShellError, Signature, Span, Spanned, SyntaxShape, Type, Value,
};
```
This should reduce the boilerplate needed to implement a command and
also gives us a place to track the breadth of the `Command` API. I tried
to be conservative with what went into the prelude modules, since it
might be hard/annoying to remove items from the prelude in the future.
Let me know if something should be included or excluded.
2024-03-26 22:17:30 +01:00
|
|
|
use nu_protocol::{
|
|
|
|
cli_error::CliError,
|
|
|
|
debugger::WithoutDebug,
|
|
|
|
engine::{EngineState, Stack, StateWorkingSet},
|
|
|
|
PipelineData, Value,
|
|
|
|
};
|
2023-05-10 14:05:01 +02:00
|
|
|
use nu_std::load_standard_library;
|
2024-04-06 17:03:22 +02:00
|
|
|
use std::{
|
|
|
|
io::{self, BufRead, Read, Write},
|
|
|
|
sync::Arc,
|
|
|
|
};
|
2022-07-29 22:42:00 +02:00
|
|
|
|
2022-02-02 21:59:01 +01:00
|
|
|
/// Echo's value of env keys from args
|
|
|
|
/// Example: nu --testbin env_echo FOO BAR
|
|
|
|
/// If it it's not present echo's nothing
|
2022-10-20 14:56:44 +02:00
|
|
|
pub fn echo_env(to_stdout: bool) {
|
2022-02-02 21:59:01 +01:00
|
|
|
let args = args();
|
|
|
|
for arg in args {
|
2023-11-28 13:42:35 +01:00
|
|
|
echo_one_env(&arg, to_stdout)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-21 14:15:05 +01:00
|
|
|
pub fn echo_env_and_fail(to_stdout: bool) {
|
|
|
|
echo_env(to_stdout);
|
|
|
|
fail();
|
|
|
|
}
|
|
|
|
|
2023-11-28 13:42:35 +01:00
|
|
|
fn echo_one_env(arg: &str, to_stdout: bool) {
|
|
|
|
if let Ok(v) = std::env::var(arg) {
|
|
|
|
if to_stdout {
|
|
|
|
println!("{v}");
|
|
|
|
} else {
|
|
|
|
eprintln!("{v}");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Mix echo of env keys from input
|
|
|
|
/// Example:
|
|
|
|
/// * nu --testbin echo_env_mixed out-err FOO BAR
|
|
|
|
/// * nu --testbin echo_env_mixed err-out FOO BAR
|
|
|
|
/// If it's not present, panic instead
|
|
|
|
pub fn echo_env_mixed() {
|
|
|
|
let args = args();
|
|
|
|
let args = &args[1..];
|
|
|
|
|
|
|
|
if args.len() != 3 {
|
|
|
|
panic!(
|
|
|
|
r#"Usage examples:
|
|
|
|
* nu --testbin echo_env_mixed out-err FOO BAR
|
|
|
|
* nu --testbin echo_env_mixed err-out FOO BAR"#
|
|
|
|
)
|
|
|
|
}
|
|
|
|
match args[0].as_str() {
|
|
|
|
"out-err" => {
|
|
|
|
let (out_arg, err_arg) = (&args[1], &args[2]);
|
|
|
|
echo_one_env(out_arg, true);
|
|
|
|
echo_one_env(err_arg, false);
|
|
|
|
}
|
|
|
|
"err-out" => {
|
|
|
|
let (err_arg, out_arg) = (&args[1], &args[2]);
|
|
|
|
echo_one_env(err_arg, false);
|
|
|
|
echo_one_env(out_arg, true);
|
2022-02-02 21:59:01 +01:00
|
|
|
}
|
2023-11-28 13:42:35 +01:00
|
|
|
_ => panic!("The mixed type must be `out_err`, `err_out`"),
|
2022-02-02 21:59:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-19 15:23:11 +02:00
|
|
|
/// Cross platform echo using println!()
|
2024-04-10 15:31:29 +02:00
|
|
|
/// Example: nu --testbin cococo a b c
|
2023-08-19 15:23:11 +02:00
|
|
|
/// a b c
|
2022-02-02 21:59:01 +01:00
|
|
|
pub fn cococo() {
|
|
|
|
let args: Vec<String> = args();
|
|
|
|
|
|
|
|
if args.len() > 1 {
|
|
|
|
// Write back out all the arguments passed
|
|
|
|
// if given at least 1 instead of chickens
|
|
|
|
// speaking co co co.
|
|
|
|
println!("{}", &args[1..].join(" "));
|
|
|
|
} else {
|
|
|
|
println!("cococo");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-19 15:23:11 +02:00
|
|
|
/// Cross platform cat (open a file, print the contents) using read_to_string and println!()
|
2022-02-02 21:59:01 +01:00
|
|
|
pub fn meow() {
|
|
|
|
let args: Vec<String> = args();
|
|
|
|
|
|
|
|
for arg in args.iter().skip(1) {
|
|
|
|
let contents = std::fs::read_to_string(arg).expect("Expected a filepath");
|
2023-01-30 02:37:54 +01:00
|
|
|
println!("{contents}");
|
2022-02-02 21:59:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-19 15:23:11 +02:00
|
|
|
/// Cross platform cat (open a file, print the contents) using read() and write_all() / binary
|
2022-03-27 04:35:59 +02:00
|
|
|
pub fn meowb() {
|
|
|
|
let args: Vec<String> = args();
|
|
|
|
|
|
|
|
let stdout = io::stdout();
|
|
|
|
let mut handle = stdout.lock();
|
|
|
|
|
|
|
|
for arg in args.iter().skip(1) {
|
|
|
|
let buf = std::fs::read(arg).expect("Expected a filepath");
|
|
|
|
handle.write_all(&buf).expect("failed to write to stdout");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Relays anything received on stdin to stdout
|
|
|
|
pub fn relay() {
|
|
|
|
io::copy(&mut io::stdin().lock(), &mut io::stdout().lock())
|
|
|
|
.expect("failed to copy stdin to stdout");
|
|
|
|
}
|
|
|
|
|
2023-08-19 15:23:11 +02:00
|
|
|
/// Cross platform echo but concats arguments without space and NO newline
|
|
|
|
/// nu --testbin nonu a b c
|
|
|
|
/// abc
|
2022-02-02 21:59:01 +01:00
|
|
|
pub fn nonu() {
|
2023-01-30 02:37:54 +01:00
|
|
|
args().iter().skip(1).for_each(|arg| print!("{arg}"));
|
2022-02-02 21:59:01 +01:00
|
|
|
}
|
|
|
|
|
2023-08-19 15:23:11 +02:00
|
|
|
/// Repeat a string or char N times
|
|
|
|
/// nu --testbin repeater a 5
|
|
|
|
/// aaaaa
|
|
|
|
/// nu --testbin repeater test 5
|
|
|
|
/// testtesttesttesttest
|
2022-02-02 21:59:01 +01:00
|
|
|
pub fn repeater() {
|
|
|
|
let mut stdout = io::stdout();
|
|
|
|
let args = args();
|
|
|
|
let mut args = args.iter().skip(1);
|
|
|
|
let letter = args.next().expect("needs a character to iterate");
|
|
|
|
let count = args.next().expect("need the number of times to iterate");
|
|
|
|
|
|
|
|
let count: u64 = count.parse().expect("can't convert count to number");
|
|
|
|
|
|
|
|
for _ in 0..count {
|
2023-01-30 02:37:54 +01:00
|
|
|
let _ = write!(stdout, "{letter}");
|
2022-02-02 21:59:01 +01:00
|
|
|
}
|
|
|
|
let _ = stdout.flush();
|
|
|
|
}
|
|
|
|
|
2023-08-19 15:23:11 +02:00
|
|
|
/// A version of repeater that can output binary data, even null bytes
|
special-case ExternalStream in bytes starts-with (#8203)
# Description
`bytes starts-with` converts the input into a `Value` before running
.starts_with to find if the binary matches. This has two side effects:
it makes the code simpler, only dealing in whole values, and simplifying
a lot of input pipeline handling and value transforming it would
otherwise have to do. _Especially_ in the presence of a cell path to
drill into. It also makes buffers the entire input into memory, which
can take up a lot of memory when dealing with large files, especially if
you only want to check the first few bytes (like for a magic number).
This PR adds a special branch on PipelineData::ExternalStream with a
streaming version of starts_with.
# User-Facing Changes
Opening large files and running bytes starts-with on them will not take
a long time.
# 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` to check that you're using the standard code
style
- `cargo test --workspace` to check that all tests pass
# Drawbacks
Streaming checking is more complicated, and there may be bugs. I tested
it with multiple chunks with string data and binary data and it seems to
work alright up to 8k and over bytes, though.
The existing `operate` method still exists because the way it handles
cell paths and values is complicated. This causes some "code
duplication", or at least some intent duplication, between the value
code and the streaming code. This might be worthwhile considering the
performance gains (approaching infinity on larger inputs).
Another thing to consider is that my ExternalStream branch considers
string data as valid input. The operate branch only parses Binary
values, so it would fail. `open` is kind of unpredictable on whether it
returns string data or binary data, even when passing `--raw`. I think
this can be a problem but not really one I'm trying to tackle in this
PR, so, it's worth considering.
2023-02-26 15:17:44 +01:00
|
|
|
pub fn repeat_bytes() {
|
|
|
|
let mut stdout = io::stdout();
|
|
|
|
let args = args();
|
|
|
|
let mut args = args.iter().skip(1);
|
|
|
|
|
|
|
|
while let (Some(binary), Some(count)) = (args.next(), args.next()) {
|
|
|
|
let bytes: Vec<u8> = (0..binary.len())
|
|
|
|
.step_by(2)
|
|
|
|
.map(|i| {
|
|
|
|
u8::from_str_radix(&binary[i..i + 2], 16)
|
|
|
|
.expect("binary string is valid hexadecimal")
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
let count: u64 = count.parse().expect("repeat count must be a number");
|
|
|
|
|
|
|
|
for _ in 0..count {
|
|
|
|
stdout
|
|
|
|
.write_all(&bytes)
|
|
|
|
.expect("writing to stdout must not fail");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let _ = stdout.flush();
|
|
|
|
}
|
|
|
|
|
2023-08-19 15:23:11 +02:00
|
|
|
/// Another type of echo that outputs a parameter per line, looping infinitely
|
2022-02-02 21:59:01 +01:00
|
|
|
pub fn iecho() {
|
|
|
|
// println! panics if stdout gets closed, whereas writeln gives us an error
|
|
|
|
let mut stdout = io::stdout();
|
|
|
|
let _ = args()
|
|
|
|
.iter()
|
|
|
|
.skip(1)
|
|
|
|
.cycle()
|
2023-01-30 02:37:54 +01:00
|
|
|
.try_for_each(|v| writeln!(stdout, "{v}"));
|
2022-02-02 21:59:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn fail() {
|
|
|
|
std::process::exit(1);
|
|
|
|
}
|
|
|
|
|
2023-08-19 15:23:11 +02:00
|
|
|
/// With no parameters, will chop a character off the end of each line
|
2022-02-02 21:59:01 +01:00
|
|
|
pub fn chop() {
|
|
|
|
if did_chop_arguments() {
|
|
|
|
// we are done and don't care about standard input.
|
|
|
|
std::process::exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// if no arguments given, chop from standard input and exit.
|
|
|
|
let stdin = io::stdin();
|
|
|
|
let mut stdout = io::stdout();
|
|
|
|
|
2024-01-15 03:52:16 +01:00
|
|
|
for given in stdin.lock().lines().map_while(Result::ok) {
|
2022-02-02 21:59:01 +01:00
|
|
|
let chopped = if given.is_empty() {
|
|
|
|
&given
|
|
|
|
} else {
|
|
|
|
let to = given.len() - 1;
|
|
|
|
&given[..to]
|
|
|
|
};
|
|
|
|
|
2023-01-30 02:37:54 +01:00
|
|
|
if let Err(_e) = writeln!(stdout, "{chopped}") {
|
2022-02-02 21:59:01 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::process::exit(0);
|
|
|
|
}
|
|
|
|
|
2022-07-29 22:42:00 +02:00
|
|
|
fn outcome_err(
|
|
|
|
engine_state: &EngineState,
|
|
|
|
error: &(dyn miette::Diagnostic + Send + Sync + 'static),
|
|
|
|
) -> ! {
|
|
|
|
let working_set = StateWorkingSet::new(engine_state);
|
|
|
|
|
|
|
|
eprintln!("Error: {:?}", CliError(error, &working_set));
|
|
|
|
|
|
|
|
std::process::exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn outcome_ok(msg: String) -> ! {
|
2023-01-30 02:37:54 +01:00
|
|
|
println!("{msg}");
|
2022-07-29 22:42:00 +02:00
|
|
|
|
|
|
|
std::process::exit(0);
|
|
|
|
}
|
|
|
|
|
2023-06-14 23:12:55 +02:00
|
|
|
/// Generate a minimal engine state with just `nu-cmd-lang`, `nu-command`, and `nu-cli` commands.
|
|
|
|
fn get_engine_state() -> EngineState {
|
|
|
|
let engine_state = nu_cmd_lang::create_default_context();
|
|
|
|
let engine_state = nu_command::add_shell_command_context(engine_state);
|
|
|
|
nu_cli::add_cli_context(engine_state)
|
|
|
|
}
|
|
|
|
|
2022-07-29 22:42:00 +02:00
|
|
|
pub fn nu_repl() {
|
|
|
|
//cwd: &str, source_lines: &[&str]) {
|
|
|
|
let cwd = std::env::current_dir().expect("Could not get current working directory.");
|
|
|
|
let source_lines = args();
|
|
|
|
|
2023-06-14 23:12:55 +02:00
|
|
|
let mut engine_state = get_engine_state();
|
2024-04-06 17:03:22 +02:00
|
|
|
let mut top_stack = Arc::new(Stack::new());
|
2022-07-29 22:42:00 +02:00
|
|
|
|
2023-05-10 14:05:01 +02:00
|
|
|
engine_state.add_env_var("PWD".into(), Value::test_string(cwd.to_string_lossy()));
|
2022-07-29 22:42:00 +02:00
|
|
|
|
|
|
|
let mut last_output = String::new();
|
|
|
|
|
2023-05-10 14:05:01 +02:00
|
|
|
load_standard_library(&mut engine_state).expect("Could not load the standard library.");
|
|
|
|
|
2022-07-29 22:42:00 +02:00
|
|
|
for (i, line) in source_lines.iter().enumerate() {
|
2024-04-06 17:03:22 +02:00
|
|
|
let mut stack = Stack::with_parent(top_stack.clone());
|
Migrate to a new PWD API (#12603)
This is the first PR towards migrating to a new `$env.PWD` API that
returns potentially un-canonicalized paths. Refer to PR #12515 for
motivations.
## New API: `EngineState::cwd()`
The goal of the new API is to cover both parse-time and runtime use
case, and avoid unintentional misuse. It takes an `Option<Stack>` as
argument, which if supplied, will search for `$env.PWD` on the stack in
additional to the engine state. I think with this design, there's less
confusion over parse-time and runtime environments. If you have access
to a stack, just supply it; otherwise supply `None`.
## Deprecation of other PWD-related APIs
Other APIs are re-implemented using `EngineState::cwd()` and properly
documented. They're marked deprecated, but their behavior is unchanged.
Unused APIs are deleted, and code that accesses `$env.PWD` directly
without using an API is rewritten.
Deprecated APIs:
* `EngineState::current_work_dir()`
* `StateWorkingSet::get_cwd()`
* `env::current_dir()`
* `env::current_dir_str()`
* `env::current_dir_const()`
* `env::current_dir_str_const()`
Other changes:
* `EngineState::get_cwd()` (deleted)
* `StateWorkingSet::list_env()` (deleted)
* `repl::do_run_cmd()` (rewritten with `env::current_dir_str()`)
## `cd` and `pwd` now use logical paths by default
This pulls the changes from PR #12515. It's currently somewhat broken
because using non-canonicalized paths exposed a bug in our path
normalization logic (Issue #12602). Once that is fixed, this should
work.
## Future plans
This PR needs some tests. Which test helpers should I use, and where
should I put those tests?
I noticed that unquoted paths are expanded within `eval_filepath()` and
`eval_directory()` before they even reach the `cd` command. This means
every paths is expanded twice. Is this intended?
Once this PR lands, the plan is to review all usages of the deprecated
APIs and migrate them to `EngineState::cwd()`. In the meantime, these
usages are annotated with `#[allow(deprecated)]` to avoid breaking CI.
---------
Co-authored-by: Jakub Žádník <kubouch@gmail.com>
2024-05-03 13:33:09 +02:00
|
|
|
#[allow(deprecated)]
|
2023-01-24 12:23:42 +01:00
|
|
|
let cwd = nu_engine::env::current_dir(&engine_state, &stack)
|
|
|
|
.unwrap_or_else(|err| outcome_err(&engine_state, &err));
|
2022-07-29 22:42:00 +02:00
|
|
|
|
|
|
|
// Before doing anything, merge the environment from the previous REPL iteration into the
|
|
|
|
// permanent state.
|
2023-06-04 21:04:28 +02:00
|
|
|
if let Err(err) = engine_state.merge_env(&mut stack, &cwd) {
|
2022-07-29 22:42:00 +02:00
|
|
|
outcome_err(&engine_state, &err);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for pre_prompt hook
|
|
|
|
let config = engine_state.get_config();
|
|
|
|
if let Some(hook) = config.hooks.pre_prompt.clone() {
|
2023-08-27 13:55:20 +02:00
|
|
|
if let Err(err) = eval_hook(
|
|
|
|
&mut engine_state,
|
|
|
|
&mut stack,
|
|
|
|
None,
|
|
|
|
vec![],
|
|
|
|
&hook,
|
|
|
|
"pre_prompt",
|
|
|
|
) {
|
2022-07-29 22:42:00 +02:00
|
|
|
outcome_err(&engine_state, &err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for env change hook
|
|
|
|
let config = engine_state.get_config();
|
|
|
|
if let Err(err) = eval_env_change_hook(
|
|
|
|
config.hooks.env_change.clone(),
|
|
|
|
&mut engine_state,
|
|
|
|
&mut stack,
|
|
|
|
) {
|
|
|
|
outcome_err(&engine_state, &err);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for pre_execution hook
|
|
|
|
let config = engine_state.get_config();
|
2023-03-16 23:45:35 +01:00
|
|
|
|
2023-06-11 00:38:11 +02:00
|
|
|
engine_state
|
|
|
|
.repl_state
|
2023-03-16 23:45:35 +01:00
|
|
|
.lock()
|
2023-06-11 00:38:11 +02:00
|
|
|
.expect("repl state mutex")
|
|
|
|
.buffer = line.to_string();
|
2023-03-16 23:45:35 +01:00
|
|
|
|
2022-07-29 22:42:00 +02:00
|
|
|
if let Some(hook) = config.hooks.pre_execution.clone() {
|
2023-08-27 13:55:20 +02:00
|
|
|
if let Err(err) = eval_hook(
|
|
|
|
&mut engine_state,
|
|
|
|
&mut stack,
|
|
|
|
None,
|
|
|
|
vec![],
|
|
|
|
&hook,
|
|
|
|
"pre_execution",
|
|
|
|
) {
|
2022-07-29 22:42:00 +02:00
|
|
|
outcome_err(&engine_state, &err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Eval the REPL line
|
|
|
|
let (block, delta) = {
|
|
|
|
let mut working_set = StateWorkingSet::new(&engine_state);
|
2023-04-07 02:35:45 +02:00
|
|
|
let block = parse(
|
2022-07-29 22:42:00 +02:00
|
|
|
&mut working_set,
|
2023-01-30 02:37:54 +01:00
|
|
|
Some(&format!("line{i}")),
|
2022-07-29 22:42:00 +02:00
|
|
|
line.as_bytes(),
|
|
|
|
false,
|
|
|
|
);
|
|
|
|
|
2023-04-07 02:35:45 +02:00
|
|
|
if let Some(err) = working_set.parse_errors.first() {
|
|
|
|
outcome_err(&engine_state, err);
|
2022-07-29 22:42:00 +02:00
|
|
|
}
|
|
|
|
(block, working_set.render())
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Err(err) = engine_state.merge_delta(delta) {
|
|
|
|
outcome_err(&engine_state, &err);
|
|
|
|
}
|
|
|
|
|
2022-12-07 19:31:57 +01:00
|
|
|
let input = PipelineData::empty();
|
2022-07-29 22:42:00 +02:00
|
|
|
let config = engine_state.get_config();
|
|
|
|
|
2024-04-06 17:03:22 +02:00
|
|
|
{
|
|
|
|
let stack = &mut stack.start_capture();
|
|
|
|
match eval_block::<WithoutDebug>(&engine_state, stack, &block, input) {
|
|
|
|
Ok(pipeline_data) => match pipeline_data.collect_string("", config) {
|
|
|
|
Ok(s) => last_output = s,
|
|
|
|
Err(err) => outcome_err(&engine_state, &err),
|
|
|
|
},
|
2022-07-29 22:42:00 +02:00
|
|
|
Err(err) => outcome_err(&engine_state, &err),
|
2024-04-06 17:03:22 +02:00
|
|
|
}
|
2022-07-29 22:42:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(cwd) = stack.get_env_var(&engine_state, "PWD") {
|
2023-01-24 12:23:42 +01:00
|
|
|
let path = cwd
|
2024-02-18 17:47:10 +01:00
|
|
|
.coerce_str()
|
2023-01-24 12:23:42 +01:00
|
|
|
.unwrap_or_else(|err| outcome_err(&engine_state, &err));
|
2024-02-18 17:47:10 +01:00
|
|
|
let _ = std::env::set_current_dir(path.as_ref());
|
2022-07-29 22:42:00 +02:00
|
|
|
engine_state.add_env_var("PWD".into(), cwd);
|
|
|
|
}
|
2024-04-06 17:03:22 +02:00
|
|
|
top_stack = Arc::new(Stack::with_changes_from_child(top_stack, stack));
|
2022-07-29 22:42:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
outcome_ok(last_output)
|
|
|
|
}
|
|
|
|
|
2022-02-02 21:59:01 +01:00
|
|
|
fn did_chop_arguments() -> bool {
|
|
|
|
let args: Vec<String> = args();
|
|
|
|
|
|
|
|
if args.len() > 1 {
|
|
|
|
let mut arguments = args.iter();
|
|
|
|
arguments.next();
|
|
|
|
|
|
|
|
for arg in arguments {
|
|
|
|
let chopped = if arg.is_empty() {
|
2022-02-24 20:02:28 +01:00
|
|
|
arg
|
2022-02-02 21:59:01 +01:00
|
|
|
} else {
|
|
|
|
let to = arg.len() - 1;
|
|
|
|
&arg[..to]
|
|
|
|
};
|
|
|
|
|
2023-01-30 02:37:54 +01:00
|
|
|
println!("{chopped}");
|
2022-02-02 21:59:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
false
|
|
|
|
}
|
|
|
|
|
2023-02-24 21:39:52 +01:00
|
|
|
pub fn input_bytes_length() {
|
|
|
|
let stdin = io::stdin();
|
|
|
|
let count = stdin.lock().bytes().count();
|
|
|
|
|
|
|
|
println!("{}", count);
|
|
|
|
}
|
|
|
|
|
2022-02-02 21:59:01 +01:00
|
|
|
fn args() -> Vec<String> {
|
|
|
|
// skip (--testbin bin_name args)
|
|
|
|
std::env::args().skip(2).collect()
|
|
|
|
}
|