bonsix/src/fop.rs

127 lines
3.2 KiB
Rust
Raw Normal View History

2023-12-27 15:44:19 -07:00
/*
* Copyright (c) 20232024 Emma Tebibyte <emma@tebibyte.media>
2023-12-27 15:44:19 -07:00
* 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::{ Read, stdin, stdout, Write },
2023-12-27 15:44:19 -07:00
process::{ Command, exit, Stdio },
};
extern crate getopt;
2024-03-01 23:10:28 -07:00
extern crate strerror;
extern crate sysexits;
2024-04-11 23:37:04 -06:00
use getopt::GetOpt;
use strerror::StrError;
use sysexits::{ EX_DATAERR, EX_IOERR, EX_UNAVAILABLE, EX_USAGE };
2023-12-27 15:44:19 -07:00
fn main() {
let argv = args().collect::<Vec<String>>();
2024-06-21 03:23:39 -06:00
let mut d = '\u{1E}'.to_string();
let mut index_arg = 0;
2024-04-11 23:37:04 -06:00
let usage = format!(
"Usage: {} [-d delimiter] index command [args...]",
argv[0],
);
2024-04-11 23:37:04 -06:00
while let Some(opt) = argv.getopt("d:") {
match opt.opt() {
Ok(_) => {
2024-04-11 23:37:04 -06:00
/* unwrap because Err(OptError::MissingArg) will be returned if
* opt.arg() is None */
d = opt.arg().unwrap();
index_arg = opt.ind();
},
2024-04-11 23:37:04 -06:00
Err(_) => {
eprintln!("{}", usage);
exit(EX_USAGE);
}
};
}
2024-04-11 23:37:04 -06:00
let command_arg = index_arg as usize + 1;
2023-12-27 15:44:19 -07:00
argv.get(command_arg).unwrap_or_else(|| {
2024-04-11 23:37:04 -06:00
eprintln!("{}", usage);
2023-12-28 22:42:05 -07:00
exit(EX_USAGE);
});
let index = argv[index_arg].parse::<usize>().unwrap_or_else(|e| {
2024-03-01 23:10:28 -07:00
eprintln!("{}: {}: {}", argv[0], argv[1], e);
2023-12-28 22:42:05 -07:00
exit(EX_DATAERR);
});
2023-12-27 15:44:19 -07:00
let mut buf = String::new();
let _ = stdin().read_to_string(&mut buf);
let mut fields = buf.split(&d).collect::<Vec<&str>>();
2023-12-27 15:44:19 -07:00
let opts = argv
.iter()
.clone()
.skip(command_arg + 1)
.collect::<Vec<&String>>();
2023-12-27 15:44:19 -07:00
let mut spawned = Command::new(argv.get(command_arg).unwrap())
2023-12-27 15:44:19 -07:00
.args(opts)
.stdin(Stdio::piped())
.stdout(Stdio::piped())
.spawn()
.unwrap_or_else( |e| {
eprintln!("{}: {}: {}", argv[0], argv[command_arg], e.strerror());
exit(EX_UNAVAILABLE);
});
2023-12-27 15:44:19 -07:00
let field = fields.get(index).unwrap_or_else(|| {
eprintln!(
2024-03-01 23:10:28 -07:00
"{}: {}: No such index in input",
argv[0],
index.to_string(),
);
2023-12-27 22:47:06 -07:00
exit(EX_DATAERR);
2023-12-27 15:44:19 -07:00
});
if let Some(mut child_stdin) = spawned.stdin.take() {
let _ = child_stdin.write_all(field.as_bytes());
2023-12-27 15:44:19 -07:00
drop(child_stdin);
}
let output = spawned.wait_with_output().unwrap_or_else(|e| {
eprintln!("{}: {}: {}", argv[0], argv[command_arg], e.strerror());
exit(EX_IOERR);
});
2023-12-27 15:44:19 -07:00
let mut replace = output.stdout.clone();
if replace.pop() != Some(b'\n') { replace = output.stdout; }
let new_field = String::from_utf8(replace).unwrap_or_else(|e| {
2024-03-01 23:10:28 -07:00
eprintln!("{}: {}: {}", argv[0], argv[command_arg], e);
exit(EX_IOERR);
});
2023-12-27 15:44:19 -07:00
fields[index] = &new_field;
2023-12-27 15:44:19 -07:00
stdout().write_all(
fields.join(&d.to_string()).as_bytes()
2024-03-01 23:10:28 -07:00
).unwrap_or_else(|e| {
eprintln!("{}: {}", argv[0], e.strerror());
exit(EX_IOERR);
});
2023-12-27 15:44:19 -07:00
}