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-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-08-06 23:33:23 +00:00
|
|
|
mod partialreader;
|
2016-08-07 21:57:53 +00:00
|
|
|
mod peekreader;
|
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-08-06 23:33:23 +00:00
|
|
|
mod parse_nrofbytes;
|
2016-08-08 19:48:44 +00:00
|
|
|
mod parse_formats;
|
2016-08-15 22:37:33 +00:00
|
|
|
mod parse_inputs;
|
2016-08-20 19:59:40 +00:00
|
|
|
mod inputoffset;
|
2016-08-02 20:55:23 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod mockstream;
|
2016-07-23 17:15:47 +00:00
|
|
|
|
2016-07-23 19:49:43 +00:00
|
|
|
use std::cmp;
|
|
|
|
use std::io::Write;
|
2016-07-30 18:39:09 +00:00
|
|
|
use byteorder_io::*;
|
2016-07-23 17:15:47 +00:00
|
|
|
use multifilereader::*;
|
2016-08-06 23:33:23 +00:00
|
|
|
use partialreader::*;
|
2016-08-07 21:57:53 +00:00
|
|
|
use peekreader::*;
|
2016-07-30 21:59:10 +00:00
|
|
|
use formatteriteminfo::*;
|
2016-08-15 22:37:33 +00:00
|
|
|
use parse_nrofbytes::parse_number_of_bytes;
|
2016-08-12 15:51:24 +00:00
|
|
|
use parse_formats::{parse_format_flags, ParsedFormatterItemInfo};
|
|
|
|
use prn_char::format_ascii_dump;
|
2016-08-15 22:37:33 +00:00
|
|
|
use parse_inputs::{parse_inputs, CommandLineInputs};
|
2016-08-20 19:59:40 +00:00
|
|
|
use inputoffset::{InputOffset, Radix};
|
2016-05-22 20:46:20 +00:00
|
|
|
|
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-08-07 21:57:53 +00:00
|
|
|
const PEEK_BUFFER_SIZE: usize = 4; // utf-8 can be 4 bytes
|
2016-05-22 20:46:20 +00:00
|
|
|
|
2016-08-19 20:43:52 +00:00
|
|
|
static USAGE: &'static str =
|
|
|
|
r#"Usage:
|
|
|
|
od [OPTION]... [--] [FILENAME]...
|
|
|
|
od [-abcdDefFhHiIlLoOsxX] [FILENAME] [[+][0x]OFFSET[.][b]]
|
|
|
|
od --traditional [OPTION]... [FILENAME] [[+][0x]OFFSET[.][b] [[+][0x]LABEL[.][b]]]
|
|
|
|
|
|
|
|
Displays data in various human-readable formats. If multiple formats are
|
|
|
|
specified, the output will contain all formats in the order they appear on the
|
|
|
|
commandline. Each format will be printed on a new line. Only the line
|
|
|
|
containing the first format will be prefixed with the offset.
|
|
|
|
|
|
|
|
If no filename is specified, or it is "-", stdin will be used. After a "--", no
|
|
|
|
more options will be recognised. This allows for filenames starting with a "-".
|
|
|
|
|
|
|
|
If a filename is a valid number which can be used as an offset in the second
|
|
|
|
form, you can force it to be recognised as a filename if you include an option
|
|
|
|
like "-j0", which is only valid in the first form.
|
|
|
|
|
|
|
|
RADIX is one of o,d,x,n for octal, decimal, hexadecimal or none.
|
|
|
|
|
|
|
|
BYTES is decimal by default, octal if prefixed with a "0", or hexadecimal if
|
|
|
|
prefixed with "0x". The suffixes b, KB, K, MB, M, GB, G, will multiply the
|
|
|
|
number with 512, 1000, 1024, 1000^2, 1024^2, 1000^3, 1024^3, 1000^2, 1024^2.
|
|
|
|
|
|
|
|
OFFSET and LABEL are octal by default, hexadecimal if prefixed with "0x" or
|
|
|
|
decimal if a "." suffix is added. The "b" suffix will multiply with 512.
|
|
|
|
|
|
|
|
TYPE contains one or more format specifications consisting of:
|
|
|
|
a for printable 7-bits ASCII
|
|
|
|
c for utf-8 characters or octal for undefined characters
|
|
|
|
d[SIZE] for signed decimal
|
|
|
|
f[SIZE] for floating point
|
|
|
|
o[SIZE] for octal
|
|
|
|
u[SIZE] for unsigned decimal
|
|
|
|
x[SIZE] for hexadecimal
|
|
|
|
SIZE is the number of bytes which can be the number 1, 2, 4, 8 or 16,
|
|
|
|
or C, I, S, L for 1, 2, 4, 8 bytes for integer types,
|
|
|
|
or F, D, L for 4, 8, 16 bytes for floating point.
|
|
|
|
Any type specification can have a "z" suffic, which will add a ASCII dump at
|
|
|
|
the end of the line.
|
|
|
|
|
|
|
|
If an error occurred, a diagnostic message will be printed to stderr, and the
|
|
|
|
exitcode will be non-zero."#;
|
|
|
|
|
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");
|
2016-08-09 22:57:04 +00:00
|
|
|
opts.optflagmulti("o", "", "octal 2-byte units");
|
2016-07-31 22:03:47 +00:00
|
|
|
|
2016-08-09 22:57:04 +00:00
|
|
|
opts.optflagmulti("I", "", "decimal 8-byte units");
|
|
|
|
opts.optflagmulti("L", "", "decimal 8-byte units");
|
|
|
|
opts.optflagmulti("i", "", "decimal 4-byte units");
|
|
|
|
opts.optflagmulti("l", "", "decimal 8-byte units");
|
2016-07-31 22:03:47 +00:00
|
|
|
opts.optflagmulti("x", "", "hexadecimal 2-byte units");
|
|
|
|
opts.optflagmulti("h", "", "hexadecimal 2-byte units");
|
|
|
|
|
|
|
|
opts.optflagmulti("O", "", "octal 4-byte units");
|
2016-08-09 22:57:04 +00:00
|
|
|
opts.optflagmulti("s", "", "decimal 2-byte units");
|
2016-07-31 22:03:47 +00:00
|
|
|
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
|
|
|
|
2016-08-11 11:45:39 +00:00
|
|
|
opts.optmulti("t", "format", "select output format or formats", "TYPE");
|
2015-05-21 02:45:43 +00:00
|
|
|
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.");
|
2016-08-18 20:17:03 +00:00
|
|
|
opts.optflag("", "traditional", "compatibility mode with one input, offset and label.");
|
2015-05-21 02:45:43 +00:00
|
|
|
|
|
|
|
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") {
|
2016-08-19 20:43:52 +00:00
|
|
|
println!("{}", opts.usage(&USAGE));
|
2016-07-18 20:46:04 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
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-08-15 22:37:33 +00:00
|
|
|
let mut skip_bytes = match matches.opt_default("skip-bytes", "0") {
|
|
|
|
None => 0,
|
|
|
|
Some(s) => {
|
|
|
|
match parse_number_of_bytes(&s) {
|
|
|
|
Ok(i) => { i }
|
|
|
|
Err(_) => {
|
|
|
|
disp_err!("Invalid argument --skip-bytes={}", s);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-08-18 20:17:03 +00:00
|
|
|
let mut label: Option<usize> = None;
|
|
|
|
|
2016-08-15 22:37:33 +00:00
|
|
|
let input_strings = match parse_inputs(&matches) {
|
2016-08-18 20:17:03 +00:00
|
|
|
Ok(CommandLineInputs::FileNames(v)) => v,
|
|
|
|
Ok(CommandLineInputs::FileAndOffset((f, s, l))) => {
|
2016-08-15 22:37:33 +00:00
|
|
|
skip_bytes = s;
|
2016-08-18 20:17:03 +00:00
|
|
|
label = l;
|
2016-08-15 22:37:33 +00:00
|
|
|
vec!{f}
|
|
|
|
},
|
2016-08-18 20:17:03 +00:00
|
|
|
Err(e) => {
|
|
|
|
disp_err!("Invalid inputs: {}", e);
|
|
|
|
return 1;
|
|
|
|
}
|
2016-08-15 22:37:33 +00:00
|
|
|
};
|
2016-08-02 20:55:23 +00:00
|
|
|
|
2016-08-11 11:45:39 +00:00
|
|
|
let formats = match parse_format_flags(&args) {
|
|
|
|
Ok(f) => f,
|
|
|
|
Err(e) => {
|
|
|
|
disp_err!("{}", e);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
};
|
2016-05-22 20:46:20 +00:00
|
|
|
|
2016-08-08 19:48:44 +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-05-22 20:46:20 +00:00
|
|
|
}
|
|
|
|
}
|
2016-08-08 19:48:44 +00:00
|
|
|
};
|
2016-08-12 15:51:24 +00:00
|
|
|
let min_bytes = formats.iter().fold(1, |max, next| cmp::max(max, next.formatter_item_info.byte_size));
|
2016-08-08 19:48:44 +00:00
|
|
|
if line_bytes % min_bytes != 0 {
|
|
|
|
show_warning!("invalid width {}; using {} instead", line_bytes, min_bytes);
|
|
|
|
line_bytes = min_bytes;
|
|
|
|
}
|
2016-05-22 20:46:20 +00:00
|
|
|
|
2016-08-08 19:48:44 +00:00
|
|
|
let output_duplicates = matches.opt_present("v");
|
2016-05-22 20:46:20 +00:00
|
|
|
|
2016-08-08 19:48:44 +00:00
|
|
|
let read_bytes = match matches.opt_str("read-bytes") {
|
|
|
|
None => None,
|
|
|
|
Some(s) => {
|
|
|
|
match parse_number_of_bytes(&s) {
|
|
|
|
Ok(i) => { Some(i) }
|
|
|
|
Err(_) => {
|
|
|
|
disp_err!("Invalid argument --read-bytes={}", s);
|
|
|
|
return 1;
|
2016-08-06 23:33:23 +00:00
|
|
|
}
|
|
|
|
}
|
2016-08-08 19:48:44 +00:00
|
|
|
}
|
|
|
|
};
|
2016-08-06 23:33:23 +00:00
|
|
|
|
2016-08-20 19:59:40 +00:00
|
|
|
let mut input = open_input_peek_reader(&input_strings, skip_bytes, read_bytes);
|
|
|
|
|
|
|
|
let mut input_offset = InputOffset::new(Radix::Octal, skip_bytes, label);
|
|
|
|
if let Err(e) = input_offset.parse_radix_from_commandline(matches.opt_str("A")) {
|
|
|
|
disp_err!("Invalid -A/--address-radix\n{}", e);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
odfunc(&mut input, &mut input_offset, line_bytes, byte_order, &formats[..],
|
|
|
|
output_duplicates)
|
2016-07-23 19:49:43 +00:00
|
|
|
}
|
2016-05-22 20:46:20 +00:00
|
|
|
|
2016-08-18 20:17:03 +00:00
|
|
|
// TODO: refactor, too many arguments
|
2016-08-20 19:59:40 +00:00
|
|
|
fn odfunc<I>(input: &mut I, input_offset: &mut InputOffset, line_bytes: usize, byte_order: ByteOrder,
|
|
|
|
formats: &[ParsedFormatterItemInfo], output_duplicates: bool) -> i32
|
|
|
|
where I : PeekRead+HasError {
|
2016-05-22 20:46:20 +00:00
|
|
|
|
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();
|
2016-08-07 21:57:53 +00:00
|
|
|
let mut bytes: Vec<u8> = Vec::with_capacity(line_bytes + PEEK_BUFFER_SIZE);
|
|
|
|
unsafe { bytes.set_len(line_bytes + PEEK_BUFFER_SIZE); } // fast but uninitialized
|
2016-07-25 12:17:45 +00:00
|
|
|
|
2016-08-12 15:51:24 +00:00
|
|
|
let byte_size_block = formats.iter().fold(1, |max, next| cmp::max(max, next.formatter_item_info.byte_size));
|
2016-07-31 14:51:20 +00:00
|
|
|
let print_width_block = formats
|
|
|
|
.iter()
|
|
|
|
.fold(1, |max, next| {
|
2016-08-12 15:51:24 +00:00
|
|
|
cmp::max(max, next.formatter_item_info.print_width * (byte_size_block / next.formatter_item_info.byte_size))
|
2016-07-31 14:51:20 +00:00
|
|
|
});
|
2016-08-12 15:51:24 +00:00
|
|
|
let print_width_line = print_width_block * (line_bytes / byte_size_block);
|
2016-07-31 14:51:20 +00:00
|
|
|
|
|
|
|
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 {
|
2016-08-12 15:51:24 +00:00
|
|
|
let mut byte_size = sf.frm.formatter_item_info.byte_size;
|
2016-07-31 14:51:20 +00:00
|
|
|
let mut items_in_block = byte_size_block / byte_size;
|
2016-08-12 15:51:24 +00:00
|
|
|
let thisblock_width = sf.frm.formatter_item_info.print_width * items_in_block;
|
2016-07-31 14:51:20 +00:00
|
|
|
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-07 21:57:53 +00:00
|
|
|
match input.peek_read(bytes.as_mut_slice(), PEEK_BUFFER_SIZE) {
|
|
|
|
Ok((0, _)) => {
|
2016-08-20 19:59:40 +00:00
|
|
|
input_offset.print_final_offset();
|
2016-05-22 20:46:20 +00:00
|
|
|
break;
|
2016-04-26 02:55:34 +00:00
|
|
|
}
|
2016-08-07 21:57:53 +00:00
|
|
|
Ok((n, peekbytes)) => {
|
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-07 21:57:53 +00:00
|
|
|
if !output_duplicates
|
|
|
|
&& n == line_bytes
|
|
|
|
&& !previous_bytes.is_empty()
|
|
|
|
&& previous_bytes[..line_bytes] == bytes[..line_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-08-07 21:57:53 +00:00
|
|
|
print_bytes(byte_order, &bytes, n, peekbytes,
|
2016-08-20 19:59:40 +00:00
|
|
|
&input_offset.format_byte_offset(),
|
2016-08-12 15:51:24 +00:00
|
|
|
&spaced_formatters, byte_size_block, print_width_line);
|
2016-07-25 12:17:45 +00:00
|
|
|
}
|
|
|
|
|
2016-08-20 19:59:40 +00:00
|
|
|
input_offset.increase_position(n);
|
2016-05-22 20:46:20 +00:00
|
|
|
}
|
2016-08-06 23:33:23 +00:00
|
|
|
Err(e) => {
|
|
|
|
show_error!("{}", e);
|
2016-08-20 19:59:40 +00:00
|
|
|
input_offset.print_final_offset();
|
2016-08-06 23:33:23 +00:00
|
|
|
return 1;
|
2016-05-22 20:46:20 +00:00
|
|
|
}
|
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-08-06 23:33:23 +00:00
|
|
|
if input.has_error() {
|
2016-05-22 20:46:20 +00:00
|
|
|
1
|
|
|
|
} else {
|
|
|
|
0
|
|
|
|
}
|
2014-07-10 20:49:20 +00:00
|
|
|
}
|
|
|
|
|
2016-08-07 21:57:53 +00:00
|
|
|
fn print_bytes(byte_order: ByteOrder, bytes: &[u8], length: usize, peekbytes: usize, prefix: &str,
|
2016-08-12 15:51:24 +00:00
|
|
|
formats: &[SpacedFormatterItemInfo], byte_size_block: usize, print_width_line: 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-08-12 15:51:24 +00:00
|
|
|
let nextb = b + f.frm.formatter_item_info.byte_size;
|
2016-07-31 14:51:20 +00:00
|
|
|
|
|
|
|
output_text.push_str(&format!("{:>width$}",
|
|
|
|
"",
|
|
|
|
width = f.spacing[b % byte_size_block]));
|
|
|
|
|
2016-08-12 15:51:24 +00:00
|
|
|
match f.frm.formatter_item_info.formatter {
|
2016-07-25 11:59:21 +00:00
|
|
|
FormatWriter::IntWriter(func) => {
|
2016-08-12 15:51:24 +00:00
|
|
|
let p: u64 = match f.frm.formatter_item_info.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-08-12 15:51:24 +00:00
|
|
|
_ => { panic!("Invalid byte_size: {}", f.frm.formatter_item_info.byte_size); }
|
2016-07-25 11:59:21 +00:00
|
|
|
};
|
2016-08-12 15:51:24 +00:00
|
|
|
output_text.push_str(&func(p, f.frm.formatter_item_info.byte_size, f.frm.formatter_item_info.print_width));
|
2016-07-25 11:59:21 +00:00
|
|
|
}
|
|
|
|
FormatWriter::FloatWriter(func) => {
|
2016-08-12 15:51:24 +00:00
|
|
|
let p: f64 = match f.frm.formatter_item_info.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-08-12 15:51:24 +00:00
|
|
|
_ => { panic!("Invalid byte_size: {}", f.frm.formatter_item_info.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) => {
|
2016-08-07 21:57:53 +00:00
|
|
|
output_text.push_str(&func(&bytes[b..length+peekbytes]));
|
2016-08-01 14:39:58 +00:00
|
|
|
}
|
2016-07-25 11:59:21 +00:00
|
|
|
}
|
|
|
|
b = nextb;
|
|
|
|
}
|
|
|
|
|
2016-08-12 15:51:24 +00:00
|
|
|
if f.frm.add_ascii_dump {
|
|
|
|
let missing_spacing = print_width_line.saturating_sub(output_text.chars().count());
|
|
|
|
output_text.push_str(&format!("{:>width$} {}",
|
|
|
|
"",
|
|
|
|
format_ascii_dump(&bytes[..length]),
|
|
|
|
width=missing_spacing));
|
|
|
|
}
|
|
|
|
|
2016-07-25 11:59:21 +00:00
|
|
|
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-08-20 19:59:40 +00:00
|
|
|
/// returns a reader implementing `PeekRead+Read+HasError` providing the combined input
|
|
|
|
///
|
|
|
|
/// `skip_bytes` is the number of bytes skipped from the input
|
|
|
|
/// `read_bytes` is an optinal limit to the number of bytes to read
|
|
|
|
fn open_input_peek_reader<'a>(input_strings: &'a Vec<String>, skip_bytes: usize,
|
|
|
|
read_bytes: Option<usize>) -> PeekReader<PartialReader<MultifileReader<'a>>> {
|
|
|
|
// should return "impl PeekRead+Read+HasError" when supported in (stable) rust
|
|
|
|
let inputs = input_strings
|
|
|
|
.iter()
|
|
|
|
.map(|w| match w as &str {
|
|
|
|
"-" => InputSource::Stdin,
|
|
|
|
x => InputSource::FileName(x),
|
|
|
|
})
|
|
|
|
.collect::<Vec<_>>();
|
2016-07-31 14:51:20 +00:00
|
|
|
|
2016-08-20 19:59:40 +00:00
|
|
|
let mf = MultifileReader::new(inputs);
|
|
|
|
let pr = PartialReader::new(mf, skip_bytes, read_bytes);
|
|
|
|
let input = PeekReader::new(pr);
|
|
|
|
input
|
2016-08-06 23:33:23 +00:00
|
|
|
}
|
|
|
|
|
2016-07-31 14:51:20 +00:00
|
|
|
struct SpacedFormatterItemInfo {
|
2016-08-12 15:51:24 +00:00
|
|
|
frm: ParsedFormatterItemInfo,
|
2016-07-31 14:51:20 +00:00
|
|
|
spacing: [usize; MAX_BYTES_PER_UNIT],
|
|
|
|
}
|