15 releases (5 breaking)
0.20.1 | Oct 19, 2024 |
---|---|
0.20.0 | Oct 11, 2024 |
0.19.6 | Oct 7, 2024 |
0.19.3 | Sep 29, 2024 |
0.15.3 | Sep 11, 2024 |
#94 in Filesystem
1,165 downloads per month
580KB
14K
SLoC
A Command Line Interpreter in Rust
Introduction
A light-weight command line interpreter implemented in Rust, featuring Unix-like built-in commands.
Project purpose and goals:
- An exercise in Rust programming.
- Provide an alternative, light-weight solution for executing Unix-like commands in a Windows environment.
- Experiment with design ideas that enforce robust error handling practices in shell scripting. The interpreter operates in both interactive mode and script execution mode, with the latter activated by passing script files as command line arguments. In interactive mode, the interpreter leverages rustyline to provide history functionality and TAB completion.
Key Features
- WSL (Windows Subsystem for Linux) symbolic link support.
- User-customizable autocompletion.
- Strict enforcement of command result error checking.
- New in 0.19.6, Windows-only: execute external commands using Job object, experimental limit variables (
$__limit_proc_count, $__limit_proc_memory, $__limit_job_memory
) - New in 0.20.0: hooks: custom commands that execute upon an event (currently
on_external_command, on_start_eval_loop
andon_change dir
-- refer to src/hooks.rs for details).
The implementation of the built-in commands aims to be neither complete nor POSIX-compatible. The intent is to provide common functionality that *nix users are familiar with out of the box.
Philosophy
The output of a command and the status (result of execution) of a command are different things. The status of a command cannot be assigned to a variable, nor used in non-boolean expressions.
For example:
x = ls;
ls + 5;
do not work;
if (ls) (echo Ok)
if (!(cp ... )) (echo Fail)
work.
The output of a command can be captured using pipe syntax:
ls | x; echo $x
The "regular" variable types are: string, integer and real. The variable type is inferred automatically. A command status is a special, "hidden" type that cannot participate in expressions other than for the purpose of checking if a command succeeded or failed.
If a command failed and the status has not been checked the error is "bubbled up".
Command statuses can be used in boolean expressions such as:
command_1 || command_2
The expression returns the status of command_1 if successful, or the status of command_2 if command_1 failed.
An expression such as:
command_1 && command_2 && command_3
returns the status of the 1st command that failed, or success if all commands completed with no errors. Examples:
ls .. && ls bogus && ls c:\\
Cargo.lock Cargo.toml LICENSE README.md examples src target
1:12 bogus: The system cannot find the file specified. (os error 2)
ls .. && ls bogus && ls c:\\
-----------^
if (ls bogus || ls .) (ok)
cmds cmds.rs completions.rs eval.rs macros.rs main.rs prompt.rs scope.rs symlnk.rs testcmds.rs
testeval.rs utils.rs
ok
Command-Line Autocompletion Notes
This shell provides autocompletion when the TAB
key is pressed.
1. History Expansion
- When: The input starts with
!
followed by some text. - Function: Autocompletes entries from the command history that match the provided text.
- Example:
- Input:
!git sta
- Completion on TAB:
git status
(ifgit status
is in the history)
- Input:
2. Environment Variable Expansion
- When: The input includes
$
followed by a partial environment variable name. - Function: Autocompletes environment variable names but does not substitute their values.
- Examples:
- Input:
$HO
- Completion on TAB:
$HOMEDRIVE $HOMEPATH $HOME
- Completion on TAB:
- Input:
cat $HIST
- Completion on TAB:
cat $HISTORY
- Completion on TAB:
- Input:
The autocompletion provides matching environment variables, but does not replace them with their actual values.
3. Custom Command Completions
- When: Other completions do not apply.
- Function: Uses a custom YAML configuration file to autocomplete commands, subcommands, and options.
- Setup Instructions:
- Add a File: Create a file named
completions.yaml
in~\.shmy\
. - Edit the File: Define commands, subcommands, and options in YAML format. Example:
- Add a File: Create a file named
commands:
- name: cargo
subcommands:
- name: build
options:
- --release
- --verbose
- --target
- --features
- --jobs
- --example
- name: test
options:
- --release
- --verbose
- name: git
subcommands:
- name: commit
options:
- --amend
- --message
- name: clone
options:
- --recursive
- name: diff
options:
4. File Completion
- When: Other completions do not apply, and the input involves file paths.
- Function: Completes file names using built-in file completion features.
Expression Evaluation and Language Features
Note
Statements must end with a semicolon -- except for the last statement in a block (scope) where it is optional.
1. Variable Assignment and Evaluation
Variables can be assigned and utilized within commands:
i = 5; echo $i
Variable Scope
Variable scope is constrained to blocks defined by parentheses ( )
. When a variable $VAR
is not found in the current scope, the interpreter recursively searches parent (enclosing) scopes up to the global level. The global level "shadows" the environment variables.
Variable names are case-insensitive but case-preserving in Windows.
2. Control Structures
a) Conditional Statements
The interpreter supports if/else constructs with the following syntax:
if ( <condition> ) ( <body> ) else ( <body> )
Example:
i = 3; if ($i > 0) (echo "i is positive") else (echo "i is not positive")
b) Loops
The interpreter implements both while and for loops:
While Loop:
while ( <condition> ) ( <body> )
Example:
i = 3;
while ($i > 0) (echo $i; $i = $i - 1)
For Loop:
for VAR in <list>; ( <body> )
Example:
for f in *.rs; ( echo $f; ls -l $f )
c) Arithmetic Operations
Supported arithmetic operations include: +
, -
, /
, *
, //
, %
Note: The //
operator performs integer division, and %
is the modulo operator.
d) Logical Operations
Supported logical operations: ||
, &&
3. Command Execution Evaluation
- Commands evaluate to true upon successful execution (exit code 0) and false otherwise.
- Errors from failed commands are stored in the special variable
$__errors
if their status was evaluated. - If a command fails and its status is not evaluated or assigned, execution halts and an error is reported.
Example of error handling:
if (cp source/path dest/path) (echo Ok) else (echo $__errors)
4. Input/Output Redirection and Pipes
Redirects
The interpreter uses the following operators for redirects:
- Output to file:
command => file
- Append to file:
command =>> file
Note: The redirect operators '=>', '=>>' differ from '>' and '>>' used by other shells. This design choice avoids complications with inferring the meaning of '>' (which could be interpreted as greater-than) based on context.
Pipes
Output can be piped between commands using the following syntax:
<expression> | <expression>
Example:
ls -al | (echo "\t\tHEADER"; cat; echo "\t\tFOOTER")
Example of using pipe operator for variable assignment:
realpath .. | x; basename $x
Limitations
Output and redirects are not allowed with 'sudo', because on Windows the semantics of 'sudo' is not "substitute-user-do", but "runas Administrator" (UAC).
ls -al | sudo cat
The above expression does not work on Windows under this shell. Workaround:
sudo $SHELL
Then evaluate any expression, including pipes, in the elevated shell window.
Other workarounds, using the eval command and a combo of raw string and quotes:
sudo eval r"(\"ls -al | less\")"
sudo eval r"(\"ls -al | cat\")"
5. Special Variables
The interpreter provides special variables for output redirection:
- Redirect stdout:
$__stdout
- Redirect stderr:
$__stderr
Examples:
__stderr = NULL; ls;
__stderr = log.txt; ls -al;
__stderr = __stdout; ls -al /
__stdout = some/path/file.txt ls -al;
Color.
Some commands have default color output (ls, grep). The NO_COLOR variable, if present in the environment or current evaluation scope, suppresses color output regardless of its assigned value. E.g.
NO_COLOR = _; ls -al
Action Confirmation.
Some commands prompt the user for confirmation before taking action, for example 'rm' or 'mv' without '-f' or '--force', or redirecting output to a file that exists, example
cat => some.txt
some.txt exists, confirm overwrite? (yes/No)
Defining the NO_CONFIRM variable, regardless of its value, disables confirmation prompts. Disabling confirmation may be needed by some "batch" or automation scripts.
6. Variable Parsing and Expansion
This section details the parsing and expansion of shell-like variable expressions within a given string.
- Grouping and Escaping: Groups in substitution must be enclosed in quotes, and captures require double escaping.
- Examples of Variable Expansion:
- Basic variable expansion:
"${NAME}" -> "John Doe" "$GREETING" -> "Hello, World!"
- Variable substitution:
"${NAME/John/Jane}" -> "Jane Doe" "${GREETING/World/Universe}" -> "Hello, Universe!"
- Capture groups in substitution:
"${NAME/(\\w+) (\\w+)/\\2, \\1}" -> "Doe, John" "${GREETING/(Hello), (World)!/\\2 says \\1}" -> "World says Hello"
- Handling non-existent variables:
"${UNDEFINED_VAR}" -> "$UNDEFINED_VAR" "${UNDEFINED_VAR/foo/bar}" -> "$UNDEFINED_VAR"
- Basic variable expansion:
7. Escaping and Globbing
# Count lines in the current project
find src .*rs | srcs; echo "${srcs/\n/ }" | args; wc -l $args;
# Note: There is a subtle issue in the line above related to the implementation of the 'wc' command:
# If no arguments are provided, wc will read from stdin. Consequently, if no files ending in 'rs' are found, wc will
# wait for user input.
# A workaround for this issue:
find src ".*rs" | srcs; echo "${srcs/\n/ }" | args; if ($args) (wc -l $args);
# A more precise regular expression for the find command argument would be ".*\\.rs"
# The first backslash escapes the subsequent one, resulting in the Rust Regex being compiled as: .*\.rs
# Note that in this interpreter, backslashes only function as escape characters inside quotes. This design choice
# avoids complications with TAB-completion of Windows file paths in interactive mode.
find src ".*\\.rs" | src; if ($src) (wc -l $src)
Without quotes, backslashes are passed verbatim to the tokenizer, which attempts globbing. If the pattern is successfully globbed, the expanded tokens are passed to the expression evaluator; otherwise, the pattern is treated as a literal. Note the differences in outputs below:
~\Projects\shmy> for f in src\*.rs; (echo $f)
src\cmds.rs
src\eval.rs
src\macros.rs
src\main.rs
src\prompt.rs
src\testeval.rs
src\utils.rs
~\Projects\shmy> for f in "src\*.rs"; (echo $f)
src*.rs
~\Projects\shmy> for f in "src\\*.rs"; (echo $f)
src\*.rs
8. Raw Strings
The interpreter supports raw strings to avoid escaping:
echo r"(This is a "raw string")"
9. Export and Source
Note
Starting with version 0.19.5, export and source are automatically defined as aliases for eval --export and eval --source, respectively.
The interpreter implements rough equivalents of bash 'eval', 'export', and 'source' commands via the eval command, which supports --export and --source command line options.
Examples:
eval --export r"(__prompt = "CuStOm\ Pr0mpT \\u@\\h:\\w\\$ ")"
eval --source examples/activate.my
# examples/activate.my
# Activate / deactivate Python virtual environment.
# From within the interactive shell, type:
# eval --source activate.my
# Run again to deactivate the virtual env (i.e., restore saved environment vars.)
if (defined __OLD_PATH) (
# Restore (deactivate)
# Use raw string to prevent $__OLD_PATH expansion before being passed to
# the eval command (and pass backslash path delimiters through as-is)
eval --export r"(PATH = $__OLD_PATH)";
# Erase variables that are no longer needed
eval --export r"($VIRTUAL_ENV = )";
eval --export r"($__OLD_PATH = )";
) else (
# Activate
eval --export "VIRTUAL_ENV = C:\\Users\\MyUser\\Projects\\venv312-chess";
eval --export r"(__OLD_PATH = $PATH)";
# Use raw string r"(...)" to prevent the semicolon from being interpreted as
# end of statement, and to pass variable names directly to the eval command,
# without expanding.
eval --export r"(PATH = "${VIRTUAL_ENV}\\Scripts\;$PATH")";
echo "VIRTUAL_ENV=${VIRTUAL_ENV}";
);
Gotchas
Variable Expansion in Arithmetic
The expression 2*3
evaluates to 6
, but x=2; y=3; $x*$y
evaluates to 2*3
. This behavior stems from the interpreter's attempt to determine the contextual meaning of /
and *
, which can function as path delimiters, glob wildcards, or arithmetic operators. This distinction is made at parsing time, while variable assignment occurs at evaluation time. When using spaces, as in $x * $y
, the evaluation proceeds as expected.
Operation Precedence
The expression echo 2 + 2
is evaluated as (echo 2) + 2
, due to the low precedence of the addition operator. It is recommended to always use parentheses, as in echo (2 + 2)
, to ensure correct evaluation.
Semicolon in Environment Variables
Under Windows, environment variables such as Path and PATHEXT contain semicolons, for example:
env | grep PATHEXT
PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.PYW
This needs to be taken into account when trying to evaluate expressions that use such variables, because semicolon is also the end of a statement in this shell. The following will not work as expected:
export "my_var = $PATHEXT;.CPL"
Instead of appending .CPL to PATHEXT and assigning the result to my_var, this will result in my_var being assigned ".COM". The correct expression is:
export "my_var = \"$PATHEXT;.CPL\""
We can test this in the shell:
which powercfg.cpl
returns nothing by default. After adding .CPL to PATHEXT the command panel commandlet will be found:
export "PATHEXT = \"$PATHEXT;.CPL\""
which powercfg.cpl
C:\WINDOWS\system32\powercfg.cpl
and typing powercfg.cpl
brings up the Power Configuration panel.
Another example, using raw strings:
export r"(PATH = \"$PATH;C:\\Program Files\\Windows NT\\Accessories")"
For more detailed information or specific use cases, refer to the source code and examples in the repo at: https://github.com/cristivlas/shmy
Dependencies
~17–61MB
~1M SLoC