Compare commits

...

9 Commits

Author SHA1 Message Date
DTB
e0f9641e93
run(1) works 2024-07-24 23:39:47 -06:00
DTB
f7e0cb5c14
simexec(1): rename to run(1) 2024-07-24 19:04:02 -06:00
DTB
653576b35d
simexec(1): Merge in pschdir(1) functionality 2024-07-24 19:02:23 -06:00
DTB
87845ba5bd
Merge branch 'pschdir' into simexec 2024-07-24 18:47:09 -06:00
DTB
427e1b9d36
simexec(1): non-functional Rust rewrite 2024-07-24 18:46:05 -06:00
DTB
e34e4fad3f
pschdir(1): rewrite in Rust 2024-07-23 21:14:42 -06:00
DTB
f4514592bd pschdir(1): license 2024-07-23 18:07:59 -06:00
DTB
46f0d4955f pschdir(1): add source file 2024-07-23 17:39:55 -06:00
DTB
a8c40de747 pschdir(1) sans documentation, from trinity/src 2024-07-23 17:39:03 -06:00
3 changed files with 105 additions and 40 deletions

View File

@ -32,7 +32,7 @@ RUSTLIBS = --extern getopt=build/o/libgetopt.rlib \
CFLAGS += -I$(SYSEXITS)
.PHONY: all
all: dj false fop hru intcmp mm npc rpn simexec scrut str strcmp swab true
all: dj false fop hru intcmp mm npc rpn run scrut str strcmp swab true
# keep build/include until bindgen(1) has stdin support
# https://github.com/rust-lang/rust-bindgen/issues/2703
@ -127,16 +127,16 @@ rpn: build/bin/rpn
build/bin/rpn: src/rpn.rs build rustlibs
$(RUSTC) $(RUSTFLAGS) $(RUSTLIBS) -o $@ src/rpn.rs
.PHONY: run
run: build/bin/run
build/bin/run: src/run.rs build
$(RUSTC) $(RUSTFLAGS) $(RUSTLIBS) -o $@ src/run.rs
.PHONY: scrut
scrut: build/bin/scrut
build/bin/scrut: src/scrut.c build
$(CC) $(CFLAGS) -o $@ src/scrut.c
.PHONY: simexec
simexec: build/bin/simexec
build/bin/simexec: src/simexec.c build
$(CC) $(CFLAGS) -o $@ src/simexec.c
.PHONY: str
str: build/bin/str
build/bin/str: src/str.c build

99
src/run.rs Normal file
View File

@ -0,0 +1,99 @@
/*
* Copyright (c) 20222024 DTB <trinity@trinity.moe>
* SPDX-License-Identifier: AGPL-3.0-or-later
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see https://www.gnu.org/licenses/.
*/
use std::{
env::args,
io::Error,
os::unix::process::CommandExt,
process::{ Command, ExitCode }
};
extern crate getopt;
use getopt::GetOpt;
extern crate strerror;
use strerror::StrError;
extern crate sysexits;
use sysexits::{ EX_UNAVAILABLE, EX_USAGE };
fn error(p: &str, n: &str, e: Error) -> ExitCode {
eprintln!("{}: {}: {}", p, n, e.strerror());
ExitCode::from(EX_UNAVAILABLE as u8)
}
fn usage(s: &str) -> ExitCode {
eprintln!("Usage: {} command [argument...]", s);
ExitCode::from(EX_USAGE as u8)
}
fn main() -> ExitCode {
let argv = args().collect::<Vec<String>>();
let mut optind = 1;
/* arg0 is None if no argv[0] is meant to be given (argc will be 0),
* however I don't know how to do this in Rust, so the option is currently
* meaningless. -z will set this to None. */
let mut arg0: Option<String> = Some(String::default());
let mut dir = String::from("."); // $PWD for command
while let Some(opt) = argv.getopt("C:n:z") {
match opt.opt() {
// Consistent with precedent; git, make, tar, etc.
Ok("C") => dir = opt.arg().unwrap(),
Ok("n") => arg0 = Some(opt.arg().unwrap()),
// Ok("z") => arg0 = None,
_ => { return usage(&argv[0]); }
}
optind = opt.ind();
}
if argv.len() - optind < 1 { return usage(&argv[0]); }
let mut cmd = Command::new(argv[optind].clone());
cmd.current_dir(dir.clone());
match arg0 {
Some(a) if a != String::default() => { cmd.arg0(a); },
_ => () // TODO: argv[0]==NULL support
}
if argv.len() - optind > 1 { // there are arguments
let cmdargs = argv
.iter()
.clone()
.skip(optind + 1)
.collect::<Vec<&String>>();
cmd.args(cmdargs);
}
match cmd.spawn() {
Ok(mut child) => match child.wait() {
Ok(status) => match status.code() {
Some(code) => ExitCode::from(code as u8),
None => {
eprintln!("{}: {}: process terminated by signal",
argv[0], argv[2]);
ExitCode::FAILURE
}
},
Err(e) => error(&argv[0], &argv[optind], e)
},
Err(e) => error(&argv[0], &argv[optind], e)
}
}

View File

@ -1,34 +0,0 @@
/*
* Copyright (c) 20222024 DTB <trinity@trinity.moe>
* SPDX-License-Identifier: AGPL-3.0-or-later
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see https://www.gnu.org/licenses/.
*/
#include <stdio.h> /* fprintf(3), NULL */
#include <unistd.h> /* execv(3), */
#include <sysexits.h> /* EX_USAGE */
char *program_name = "simexec";
int main(int argc, char *argv[]){
if (argc < 2) {
fprintf(stderr, "Usage: %s binary argv...\n",
argv[0] == NULL ? program_name : argv[0]
);
return EX_USAGE;
}
execv(argv[1], &argv[2]);
}