#![crate_name = "cat"] /* * This file is part of the uutils coreutils package. * * (c) Jordi Boggiano * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* last synced with: cat (GNU coreutils) 8.13 */ extern crate getopts; extern crate libc; #[macro_use] extern crate uucore; use getopts::Options; use std::fs::File; use std::intrinsics::{copy_nonoverlapping}; use std::io::{stdout, stdin, stderr, Write, Read, Result}; use uucore::fs::is_stdin_interactive; static NAME: &'static str = "cat"; static VERSION: &'static str = env!("CARGO_PKG_VERSION"); pub fn uumain(args: Vec) -> i32 { let mut opts = Options::new(); opts.optflag("A", "show-all", "equivalent to -vET"); opts.optflag("b", "number-nonblank", "number nonempty output lines, overrides -n"); opts.optflag("e", "", "equivalent to -vE"); opts.optflag("E", "show-ends", "display $ at end of each line"); opts.optflag("n", "number", "number all output lines"); opts.optflag("s", "squeeze-blank", "suppress repeated empty output lines"); opts.optflag("t", "", "equivalent to -vT"); opts.optflag("T", "show-tabs", "display TAB characters as ^I"); opts.optflag("v", "show-nonprinting", "use ^ and M- notation, except for LF (\\n) and TAB (\\t)"); opts.optflag("h", "help", "display this help and exit"); opts.optflag("V", "version", "output version information and exit"); let matches = match opts.parse(&args[1..]) { Ok(m) => m, Err(f) => panic!("Invalid options\n{}", f) }; if matches.opt_present("help") { let msg = format!("{} {}\n\n\ Usage:\n {0} [OPTION]... [FILE]...\n\n\ Concatenate FILE(s), or standard input, to standard output.\n\n\ With no FILE, or when FILE is -, read standard input.", NAME, VERSION); print!("{}", opts.usage(&msg)); return 0; } if matches.opt_present("version") { println!("{} {}", NAME, VERSION); return 0; } let number_mode = if matches.opt_present("b") { NumberingMode::NumberNonEmpty } else if matches.opt_present("n") { NumberingMode::NumberAll } else { NumberingMode::NumberNone }; let show_nonprint = matches.opts_present(&["A".to_string(), "e".to_string(), "t".to_string(), "v".to_string()]); let show_ends = matches.opts_present(&["E".to_string(), "A".to_string(), "e".to_string()]); let show_tabs = matches.opts_present(&["A".to_string(), "T".to_string(), "t".to_string()]); let squeeze_blank = matches.opt_present("s"); let mut files = matches.free; if files.is_empty() { files.push("-".to_string()); } exec(files, number_mode, show_nonprint, show_ends, show_tabs, squeeze_blank); 0 } #[derive(Eq, PartialEq)] enum NumberingMode { NumberNone, NumberNonEmpty, NumberAll, } fn write_lines(files: Vec, number: NumberingMode, squeeze_blank: bool, show_ends: bool) { let mut line_counter: usize = 1; for (mut reader, interactive) in files.iter().filter_map(|p| open(&p[..])) { let mut in_buf = [0; 1024 * 31]; let mut out_buf = [0; 1024 * 64]; let mut writer = UnsafeWriter::new(&mut out_buf[..], stdout()); let mut at_line_start = true; while let Ok(n) = reader.read(&mut in_buf) { if n == 0 { break } let in_buf = &in_buf[..n]; let mut buf_pos = 0..n; loop { writer.possibly_flush(); let pos = match buf_pos.next() { Some(p) => p, None => break, }; if in_buf[pos] == '\n' as u8 { if !at_line_start || !squeeze_blank { if at_line_start && number == NumberingMode::NumberAll { (write!(&mut writer, "{0:6}\t", line_counter)).unwrap(); line_counter += 1; } if show_ends { writer.write_all(&['$' as u8]).unwrap(); } writer.write_all(&['\n' as u8]).unwrap(); if interactive { writer.flush().unwrap(); } } at_line_start = true; continue; } if at_line_start && number != NumberingMode::NumberNone { (write!(&mut writer, "{0:6}\t", line_counter)).unwrap(); line_counter += 1; } match in_buf[pos..].iter().position(|c| *c == '\n' as u8) { Some(p) => { writer.write_all(&in_buf[pos..pos + p]).unwrap(); if show_ends { writer.write_all(&['$' as u8]).unwrap(); } writer.write_all(&['\n' as u8]).unwrap(); if interactive { writer.flush().unwrap(); } buf_pos = pos + p + 1..n; at_line_start = true; }, None => { writer.write_all(&in_buf[pos..]).unwrap(); at_line_start = false; break; } }; } } } } fn write_bytes(files: Vec, number: NumberingMode, squeeze_blank: bool, show_ends: bool, show_nonprint: bool, show_tabs: bool) { let mut line_counter: usize = 1; for (mut reader, interactive) in files.iter().filter_map(|p| open(&p[..])) { // Flush all 1024 iterations. let mut flush_counter = 0usize..1024; let mut in_buf = [0; 1024 * 32]; let mut out_buf = [0; 1024 * 64]; let mut writer = UnsafeWriter::new(&mut out_buf[..], stdout()); let mut at_line_start = true; while let Ok(n) = reader.read(&mut in_buf) { if n == 0 { break } for &byte in in_buf[..n].iter() { if flush_counter.next().is_none() { writer.possibly_flush(); flush_counter = 0usize..1024; } if byte == '\n' as u8 { if !at_line_start || !squeeze_blank { if at_line_start && number == NumberingMode::NumberAll { (write!(&mut writer, "{0:6}\t", line_counter)).unwrap(); line_counter += 1; } if show_ends { writer.write_all(&['$' as u8]).unwrap(); } writer.write_all(&['\n' as u8]).unwrap(); if interactive { writer.flush().unwrap(); } } at_line_start = true; continue; } if at_line_start && number != NumberingMode::NumberNone { (write!(&mut writer, "{0:6}\t", line_counter)).unwrap(); line_counter += 1; at_line_start = false; } // This code is slow because of the many branches. cat in glibc avoids // this by having the whole loop inside show_nonprint. if byte == '\t' as u8 { if show_tabs { writer.write_all("^I".as_bytes()) } else { writer.write_all(&[byte]) } } else if show_nonprint { let byte = match byte { 128 ... 255 => { writer.write_all("M-".as_bytes()).unwrap(); byte - 128 }, _ => byte, }; match byte { 0 ... 31 => writer.write_all(&['^' as u8, byte + 64]), 127 => writer.write_all(&['^' as u8, byte - 64]), _ => writer.write_all(&[byte]), } } else { writer.write_all(&[byte]) }.unwrap(); } } } } fn write_fast(files: Vec) { let mut writer = stdout(); let mut in_buf = [0; 1024 * 64]; for (mut reader, _) in files.iter().filter_map(|p| open(&p[..])) { while let Ok(n) = reader.read(&mut in_buf) { if n == 0 { break } // This interface is completely broken. writer.write_all(&in_buf[..n]).unwrap(); } } } fn exec(files: Vec, number: NumberingMode, show_nonprint: bool, show_ends: bool, show_tabs: bool, squeeze_blank: bool) { if show_nonprint || show_tabs { write_bytes(files, number, squeeze_blank, show_ends, show_nonprint, show_tabs); } else if number != NumberingMode::NumberNone || squeeze_blank || show_ends { write_lines(files, number, squeeze_blank, show_ends); } else { write_fast(files); } pipe_flush!(); } fn open(path: &str) -> Option<(Box, bool)> { if path == "-" { let stdin = stdin(); return Some((Box::new(stdin) as Box, is_stdin_interactive())); } match File::open(path) { Ok(f) => Some((Box::new(f) as Box, false)), Err(e) => { (writeln!(&mut stderr(), "cat: {0}: {1}", path, e.to_string())).unwrap(); None }, } } struct UnsafeWriter<'a, W: Write> { inner: W, buf: &'a mut [u8], pos: usize, threshold: usize, } impl<'a, W: Write> UnsafeWriter<'a, W> { fn new(buf: &'a mut [u8], inner: W) -> UnsafeWriter<'a, W> { let threshold = buf.len()/2; UnsafeWriter { inner: inner, buf: buf, pos: 0, threshold: threshold, } } fn flush_buf(&mut self) -> Result<()> { if self.pos != 0 { let ret = self.inner.write(&self.buf[..self.pos]); self.pos = 0; match ret { Ok(_) => Ok(()), Err(e) => Err(e), } } else { Ok(()) } } fn possibly_flush(&mut self) { if self.pos > self.threshold { self.inner.write_all(&self.buf[..self.pos]).unwrap(); self.pos = 0; } } } #[inline(never)] fn fail() -> ! { panic!("assertion failed"); } impl<'a, W: Write> Write for UnsafeWriter<'a, W> { fn write(&mut self, buf: &[u8]) -> Result { let dst = &mut self.buf[self.pos..]; let len = buf.len(); if len > dst.len() { fail(); } unsafe { copy_nonoverlapping(buf.as_ptr(), dst.as_mut_ptr(), len) } self.pos += len; Ok(len) } fn flush(&mut self) -> Result<()> { self.flush_buf().and_then(|()| self.inner.flush()) } } impl<'a, W: Write> Drop for UnsafeWriter<'a, W> { fn drop(&mut self) { let _ = self.flush_buf(); } } /* vim: set ai ts=4 sw=4 sts=4 et : */ #[allow(dead_code)] fn main() { std::process::exit(uumain(std::env::args().collect())); }