Compare commits

...

5 commits

Author SHA1 Message Date
797f401cf3
feat: implement command piping in shell program
All checks were successful
Release / Release (push) Successful in 37s
2024-08-28 12:31:16 +02:00
3ed8234852
feat: add support for 'cd' command in REPL loop 2024-08-28 12:17:44 +02:00
f73c10d6eb Merge pull request 'chore: Configure Renovate' (#1) from renovate/configure into main
All checks were successful
Release / Release (push) Successful in 33s
Reviewed-on: #1
2024-08-28 06:23:36 +00:00
1d50cd25d5 chore(deps): add renovate.json
All checks were successful
Release / Release (push) Successful in 35s
2024-08-28 06:00:40 +00:00
65f97a673b
refactor(main): improve command input handling loop
All checks were successful
Release / Release (push) Successful in 39s
2024-08-28 07:59:11 +02:00
2 changed files with 74 additions and 8 deletions

6
renovate.json Normal file
View file

@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>Renovate/renovate-config"
]
}

View file

@ -1,13 +1,73 @@
use std::{io::stdin, process::Command};
use std::{env, io::{stdin, stdout, Write}, path::Path, process::{Child, Command, Stdio}};
fn main(){
let mut input = String::new();
stdin().read_line(&mut input).unwrap();
loop {
print!("> ");
stdout().flush();
// read_line leaves a trailing newline, which trim removes
let command = input.trim();
let mut input = String::new();
stdin().read_line(&mut input).unwrap();
Command::new(command)
.spawn()
.unwrap();
// must be peekable so we know when we are on the last command
let mut commands = input.trim().split(" | ").peekable();
let mut previous_command = None;
while let Some(command) = commands.next() {
let mut parts = command.trim().split_whitespace();
let command = parts.next().unwrap();
let args = parts;
match command {
"cd" => {
let new_dir = args.peekable().peek()
.map_or("/", |x| *x);
let root = Path::new(new_dir);
if let Err(e) = env::set_current_dir(&root) {
eprintln!("{}", e);
}
previous_command = None;
},
"exit" => return,
command => {
let stdin = previous_command
.map_or(
Stdio::inherit(),
|output: Child| Stdio::from(output.stdout.unwrap())
);
let stdout = if commands.peek().is_some() {
// there is another command piped behind this one
// prepare to send output to the next command
Stdio::piped()
} else {
// there are no more commands piped behind this one
// send output to shell stdout
Stdio::inherit()
};
let output = Command::new(command)
.args(args)
.stdin(stdin)
.stdout(stdout)
.spawn();
match output {
Ok(output) => { previous_command = Some(output); },
Err(e) => {
previous_command = None;
eprintln!("{}", e);
},
};
}
}
}
if let Some(mut final_command) = previous_command {
// block until the final command has finished
final_command.wait();
}
}
}