1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-02 05:57:46 +00:00

Merge pull request #569 from jbcrail/rewrite-tee

Rewrite tee to conform to nightly build.
This commit is contained in:
Heather 2015-05-05 07:34:06 +03:00
commit 5bdd303d68

View file

@ -1,5 +1,5 @@
#![crate_name = "tee"] #![crate_name = "tee"]
#![feature(collections, core, old_io, old_path, rustc_private)] #![feature(rustc_private)]
/* /*
* This file is part of the uutils coreutils package. * This file is part of the uutils coreutils package.
@ -13,16 +13,16 @@
extern crate getopts; extern crate getopts;
#[macro_use] extern crate log; #[macro_use] extern crate log;
use std::old_io::{println, stdin, stdout, Append, File, Truncate, Write}; use std::fs::OpenOptions;
use std::old_io::{IoResult}; use std::io::{copy, Error, ErrorKind, Read, Result, sink, stdin, stdout, Write};
use std::old_io::util::{copy, NullWriter, MultiWriter}; use std::path::{Path, PathBuf};
use getopts::{getopts, optflag, usage}; use getopts::{getopts, optflag, usage};
static NAME: &'static str = "tee"; static NAME: &'static str = "tee";
static VERSION: &'static str = "1.0.0"; static VERSION: &'static str = "1.0.0";
pub fn uumain(args: Vec<String>) -> i32 { pub fn uumain(args: Vec<String>) -> i32 {
match options(args.as_slice()).and_then(exec) { match options(&args).and_then(exec) {
Ok(_) => 0, Ok(_) => 0,
Err(_) => 1 Err(_) => 1
} }
@ -34,10 +34,10 @@ struct Options {
append: bool, append: bool,
ignore_interrupts: bool, ignore_interrupts: bool,
print_and_exit: Option<String>, print_and_exit: Option<String>,
files: Box<Vec<Path>> files: Vec<String>
} }
fn options(args: &[String]) -> Result<Options, ()> { fn options(args: &Vec<String>) -> Result<Options> {
let opts = [ let opts = [
optflag("a", "append", "append to the given FILEs, do not overwrite"), optflag("a", "append", "append to the given FILEs, do not overwrite"),
optflag("i", "ignore-interrupts", "ignore interrupt signals"), optflag("i", "ignore-interrupts", "ignore interrupt signals"),
@ -45,18 +45,16 @@ fn options(args: &[String]) -> Result<Options, ()> {
optflag("V", "version", "output version information and exit"), optflag("V", "version", "output version information and exit"),
]; ];
let args: Vec<String> = args.iter().map(|x| x.to_string()).collect(); getopts(&args[1..], &opts).map_err(|e| Error::new(ErrorKind::Other, format!("{}", e))).and_then(|m| {
getopts(args.tail(), &opts).map_err(|e| format!("{}", e)).and_then(|m| {
let version = format!("{} {}", NAME, VERSION); let version = format!("{} {}", NAME, VERSION);
let program = args[0].as_slice(); let program = &args[0][..];
let arguments = "[OPTION]... [FILE]..."; let arguments = "[OPTION]... [FILE]...";
let brief = "Copy standard input to each FILE, and also to standard output."; let brief = "Copy standard input to each FILE, and also to standard output.";
let comment = "If a FILE is -, copy again to standard output."; let comment = "If a FILE is -, copy again to standard output.";
let help = format!("{}\n\nUsage:\n {} {}\n\n{}\n{}", let help = format!("{}\n\nUsage:\n {} {}\n\n{}\n{}",
version, program, arguments, usage(brief, &opts), version, program, arguments, usage(brief, &opts),
comment); comment);
let mut names = m.free.clone().into_iter().collect::<Vec<String>>(); let mut names: Vec<String> = m.free.clone().into_iter().collect();
names.push("-".to_string()); names.push("-".to_string());
let to_print = if m.opt_present("help") { Some(help) } let to_print = if m.opt_present("help") { Some(help) }
else if m.opt_present("version") { Some(version) } else if m.opt_present("version") { Some(version) }
@ -66,88 +64,111 @@ fn options(args: &[String]) -> Result<Options, ()> {
append: m.opt_present("append"), append: m.opt_present("append"),
ignore_interrupts: m.opt_present("ignore-interrupts"), ignore_interrupts: m.opt_present("ignore-interrupts"),
print_and_exit: to_print, print_and_exit: to_print,
files: Box::new(names.iter().map(|name| Path::new(name.clone())).collect()) files: names
}) })
}).map_err(|message| warn(message.as_slice())) }).map_err(|message| warn(format!("{}", message).as_ref()))
} }
fn exec(options: Options) -> Result<(), ()> { fn exec(options: Options) -> Result<()> {
match options.print_and_exit { match options.print_and_exit {
Some(text) => Ok(println(text.as_slice())), Some(text) => Ok(println!("{}", text)),
None => tee(options) None => tee(options)
} }
} }
fn tee(options: Options) -> Result<(), ()> { fn tee(options: Options) -> Result<()> {
let writers = options.files.iter().map(|path| open(path, options.append)).collect(); let writers: Vec<Box<Write>> = options.files.clone().into_iter().map(|file| open(file, options.append)).collect();
let output = &mut MultiWriter::new(writers); let output = &mut MultiWriter { writers: writers };
let input = &mut NamedReader { inner: Box::new(stdin()) as Box<Reader> }; let input = &mut NamedReader { inner: Box::new(stdin()) as Box<Read> };
if copy(input, output).is_err() || output.flush().is_err() { if copy(input, output).is_err() || output.flush().is_err() {
Err(()) Err(Error::new(ErrorKind::Other, ""))
} else { } else {
Ok(()) Ok(())
} }
} }
fn open(path: &Path, append: bool) -> Box<Writer+'static> { fn open(name: String, append: bool) -> Box<Write> {
let inner = if *path == Path::new("-") { let is_stdout = name == "-";
Box::new(stdout()) as Box<Writer> let path = PathBuf::from(name);
let inner: Box<Write> = if is_stdout {
Box::new(stdout())
} else { } else {
let mode = if append { Append } else { Truncate }; let mut options = OpenOptions::new();
match File::open_mode(path, mode, Write) { let mode = if append { options.append(true) } else { options.truncate(true) };
Ok(file) => Box::new(file) as Box<Writer>, match mode.write(true).create(true).open(path.as_path()) {
Err(_) => Box::new(NullWriter) as Box<Writer> Ok(file) => Box::new(file),
Err(_) => Box::new(sink())
} }
}; };
Box::new(NamedWriter { inner: inner, path: Box::new(path.clone()) }) as Box<Writer> Box::new(NamedWriter { inner: inner, path: path }) as Box<Write>
}
struct MultiWriter {
writers: Vec<Box<Write>>
}
impl Write for MultiWriter {
fn write(&mut self, buf: &[u8]) -> Result<usize> {
for writer in self.writers.iter_mut() {
try!(writer.write_all(buf));
}
Ok(buf.len())
}
fn flush(&mut self) -> Result<()> {
for writer in self.writers.iter_mut() {
try!(writer.flush());
}
Ok(())
}
} }
struct NamedWriter { struct NamedWriter {
inner: Box<Writer+'static>, inner: Box<Write>,
path: Box<Path> path: PathBuf
} }
impl Writer for NamedWriter { impl Write for NamedWriter {
fn write_all(&mut self, buf: &[u8]) -> IoResult<()> { fn write(&mut self, buf: &[u8]) -> Result<usize> {
with_path(&*self.path.clone(), || { match self.inner.write(buf) {
let val = self.inner.write_all(buf); Err(f) => {
if val.is_err() { self.inner = Box::new(sink()) as Box<Write>;
self.inner = Box::new(NullWriter) as Box<Writer>; warn(format!("{}: {}", self.path.display(), f.to_string()).as_ref());
Err(f)
} }
val
})
}
fn flush(&mut self) -> IoResult<()> {
with_path(&*self.path.clone(), || {
let val = self.inner.flush();
if val.is_err() {
self.inner = Box::new(NullWriter) as Box<Writer>;
}
val
})
}
}
struct NamedReader {
inner: Box<Reader+'static>
}
impl Reader for NamedReader {
fn read(&mut self, buf: &mut [u8]) -> IoResult<usize> {
with_path(&Path::new("stdin"), || {
self.inner.read(buf)
})
}
}
fn with_path<F, T>(path: &Path, mut cb: F) -> IoResult<T> where F: FnMut() -> IoResult<T> {
match cb() {
Err(f) => { warn(format!("{}: {}", path.display(), f.to_string()).as_slice()); Err(f) }
okay => okay okay => okay
} }
} }
fn warn(message: &str) { fn flush(&mut self) -> Result<()> {
error!("tee: {}", message); match self.inner.flush() {
Err(f) => {
self.inner = Box::new(sink()) as Box<Write>;
warn(format!("{}: {}", self.path.display(), f.to_string()).as_ref());
Err(f)
}
okay => okay
}
}
}
struct NamedReader {
inner: Box<Read>
}
impl Read for NamedReader {
fn read(&mut self, buf: &mut [u8]) -> Result<usize> {
match self.inner.read(buf) {
Err(f) => {
warn(format!("{}: {}", Path::new("stdin").display(), f.to_string()).as_ref());
Err(f)
}
okay => okay
}
}
}
fn warn(message: &str) -> Error {
error!("tee: {}", message);
Error::new(ErrorKind::Other, format!("tee: {}", message))
} }