2015-12-08 02:42:08 +00:00
|
|
|
#![crate_name = "uu_od"]
|
2014-07-10 20:49:20 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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;
|
2016-07-18 20:46:04 +00:00
|
|
|
extern crate unindent;
|
2016-07-21 08:27:02 +00:00
|
|
|
extern crate byteorder;
|
2014-07-10 20:49:20 +00:00
|
|
|
|
2016-07-23 19:49:43 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate uucore;
|
|
|
|
|
2016-07-23 17:15:47 +00:00
|
|
|
mod multifilereader;
|
2016-07-30 18:39:09 +00:00
|
|
|
mod byteorder_io;
|
2016-07-30 21:59:10 +00:00
|
|
|
mod formatteriteminfo;
|
2016-07-23 17:15:47 +00:00
|
|
|
mod prn_int;
|
|
|
|
mod prn_char;
|
|
|
|
mod prn_float;
|
|
|
|
|
2016-07-23 19:49:43 +00:00
|
|
|
use std::cmp;
|
|
|
|
use std::io::Write;
|
2016-07-18 20:46:04 +00:00
|
|
|
use unindent::*;
|
2016-07-30 18:39:09 +00:00
|
|
|
use byteorder_io::*;
|
2016-07-23 17:15:47 +00:00
|
|
|
use multifilereader::*;
|
|
|
|
use prn_int::*;
|
|
|
|
use prn_char::*;
|
|
|
|
use prn_float::*;
|
2016-07-30 21:59:10 +00:00
|
|
|
use formatteriteminfo::*;
|
2016-05-22 20:46:20 +00:00
|
|
|
|
|
|
|
//This is available in some versions of std, but not all that we target.
|
|
|
|
macro_rules! hashmap {
|
|
|
|
($( $key: expr => $val: expr ),*) => {{
|
|
|
|
let mut map = ::std::collections::HashMap::new();
|
|
|
|
$( map.insert($key, $val); )*
|
|
|
|
map
|
|
|
|
}}
|
|
|
|
}
|
|
|
|
|
2016-07-18 20:46:04 +00:00
|
|
|
static VERSION: &'static str = env!("CARGO_PKG_VERSION");
|
2016-07-31 14:51:20 +00:00
|
|
|
const MAX_BYTES_PER_UNIT: usize = 8;
|
2016-05-22 20:46:20 +00:00
|
|
|
|
2016-07-31 22:03:47 +00:00
|
|
|
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
|
|
|
|
enum Radix { Decimal, Hexadecimal, Octal, NoPrefix }
|
2016-05-22 20:46:20 +00:00
|
|
|
|
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");
|
2016-07-30 18:39:09 +00:00
|
|
|
opts.optopt("", "endian", "byte order to use for multi-byte formats", "big|little");
|
2015-05-21 02:45:43 +00:00
|
|
|
opts.optopt("S", "strings",
|
|
|
|
("output strings of at least BYTES graphic chars. 3 is assumed when \
|
|
|
|
BYTES is not specified."),
|
|
|
|
"BYTES");
|
2016-07-31 22:03:47 +00:00
|
|
|
opts.optflagmulti("a", "", "named characters, ignoring high-order bit");
|
|
|
|
opts.optflagmulti("b", "", "octal bytes");
|
|
|
|
opts.optflagmulti("c", "", "ASCII characters or backslash escapes");
|
|
|
|
opts.optflagmulti("d", "", "unsigned decimal 2-byte units");
|
|
|
|
opts.optflagmulti("D", "", "unsigned decimal 4-byte units");
|
|
|
|
opts.optflagmulti("o", "", "unsigned decimal 2-byte units");
|
|
|
|
|
|
|
|
opts.optflagmulti("I", "", "decimal 2-byte units");
|
|
|
|
opts.optflagmulti("L", "", "decimal 2-byte units");
|
|
|
|
opts.optflagmulti("i", "", "decimal 2-byte units");
|
|
|
|
opts.optflagmulti("x", "", "hexadecimal 2-byte units");
|
|
|
|
opts.optflagmulti("h", "", "hexadecimal 2-byte units");
|
|
|
|
|
|
|
|
opts.optflagmulti("O", "", "octal 4-byte units");
|
|
|
|
opts.optflagmulti("s", "", "decimal 4-byte units");
|
|
|
|
opts.optflagmulti("X", "", "hexadecimal 4-byte units");
|
|
|
|
opts.optflagmulti("H", "", "hexadecimal 4-byte units");
|
|
|
|
|
|
|
|
opts.optflagmulti("e", "", "floating point double precision (64-bit) units");
|
|
|
|
opts.optflagmulti("f", "", "floating point single precision (32-bit) units");
|
|
|
|
opts.optflagmulti("F", "", "floating point double precision (64-bit) units");
|
2016-07-21 17:31:23 +00:00
|
|
|
|
2015-05-21 02:45:43 +00:00
|
|
|
opts.optopt("t", "format", "select output format or formats", "TYPE");
|
|
|
|
opts.optflag("v", "output-duplicates", "do not use * to mark line suppression");
|
2016-07-23 19:49:43 +00:00
|
|
|
opts.optflagopt("w", "width",
|
2015-05-21 02:45:43 +00:00
|
|
|
("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,
|
2016-07-23 21:18:02 +00:00
|
|
|
Err(f) => {
|
|
|
|
disp_err!("{}", f);
|
|
|
|
return 1;
|
|
|
|
}
|
2015-01-25 08:03:14 +00:00
|
|
|
};
|
|
|
|
|
2016-07-18 20:46:04 +00:00
|
|
|
if matches.opt_present("h") {
|
|
|
|
let msg = unindent(&format!("
|
|
|
|
Usage:
|
|
|
|
{0} [OPTION]... [FILENAME]...
|
|
|
|
|
2016-07-23 21:18:02 +00:00
|
|
|
Displays data in various human-readable formats.", executable!()));
|
2016-07-18 20:46:04 +00:00
|
|
|
println!("{}", opts.usage(&msg));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if matches.opt_present("version") {
|
2016-07-23 21:18:02 +00:00
|
|
|
println!("{} {}", executable!(), VERSION);
|
2016-07-18 20:46:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-01-26 06:02:48 +00:00
|
|
|
let input_offset_base = match parse_radix(matches.opt_str("A")) {
|
|
|
|
Ok(r) => r,
|
2016-07-23 21:18:02 +00:00
|
|
|
Err(f) => {
|
|
|
|
disp_err!("Invalid -A/--address-radix\n{}", f);
|
|
|
|
return 1;
|
|
|
|
}
|
2015-01-26 06:02:48 +00:00
|
|
|
};
|
2016-05-22 20:46:20 +00:00
|
|
|
|
2016-07-30 18:39:09 +00:00
|
|
|
let byte_order = match matches.opt_str("endian").as_ref().map(String::as_ref) {
|
|
|
|
None => { ByteOrder::Native },
|
|
|
|
Some("little") => { ByteOrder::Little },
|
|
|
|
Some("big") => { ByteOrder::Big },
|
|
|
|
Some(s) => {
|
|
|
|
disp_err!("Invalid argument --endian={}", s);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-04-26 02:05:16 +00:00
|
|
|
// Gather up file names - args which don't start with '-'
|
2016-05-22 20:46:20 +00:00
|
|
|
let stdnionly = [InputSource::Stdin];
|
|
|
|
let inputs = args[1..]
|
|
|
|
.iter()
|
|
|
|
.filter_map(|w| match w as &str {
|
|
|
|
"--" => Some(InputSource::Stdin),
|
|
|
|
o if o.starts_with("-") => None,
|
|
|
|
x => Some(InputSource::FileName(x)),
|
|
|
|
})
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
// If no input files named, use stdin.
|
|
|
|
let inputs = if inputs.len() == 0 {
|
|
|
|
&stdnionly[..]
|
|
|
|
} else {
|
|
|
|
&inputs[..]
|
|
|
|
};
|
|
|
|
// Gather up format flags, we don't use getopts becase we need keep them in order.
|
|
|
|
let flags = args[1..]
|
|
|
|
.iter()
|
|
|
|
.filter_map(|w| match w as &str {
|
|
|
|
"--" => None,
|
|
|
|
o if o.starts_with("-") => Some(&o[1..]),
|
|
|
|
_ => None,
|
|
|
|
})
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
|
|
|
|
// TODO: -t fmts
|
|
|
|
let known_formats = hashmap![
|
2016-07-30 21:59:10 +00:00
|
|
|
"a" => FORMAT_ITEM_A,
|
|
|
|
"B" => FORMAT_ITEM_OCT16,
|
|
|
|
"b" => FORMAT_ITEM_OCT8,
|
|
|
|
"c" => FORMAT_ITEM_C,
|
|
|
|
"D" => FORMAT_ITEM_DEC32U,
|
2016-07-31 14:51:20 +00:00
|
|
|
"d" => FORMAT_ITEM_DEC16U,
|
2016-07-30 21:59:10 +00:00
|
|
|
"e" => FORMAT_ITEM_F64,
|
|
|
|
"F" => FORMAT_ITEM_F64,
|
|
|
|
"f" => FORMAT_ITEM_F32,
|
|
|
|
"H" => FORMAT_ITEM_HEX32,
|
|
|
|
"X" => FORMAT_ITEM_HEX32,
|
|
|
|
"o" => FORMAT_ITEM_OCT16,
|
|
|
|
"x" => FORMAT_ITEM_HEX16,
|
|
|
|
"h" => FORMAT_ITEM_HEX16,
|
|
|
|
|
|
|
|
"I" => FORMAT_ITEM_DEC16S,
|
|
|
|
"L" => FORMAT_ITEM_DEC16S,
|
|
|
|
"i" => FORMAT_ITEM_DEC16S,
|
|
|
|
|
|
|
|
"O" => FORMAT_ITEM_OCT32,
|
|
|
|
"s" => FORMAT_ITEM_DEC16U
|
|
|
|
];
|
2016-05-22 20:46:20 +00:00
|
|
|
|
|
|
|
let mut formats = Vec::new();
|
|
|
|
|
|
|
|
for flag in flags.iter() {
|
|
|
|
match known_formats.get(flag) {
|
|
|
|
None => {} // not every option is a format
|
|
|
|
Some(r) => {
|
2016-07-30 21:59:10 +00:00
|
|
|
formats.push(*r)
|
2016-05-22 20:46:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if formats.is_empty() {
|
2016-07-30 21:59:10 +00:00
|
|
|
formats.push(FORMAT_ITEM_OCT16); // 2 byte octal is the default
|
2016-05-22 20:46:20 +00:00
|
|
|
}
|
|
|
|
|
2016-07-23 19:49:43 +00:00
|
|
|
let mut line_bytes = match matches.opt_default("w", "32") {
|
|
|
|
None => 16,
|
|
|
|
Some(s) => {
|
|
|
|
match s.parse::<usize>() {
|
|
|
|
Ok(i) => { i }
|
|
|
|
Err(_) => { 2 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2016-08-01 14:39:58 +00:00
|
|
|
let min_bytes = formats.iter().fold(1, |max, next| cmp::max(max, next.byte_size));
|
2016-07-23 19:49:43 +00:00
|
|
|
if line_bytes % min_bytes != 0 {
|
|
|
|
show_warning!("invalid width {}; using {} instead", line_bytes, min_bytes);
|
|
|
|
line_bytes = min_bytes;
|
|
|
|
}
|
2014-07-10 20:49:20 +00:00
|
|
|
|
2016-07-25 12:17:45 +00:00
|
|
|
let output_duplicates = matches.opt_present("v");
|
|
|
|
|
2016-07-31 22:03:47 +00:00
|
|
|
odfunc(line_bytes, input_offset_base, byte_order, &inputs, &formats[..], output_duplicates)
|
2016-07-23 19:49:43 +00:00
|
|
|
}
|
2016-05-22 20:46:20 +00:00
|
|
|
|
2016-07-31 22:03:47 +00:00
|
|
|
fn odfunc(line_bytes: usize, input_offset_base: Radix, byte_order: ByteOrder,
|
2016-07-30 21:59:10 +00:00
|
|
|
fnames: &[InputSource], formats: &[FormatterItemInfo], output_duplicates: bool) -> i32 {
|
2016-05-22 20:46:20 +00:00
|
|
|
|
|
|
|
let mut mf = MultifileReader::new(fnames);
|
|
|
|
let mut addr = 0;
|
2016-07-25 12:17:45 +00:00
|
|
|
let mut duplicate_line = false;
|
2016-08-01 22:08:42 +00:00
|
|
|
let mut previous_bytes: Vec<u8> = Vec::new();
|
|
|
|
let mut bytes: Vec<u8> = Vec::with_capacity(line_bytes);
|
|
|
|
unsafe { bytes.set_len(line_bytes); } // fast but uninitialized
|
2016-07-25 12:17:45 +00:00
|
|
|
|
2016-07-31 14:51:20 +00:00
|
|
|
let byte_size_block = formats.iter().fold(1, |max, next| cmp::max(max, next.byte_size));
|
|
|
|
let print_width_block = formats
|
|
|
|
.iter()
|
|
|
|
.fold(1, |max, next| {
|
|
|
|
cmp::max(max, next.print_width * (byte_size_block / next.byte_size))
|
|
|
|
});
|
|
|
|
|
|
|
|
if byte_size_block > MAX_BYTES_PER_UNIT {
|
|
|
|
panic!("{}-bits types are unsupported. Current max={}-bits.",
|
|
|
|
8 * byte_size_block,
|
|
|
|
8 * MAX_BYTES_PER_UNIT);
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut spaced_formatters: Vec<SpacedFormatterItemInfo> = formats
|
|
|
|
.iter()
|
|
|
|
.map(|f| SpacedFormatterItemInfo { frm: *f, spacing: [0; MAX_BYTES_PER_UNIT] })
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
// calculate proper alignment for each item
|
|
|
|
for sf in &mut spaced_formatters {
|
|
|
|
let mut byte_size = sf.frm.byte_size;
|
|
|
|
let mut items_in_block = byte_size_block / byte_size;
|
|
|
|
let thisblock_width = sf.frm.print_width * items_in_block;
|
|
|
|
let mut missing_spacing = print_width_block - thisblock_width;
|
|
|
|
|
|
|
|
while items_in_block > 0 {
|
|
|
|
let avg_spacing: usize = missing_spacing / items_in_block;
|
|
|
|
for i in 0..items_in_block {
|
|
|
|
sf.spacing[i * byte_size] += avg_spacing;
|
|
|
|
missing_spacing -= avg_spacing;
|
|
|
|
}
|
|
|
|
// this assumes the size of all types is a power of 2 (1, 2, 4, 8, 16, ...)
|
|
|
|
items_in_block /= 2;
|
|
|
|
byte_size *= 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-22 20:46:20 +00:00
|
|
|
loop {
|
|
|
|
// print each line data (or multi-format raster of several lines describing the same data).
|
2016-08-01 14:39:58 +00:00
|
|
|
// TODO: we need to read more data in case a multi-byte sequence starts at the end of the line
|
2016-05-22 20:46:20 +00:00
|
|
|
|
2016-07-23 19:49:43 +00:00
|
|
|
match mf.f_read(bytes.as_mut_slice()) {
|
2016-05-22 20:46:20 +00:00
|
|
|
Ok(0) => {
|
2016-07-31 22:03:47 +00:00
|
|
|
if input_offset_base != Radix::NoPrefix {
|
|
|
|
print!("{}\n", print_with_radix(input_offset_base, addr)); // print final offset
|
|
|
|
}
|
2016-05-22 20:46:20 +00:00
|
|
|
break;
|
2016-04-26 02:55:34 +00:00
|
|
|
}
|
2016-05-22 20:46:20 +00:00
|
|
|
Ok(n) => {
|
2016-07-25 11:59:21 +00:00
|
|
|
// not enough byte for a whole element, this should only happen on the last line.
|
|
|
|
if n != line_bytes {
|
|
|
|
// set zero bytes in the part of the buffer that will be used, but is not filled.
|
2016-08-01 22:08:42 +00:00
|
|
|
let mut max_used = n + MAX_BYTES_PER_UNIT;
|
|
|
|
if max_used > line_bytes {
|
|
|
|
max_used = line_bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
for i in n..max_used {
|
2016-07-25 11:59:21 +00:00
|
|
|
bytes[i] = 0;
|
2016-07-24 20:28:22 +00:00
|
|
|
}
|
2016-04-26 02:55:34 +00:00
|
|
|
}
|
2016-07-25 12:17:45 +00:00
|
|
|
|
2016-08-01 22:08:42 +00:00
|
|
|
if !output_duplicates && n == line_bytes && previous_bytes == bytes {
|
2016-07-25 12:17:45 +00:00
|
|
|
if !duplicate_line {
|
|
|
|
duplicate_line = true;
|
|
|
|
println!("*");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
duplicate_line = false;
|
2016-08-01 22:08:42 +00:00
|
|
|
if n == line_bytes {
|
|
|
|
// save a copy of the input unless it is the last line
|
|
|
|
previous_bytes.clone_from(&bytes);
|
|
|
|
}
|
2016-07-25 12:17:45 +00:00
|
|
|
|
2016-07-31 14:51:20 +00:00
|
|
|
print_bytes(byte_order, &bytes, n, &print_with_radix(input_offset_base, addr),
|
|
|
|
&spaced_formatters, byte_size_block);
|
2016-07-25 12:17:45 +00:00
|
|
|
}
|
|
|
|
|
2016-05-22 20:46:20 +00:00
|
|
|
addr += n;
|
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
break;
|
|
|
|
}
|
2016-04-26 02:55:34 +00:00
|
|
|
};
|
2016-05-22 20:46:20 +00:00
|
|
|
}
|
2016-07-24 20:28:22 +00:00
|
|
|
|
2016-05-22 20:46:20 +00:00
|
|
|
if mf.any_err {
|
|
|
|
1
|
|
|
|
} else {
|
|
|
|
0
|
|
|
|
}
|
2014-07-10 20:49:20 +00:00
|
|
|
}
|
|
|
|
|
2016-07-31 14:51:20 +00:00
|
|
|
fn print_bytes(byte_order: ByteOrder, bytes: &[u8], length: usize, prefix: &str,
|
|
|
|
formats: &[SpacedFormatterItemInfo], byte_size_block: usize) {
|
2016-07-25 11:59:21 +00:00
|
|
|
let mut first = true; // First line of a multi-format raster.
|
|
|
|
for f in formats {
|
|
|
|
let mut output_text = String::new();
|
|
|
|
|
|
|
|
let mut b = 0;
|
|
|
|
while b < length {
|
2016-07-31 14:51:20 +00:00
|
|
|
let nextb = b + f.frm.byte_size;
|
|
|
|
|
|
|
|
output_text.push_str(&format!("{:>width$}",
|
|
|
|
"",
|
|
|
|
width = f.spacing[b % byte_size_block]));
|
|
|
|
|
|
|
|
match f.frm.formatter {
|
2016-07-25 11:59:21 +00:00
|
|
|
FormatWriter::IntWriter(func) => {
|
2016-07-31 14:51:20 +00:00
|
|
|
let p: u64 = match f.frm.byte_size {
|
2016-07-25 11:59:21 +00:00
|
|
|
1 => {
|
|
|
|
bytes[b] as u64
|
|
|
|
}
|
|
|
|
2 => {
|
2016-07-30 18:39:09 +00:00
|
|
|
byte_order.read_u16(&bytes[b..nextb]) as u64
|
2016-07-25 11:59:21 +00:00
|
|
|
}
|
|
|
|
4 => {
|
2016-07-30 18:39:09 +00:00
|
|
|
byte_order.read_u32(&bytes[b..nextb]) as u64
|
2016-07-25 11:59:21 +00:00
|
|
|
}
|
|
|
|
8 => {
|
2016-07-30 18:39:09 +00:00
|
|
|
byte_order.read_u64(&bytes[b..nextb])
|
2016-07-25 11:59:21 +00:00
|
|
|
}
|
2016-07-31 14:51:20 +00:00
|
|
|
_ => { panic!("Invalid byte_size: {}", f.frm.byte_size); }
|
2016-07-25 11:59:21 +00:00
|
|
|
};
|
2016-07-31 14:51:20 +00:00
|
|
|
output_text.push_str(&func(p, f.frm.byte_size, f.frm.print_width));
|
2016-07-25 11:59:21 +00:00
|
|
|
}
|
|
|
|
FormatWriter::FloatWriter(func) => {
|
2016-07-31 14:51:20 +00:00
|
|
|
let p: f64 = match f.frm.byte_size {
|
2016-07-25 11:59:21 +00:00
|
|
|
4 => {
|
2016-07-30 18:39:09 +00:00
|
|
|
byte_order.read_f32(&bytes[b..nextb]) as f64
|
2016-07-25 11:59:21 +00:00
|
|
|
}
|
|
|
|
8 => {
|
2016-07-30 18:39:09 +00:00
|
|
|
byte_order.read_f64(&bytes[b..nextb])
|
2016-07-25 11:59:21 +00:00
|
|
|
}
|
2016-07-31 14:51:20 +00:00
|
|
|
_ => { panic!("Invalid byte_size: {}", f.frm.byte_size); }
|
2016-07-25 11:59:21 +00:00
|
|
|
};
|
|
|
|
output_text.push_str(&func(p));
|
|
|
|
}
|
2016-08-01 14:39:58 +00:00
|
|
|
FormatWriter::MultibyteWriter(func) => {
|
|
|
|
output_text.push_str(&func(&bytes[b..length]));
|
|
|
|
}
|
2016-07-25 11:59:21 +00:00
|
|
|
}
|
|
|
|
b = nextb;
|
|
|
|
}
|
|
|
|
|
|
|
|
if first {
|
|
|
|
print!("{}", prefix); // print offset
|
|
|
|
// if printing in multiple formats offset is printed only once
|
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// this takes the space of the file offset on subsequent
|
|
|
|
// lines of multi-format rasters.
|
|
|
|
print!("{:>width$}", "", width=prefix.chars().count());
|
|
|
|
}
|
|
|
|
print!("{}\n", output_text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-22 20:46:20 +00:00
|
|
|
// For file byte offset printed at left margin.
|
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 {
|
2016-07-31 22:03:47 +00:00
|
|
|
Err("Radix must be one of [d, o, n, 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),
|
2016-07-31 22:03:47 +00:00
|
|
|
'n' => Ok(Radix::NoPrefix),
|
|
|
|
_ => Err("Radix must be one of [d, o, n, x]\n")
|
2015-01-26 06:02:48 +00:00
|
|
|
}
|
2015-01-25 08:03:14 +00:00
|
|
|
}
|
2015-01-26 06:02:48 +00:00
|
|
|
}
|
|
|
|
}
|
2014-07-10 20:49:20 +00:00
|
|
|
}
|
2016-04-26 02:55:34 +00:00
|
|
|
|
2016-07-31 22:03:47 +00:00
|
|
|
fn print_with_radix(r: Radix, x: usize) -> String{
|
|
|
|
match r {
|
2016-07-24 20:28:22 +00:00
|
|
|
Radix::Decimal => format!("{:07}", x),
|
2016-07-31 22:03:47 +00:00
|
|
|
Radix::Hexadecimal => format!("{:06X}", x),
|
2016-07-24 20:28:22 +00:00
|
|
|
Radix::Octal => format!("{:07o}", x),
|
2016-07-31 22:03:47 +00:00
|
|
|
Radix::NoPrefix => String::from(""),
|
2015-01-26 06:39:49 +00:00
|
|
|
}
|
2016-04-26 02:05:16 +00:00
|
|
|
}
|
2016-07-31 14:51:20 +00:00
|
|
|
|
|
|
|
struct SpacedFormatterItemInfo {
|
|
|
|
frm: FormatterItemInfo,
|
|
|
|
spacing: [usize; MAX_BYTES_PER_UNIT],
|
|
|
|
}
|