2014-07-10 20:49:20 +00:00
|
|
|
#![crate_name = "od"]
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of the uutils coreutils package.
|
|
|
|
*
|
|
|
|
* (c) Ben Hirsch <benhirsch24@gmail.com>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern crate getopts;
|
|
|
|
|
2015-05-11 04:48:36 +00:00
|
|
|
use std::fs::File;
|
|
|
|
use std::io::Read;
|
|
|
|
use std::mem;
|
|
|
|
use std::path::Path;
|
2014-07-10 20:49:20 +00:00
|
|
|
|
2015-02-03 21:34:45 +00:00
|
|
|
#[derive(Debug)]
|
2014-07-10 20:49:20 +00:00
|
|
|
enum Radix { Decimal, Hexadecimal, Octal, Binary }
|
|
|
|
|
2015-02-06 13:48:07 +00:00
|
|
|
pub fn uumain(args: Vec<String>) -> i32 {
|
2015-05-21 02:45:43 +00:00
|
|
|
let mut opts = getopts::Options::new();
|
2015-01-25 08:03:14 +00:00
|
|
|
|
2015-05-21 02:45:43 +00:00
|
|
|
opts.optopt("A", "address-radix",
|
|
|
|
"Select the base in which file offsets are printed.", "RADIX");
|
|
|
|
opts.optopt("j", "skip-bytes",
|
|
|
|
"Skip bytes input bytes before formatting and writing.", "BYTES");
|
|
|
|
opts.optopt("N", "read-bytes",
|
|
|
|
"limit dump to BYTES input bytes", "BYTES");
|
|
|
|
opts.optopt("S", "strings",
|
|
|
|
("output strings of at least BYTES graphic chars. 3 is assumed when \
|
|
|
|
BYTES is not specified."),
|
|
|
|
"BYTES");
|
|
|
|
opts.optopt("t", "format", "select output format or formats", "TYPE");
|
|
|
|
opts.optflag("v", "output-duplicates", "do not use * to mark line suppression");
|
|
|
|
opts.optopt("w", "width",
|
|
|
|
("output BYTES bytes per output line. 32 is implied when BYTES is not \
|
|
|
|
specified."),
|
|
|
|
"BYTES");
|
|
|
|
opts.optflag("h", "help", "display this help and exit.");
|
|
|
|
opts.optflag("", "version", "output version information and exit.");
|
|
|
|
|
|
|
|
let matches = match opts.parse(&args[1..]) {
|
2015-01-25 08:03:14 +00:00
|
|
|
Ok(m) => m,
|
|
|
|
Err(f) => panic!("Invalid options\n{}", f)
|
|
|
|
};
|
|
|
|
|
2015-01-26 06:02:48 +00:00
|
|
|
let input_offset_base = match parse_radix(matches.opt_str("A")) {
|
|
|
|
Ok(r) => r,
|
|
|
|
Err(f) => { panic!("Invalid -A/--address-radix\n{}", f) }
|
|
|
|
};
|
2015-01-25 08:03:14 +00:00
|
|
|
|
2015-01-26 06:21:38 +00:00
|
|
|
let fname = match args.last() {
|
|
|
|
Some(n) => n,
|
|
|
|
None => { panic!("Need fname for now") ; }
|
2015-01-25 08:03:14 +00:00
|
|
|
};
|
|
|
|
|
2015-11-22 20:45:04 +00:00
|
|
|
odfunc(&input_offset_base, &fname);
|
2015-01-25 08:03:14 +00:00
|
|
|
|
|
|
|
0
|
2014-07-10 20:49:20 +00:00
|
|
|
}
|
|
|
|
|
2015-11-22 20:45:04 +00:00
|
|
|
fn odfunc(input_offset_base: &Radix, fname: &str) {
|
2015-05-11 04:48:36 +00:00
|
|
|
let mut f = match File::open(Path::new(fname)) {
|
2015-01-25 08:03:14 +00:00
|
|
|
Ok(f) => f,
|
|
|
|
Err(e) => panic!("file error: {}", e)
|
|
|
|
};
|
|
|
|
|
|
|
|
let mut addr = 0;
|
|
|
|
let bytes = &mut [b'\x00'; 16];
|
|
|
|
loop {
|
|
|
|
match f.read(bytes) {
|
|
|
|
Ok(n) => {
|
2015-01-26 06:39:49 +00:00
|
|
|
print_with_radix(input_offset_base, addr);
|
2015-05-11 04:48:36 +00:00
|
|
|
for b in 0 .. n / mem::size_of::<u16>() {
|
2015-01-26 06:39:49 +00:00
|
|
|
let bs = &bytes[(2 * b) .. (2 * b + 2)];
|
|
|
|
let p: u16 = (bs[1] as u16) << 8 | bs[0] as u16;
|
|
|
|
print!(" {:06o}", p);
|
|
|
|
}
|
2015-05-11 04:48:36 +00:00
|
|
|
if n % mem::size_of::<u16>() == 1 {
|
2015-01-26 06:39:49 +00:00
|
|
|
print!(" {:06o}", bytes[n - 1]);
|
|
|
|
}
|
2015-01-25 08:03:14 +00:00
|
|
|
print!("\n");
|
|
|
|
addr += n;
|
|
|
|
},
|
2015-01-26 06:39:49 +00:00
|
|
|
Err(_) => {
|
|
|
|
print_with_radix(input_offset_base, addr);
|
|
|
|
break;
|
|
|
|
}
|
2015-01-25 08:03:14 +00:00
|
|
|
};
|
|
|
|
};
|
2014-07-10 20:49:20 +00:00
|
|
|
}
|
|
|
|
|
2015-01-26 06:02:48 +00:00
|
|
|
fn parse_radix(radix_str: Option<String>) -> Result<Radix, &'static str> {
|
|
|
|
match radix_str {
|
|
|
|
None => Ok(Radix::Octal),
|
2015-01-25 08:03:14 +00:00
|
|
|
Some(s) => {
|
|
|
|
let st = s.into_bytes();
|
|
|
|
if st.len() != 1 {
|
2015-01-26 06:02:48 +00:00
|
|
|
Err("Radix must be one of [d, o, b, x]\n")
|
2015-01-25 08:03:14 +00:00
|
|
|
} else {
|
2015-01-26 06:02:48 +00:00
|
|
|
let radix: char = *(st.get(0)
|
|
|
|
.expect("byte string of length 1 lacks a 0th elem")) as char;
|
|
|
|
match radix {
|
|
|
|
'd' => Ok(Radix::Decimal),
|
|
|
|
'x' => Ok(Radix::Hexadecimal),
|
|
|
|
'o' => Ok(Radix::Octal),
|
|
|
|
'b' => Ok(Radix::Binary),
|
|
|
|
_ => Err("Radix must be one of [d, o, b, x]\n")
|
|
|
|
}
|
2015-01-25 08:03:14 +00:00
|
|
|
}
|
2015-01-26 06:02:48 +00:00
|
|
|
}
|
|
|
|
}
|
2014-07-10 20:49:20 +00:00
|
|
|
}
|
2015-01-25 08:03:14 +00:00
|
|
|
|
2015-01-26 06:39:49 +00:00
|
|
|
fn print_with_radix(r: &Radix, x: usize) {
|
|
|
|
// TODO(keunwoo): field widths should be based on sizeof(x), or chosen dynamically based on the
|
|
|
|
// expected range of address values. Binary in particular is not great here.
|
|
|
|
match *r {
|
|
|
|
Radix::Decimal => print!("{:07}", x),
|
|
|
|
Radix::Hexadecimal => print!("{:07X}", x),
|
|
|
|
Radix::Octal => print!("{:07o}", x),
|
|
|
|
Radix::Binary => print!("{:07b}", x)
|
|
|
|
}
|
2014-07-10 20:49:20 +00:00
|
|
|
}
|
2015-11-22 20:45:04 +00:00
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn main() {
|
|
|
|
std::process::exit(uumain(std::env::args().collect()));
|
|
|
|
}
|