#![crate_name = "uu_tee"] /* * This file is part of the uutils coreutils package. * * (c) Aleksander Bielawski * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ extern crate getopts; #[macro_use] extern crate uucore; use std::fs::OpenOptions; use std::io::{copy, Error, ErrorKind, Read, Result, sink, stdin, stdout, Write}; use std::path::{Path, PathBuf}; static NAME: &'static str = "tee"; static VERSION: &'static str = env!("CARGO_PKG_VERSION"); pub fn uumain(args: Vec) -> i32 { match options(&args).and_then(exec) { Ok(_) => 0, Err(_) => 1 } } #[allow(dead_code)] struct Options { program: String, append: bool, ignore_interrupts: bool, print_and_exit: Option, files: Vec } fn options(args: &Vec) -> Result { let mut opts = getopts::Options::new(); opts.optflag("a", "append", "append to the given FILEs, do not overwrite"); opts.optflag("i", "ignore-interrupts", "ignore interrupt signals"); opts.optflag("h", "help", "display this help and exit"); opts.optflag("V", "version", "output version information and exit"); opts.parse(&args[1..]).map_err(|e| Error::new(ErrorKind::Other, format!("{}", e))).and_then(|m| { let version = format!("{} {}", NAME, VERSION); let arguments = "[OPTION]... [FILE]..."; 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 help = format!("{}\n\nUsage:\n {} {}\n\n{}\n{}", version, NAME, arguments, opts.usage(brief), comment); let mut names: Vec = m.free.clone().into_iter().collect(); names.push("-".to_string()); let to_print = if m.opt_present("help") { Some(help) } else if m.opt_present("version") { Some(version) } else { None }; Ok(Options { program: NAME.to_string(), append: m.opt_present("append"), ignore_interrupts: m.opt_present("ignore-interrupts"), print_and_exit: to_print, files: names }) }).map_err(|message| warn(format!("{}", message).as_ref())) } fn exec(options: Options) -> Result<()> { match options.print_and_exit { Some(text) => Ok(println!("{}", text)), None => tee(options) } } fn tee(options: Options) -> Result<()> { let writers: Vec> = options.files.clone().into_iter().map(|file| open(file, options.append)).collect(); let output = &mut MultiWriter { writers: writers }; let input = &mut NamedReader { inner: Box::new(stdin()) as Box }; if copy(input, output).is_err() || output.flush().is_err() { Err(Error::new(ErrorKind::Other, "")) } else { Ok(()) } } fn open(name: String, append: bool) -> Box { let is_stdout = name == "-"; let path = PathBuf::from(name); let inner: Box = if is_stdout { Box::new(stdout()) } else { let mut options = OpenOptions::new(); let mode = if append { options.append(true) } else { options.truncate(true) }; match mode.write(true).create(true).open(path.as_path()) { Ok(file) => Box::new(file), Err(_) => Box::new(sink()) } }; Box::new(NamedWriter { inner: inner, path: path }) as Box } struct MultiWriter { writers: Vec> } impl Write for MultiWriter { fn write(&mut self, buf: &[u8]) -> Result { 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 { inner: Box, path: PathBuf } impl Write for NamedWriter { fn write(&mut self, buf: &[u8]) -> Result { match self.inner.write(buf) { Err(f) => { self.inner = Box::new(sink()) as Box; warn(format!("{}: {}", self.path.display(), f.to_string()).as_ref()); Err(f) } okay => okay } } fn flush(&mut self) -> Result<()> { match self.inner.flush() { Err(f) => { self.inner = Box::new(sink()) as Box; warn(format!("{}: {}", self.path.display(), f.to_string()).as_ref()); Err(f) } okay => okay } } } struct NamedReader { inner: Box } impl Read for NamedReader { fn read(&mut self, buf: &mut [u8]) -> Result { 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 { eprintln!("{}: {}", NAME, message); Error::new(ErrorKind::Other, format!("{}: {}", NAME, message)) }