2019-08-19 07:16:39 +02:00
|
|
|
use crate::commands::WholeStreamCommand;
|
2019-07-21 09:08:05 +02:00
|
|
|
use crate::object::{Primitive, Value};
|
|
|
|
use crate::prelude::*;
|
|
|
|
use csv::WriterBuilder;
|
|
|
|
|
2019-08-19 07:16:39 +02:00
|
|
|
pub struct ToCSV;
|
|
|
|
|
2019-08-25 14:59:46 +02:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct ToCSVArgs {
|
|
|
|
headerless: bool,
|
|
|
|
}
|
2019-08-19 07:16:39 +02:00
|
|
|
|
2019-08-25 14:59:46 +02:00
|
|
|
impl WholeStreamCommand for ToCSV {
|
2019-08-19 07:16:39 +02:00
|
|
|
fn name(&self) -> &str {
|
|
|
|
"to-csv"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
2019-09-04 08:48:40 +02:00
|
|
|
Signature::build("to-csv").switch("headerless")
|
2019-08-30 00:52:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn usage(&self) -> &str {
|
|
|
|
"Convert table into .csv text "
|
2019-08-25 14:59:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn run(
|
|
|
|
&self,
|
|
|
|
args: CommandArgs,
|
|
|
|
registry: &CommandRegistry,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
|
|
|
args.process(registry, to_csv)?.run()
|
2019-08-19 07:16:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-21 09:08:05 +02:00
|
|
|
pub fn value_to_csv_value(v: &Value) -> Value {
|
|
|
|
match v {
|
|
|
|
Value::Primitive(Primitive::String(s)) => Value::Primitive(Primitive::String(s.clone())),
|
|
|
|
Value::Primitive(Primitive::Nothing) => Value::Primitive(Primitive::Nothing),
|
2019-08-25 14:59:46 +02:00
|
|
|
Value::Primitive(Primitive::Boolean(b)) => Value::Primitive(Primitive::Boolean(b.clone())),
|
|
|
|
Value::Primitive(Primitive::Bytes(b)) => Value::Primitive(Primitive::Bytes(b.clone())),
|
|
|
|
Value::Primitive(Primitive::Date(d)) => Value::Primitive(Primitive::Date(d.clone())),
|
2019-07-21 09:08:05 +02:00
|
|
|
Value::Object(o) => Value::Object(o.clone()),
|
|
|
|
Value::List(l) => Value::List(l.clone()),
|
|
|
|
Value::Block(_) => Value::Primitive(Primitive::Nothing),
|
2019-07-24 00:22:11 +02:00
|
|
|
_ => Value::Primitive(Primitive::Nothing),
|
2019-07-21 09:08:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-04 08:48:40 +02:00
|
|
|
fn to_string_helper(v: &Value) -> Result<String, ShellError> {
|
2019-08-25 14:59:46 +02:00
|
|
|
match v {
|
|
|
|
Value::Primitive(Primitive::Date(d)) => Ok(d.to_string()),
|
2019-08-30 19:29:04 +02:00
|
|
|
Value::Primitive(Primitive::Bytes(b)) => Ok(format!("{}", b)),
|
2019-08-25 14:59:46 +02:00
|
|
|
Value::Primitive(Primitive::Boolean(_)) => Ok(v.as_string()?),
|
|
|
|
Value::List(_) => return Ok(String::from("[list list]")),
|
|
|
|
Value::Object(_) => return Ok(String::from("[object]")),
|
|
|
|
Value::Primitive(Primitive::String(s)) => return Ok(s.to_string()),
|
2019-09-04 08:48:40 +02:00
|
|
|
_ => return Err(ShellError::string("Unexpected value")),
|
2019-08-25 14:59:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-04 08:48:40 +02:00
|
|
|
fn merge_descriptors(values: &[Tagged<Value>]) -> Vec<String> {
|
|
|
|
let mut ret = vec![];
|
|
|
|
for value in values {
|
|
|
|
for desc in value.data_descriptors() {
|
|
|
|
if !ret.contains(&desc) {
|
|
|
|
ret.push(desc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ret
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn to_string(v: &Value) -> Result<String, ShellError> {
|
2019-07-21 09:08:05 +02:00
|
|
|
match v {
|
|
|
|
Value::Object(o) => {
|
|
|
|
let mut wtr = WriterBuilder::new().from_writer(vec![]);
|
|
|
|
let mut fields: VecDeque<String> = VecDeque::new();
|
|
|
|
let mut values: VecDeque<String> = VecDeque::new();
|
|
|
|
|
|
|
|
for (k, v) in o.entries.iter() {
|
|
|
|
fields.push_back(k.clone());
|
2019-09-04 08:48:40 +02:00
|
|
|
|
2019-08-25 14:59:46 +02:00
|
|
|
values.push_back(to_string_helper(&v)?);
|
2019-07-21 09:08:05 +02:00
|
|
|
}
|
2019-07-24 00:22:11 +02:00
|
|
|
|
2019-07-21 09:08:05 +02:00
|
|
|
wtr.write_record(fields).expect("can not write.");
|
|
|
|
wtr.write_record(values).expect("can not write.");
|
|
|
|
|
2019-09-04 08:48:40 +02:00
|
|
|
return Ok(String::from_utf8(
|
|
|
|
wtr.into_inner()
|
|
|
|
.map_err(|_| ShellError::string("Could not convert record"))?,
|
|
|
|
)
|
|
|
|
.map_err(|_| ShellError::string("Could not convert record"))?);
|
|
|
|
}
|
|
|
|
Value::List(list) => {
|
|
|
|
let mut wtr = WriterBuilder::new().from_writer(vec![]);
|
|
|
|
|
|
|
|
let merged_descriptors = merge_descriptors(&list);
|
|
|
|
wtr.write_record(&merged_descriptors)
|
|
|
|
.expect("can not write.");
|
|
|
|
|
|
|
|
for l in list {
|
|
|
|
let mut row = vec![];
|
|
|
|
for desc in &merged_descriptors {
|
|
|
|
match l.item.get_data_by_key(&desc) {
|
|
|
|
Some(s) => {
|
|
|
|
row.push(to_string_helper(s)?);
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
row.push(String::new());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
wtr.write_record(&row).expect("can not write");
|
|
|
|
}
|
|
|
|
|
|
|
|
return Ok(String::from_utf8(
|
|
|
|
wtr.into_inner()
|
|
|
|
.map_err(|_| ShellError::string("Could not convert record"))?,
|
|
|
|
)
|
|
|
|
.map_err(|_| ShellError::string("Could not convert record"))?);
|
2019-07-24 00:22:11 +02:00
|
|
|
}
|
2019-08-25 14:59:46 +02:00
|
|
|
_ => return to_string_helper(&v),
|
2019-07-21 09:08:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-25 14:59:46 +02:00
|
|
|
fn to_csv(
|
|
|
|
ToCSVArgs { headerless }: ToCSVArgs,
|
|
|
|
RunnableContext { input, name, .. }: RunnableContext,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
|
|
|
let name_span = name;
|
2019-09-04 08:48:40 +02:00
|
|
|
let stream = async_stream_block! {
|
|
|
|
let input: Vec<Tagged<Value>> = input.values.collect().await;
|
|
|
|
|
|
|
|
let to_process_input = if input.len() > 1 {
|
|
|
|
let tag = input[0].tag;
|
|
|
|
vec![Tagged { item: Value::List(input), tag } ]
|
|
|
|
} else if input.len() == 1 {
|
|
|
|
input
|
|
|
|
} else {
|
|
|
|
vec![]
|
|
|
|
};
|
|
|
|
|
|
|
|
for value in to_process_input {
|
|
|
|
match to_string(&value_to_csv_value(&value.item)) {
|
|
|
|
Ok(x) => {
|
|
|
|
let converted = if headerless {
|
|
|
|
x.lines().skip(1).collect()
|
|
|
|
} else {
|
|
|
|
x
|
|
|
|
};
|
|
|
|
yield ReturnSuccess::value(Value::Primitive(Primitive::String(converted)).simple_spanned(name_span))
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
yield Err(ShellError::labeled_error_with_secondary(
|
2019-09-04 18:29:49 +02:00
|
|
|
"Expected a table with CSV-compatible structure.span() from pipeline",
|
2019-09-04 08:48:40 +02:00
|
|
|
"requires CSV-compatible input",
|
|
|
|
name_span,
|
|
|
|
"originates from here".to_string(),
|
|
|
|
value.span(),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(stream.to_output_stream())
|
2019-07-21 09:08:05 +02:00
|
|
|
}
|