nushell/src/commands/autoview.rs

43 lines
1.1 KiB
Rust
Raw Normal View History

2019-06-07 07:50:26 +00:00
use crate::commands::command::SinkCommandArgs;
use crate::errors::ShellError;
use crate::format::{GenericView, TableView};
use crate::prelude::*;
pub fn autoview(args: SinkCommandArgs) -> Result<(), ShellError> {
if args.input.len() > 0 {
2019-07-04 05:11:56 +00:00
if let Value::Binary(_) = args.input[0] {
println!("Binary");
} else if equal_shapes(&args.input) {
args.ctx.get_sink("table").run(args)?;
2019-06-07 07:50:26 +00:00
} else {
let mut host = args.ctx.host.lock().unwrap();
for i in args.input.iter() {
let view = GenericView::new(&i);
handle_unexpected(&mut *host, |host| crate::format::print_view(&view, host));
host.stdout("");
}
}
}
Ok(())
}
fn equal_shapes(input: &Vec<Value>) -> bool {
let mut items = input.iter();
let item = match items.next() {
Some(item) => item,
None => return false,
};
let desc = item.data_descriptors();
for item in items {
if desc != item.data_descriptors() {
return false;
}
}
true
}