2020-01-07 07:35:00 +01:00
|
|
|
use crate::commands::WholeStreamCommand;
|
|
|
|
use crate::prelude::*;
|
|
|
|
use calamine::*;
|
2020-08-18 09:00:02 +02:00
|
|
|
use nu_data::TaggedListBuilder;
|
2020-01-07 07:35:00 +01:00
|
|
|
use nu_errors::ShellError;
|
2020-03-06 17:06:39 +01:00
|
|
|
use nu_protocol::{ReturnSuccess, Signature, TaggedDictBuilder, UntaggedValue};
|
2020-01-07 07:35:00 +01:00
|
|
|
use std::io::Cursor;
|
|
|
|
|
|
|
|
pub struct FromODS;
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct FromODSArgs {
|
|
|
|
headerless: bool,
|
|
|
|
}
|
|
|
|
|
2020-05-29 10:22:52 +02:00
|
|
|
#[async_trait]
|
2020-01-07 07:35:00 +01:00
|
|
|
impl WholeStreamCommand for FromODS {
|
|
|
|
fn name(&self) -> &str {
|
2020-05-04 10:44:33 +02:00
|
|
|
"from ods"
|
2020-01-07 07:35:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
2020-05-04 10:44:33 +02:00
|
|
|
Signature::build("from ods").switch(
|
2020-02-12 03:24:31 +01:00
|
|
|
"headerless",
|
|
|
|
"don't treat the first row as column names",
|
|
|
|
None,
|
|
|
|
)
|
2020-01-07 07:35:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn usage(&self) -> &str {
|
|
|
|
"Parse OpenDocument Spreadsheet(.ods) data and create table."
|
|
|
|
}
|
|
|
|
|
2020-05-29 10:22:52 +02:00
|
|
|
async fn run(
|
2020-01-07 07:35:00 +01:00
|
|
|
&self,
|
|
|
|
args: CommandArgs,
|
|
|
|
registry: &CommandRegistry,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
2020-06-13 06:03:39 +02:00
|
|
|
from_ods(args, registry).await
|
2020-01-07 07:35:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-13 06:03:39 +02:00
|
|
|
async fn from_ods(
|
|
|
|
args: CommandArgs,
|
|
|
|
registry: &CommandRegistry,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
2020-05-16 05:18:24 +02:00
|
|
|
let tag = args.call_info.name_tag.clone();
|
2020-09-21 19:28:31 +02:00
|
|
|
let span = tag.span;
|
2020-05-16 05:18:24 +02:00
|
|
|
let registry = registry.clone();
|
2020-01-07 07:35:00 +01:00
|
|
|
|
2020-06-13 06:03:39 +02:00
|
|
|
let (
|
|
|
|
FromODSArgs {
|
|
|
|
headerless: _headerless,
|
|
|
|
},
|
|
|
|
input,
|
|
|
|
) = args.process(®istry).await?;
|
|
|
|
let bytes = input.collect_binary(tag.clone()).await?;
|
|
|
|
let buf: Cursor<Vec<u8>> = Cursor::new(bytes.item);
|
|
|
|
let mut ods = Ods::<_>::new(buf).map_err(|_| {
|
|
|
|
ShellError::labeled_error("Could not load ods file", "could not load ods file", &tag)
|
|
|
|
})?;
|
|
|
|
|
|
|
|
let mut dict = TaggedDictBuilder::new(&tag);
|
|
|
|
|
|
|
|
let sheet_names = ods.sheet_names().to_owned();
|
|
|
|
|
|
|
|
for sheet_name in &sheet_names {
|
|
|
|
let mut sheet_output = TaggedListBuilder::new(&tag);
|
|
|
|
|
|
|
|
if let Some(Ok(current_sheet)) = ods.worksheet_range(sheet_name) {
|
|
|
|
for row in current_sheet.rows() {
|
|
|
|
let mut row_output = TaggedDictBuilder::new(&tag);
|
|
|
|
for (i, cell) in row.iter().enumerate() {
|
|
|
|
let value = match cell {
|
|
|
|
DataType::Empty => UntaggedValue::nothing(),
|
|
|
|
DataType::String(s) => UntaggedValue::string(s),
|
2020-09-21 19:28:31 +02:00
|
|
|
DataType::Float(f) => UntaggedValue::decimal_from_float(*f, span),
|
2020-06-13 06:03:39 +02:00
|
|
|
DataType::Int(i) => UntaggedValue::int(*i),
|
|
|
|
DataType::Bool(b) => UntaggedValue::boolean(*b),
|
|
|
|
_ => UntaggedValue::nothing(),
|
|
|
|
};
|
|
|
|
|
|
|
|
row_output.insert_untagged(&format!("Column{}", i), value);
|
2020-01-07 07:35:00 +01:00
|
|
|
}
|
|
|
|
|
2020-06-13 06:03:39 +02:00
|
|
|
sheet_output.push_untagged(row_output.into_untagged_value());
|
2020-01-07 07:35:00 +01:00
|
|
|
}
|
2020-03-06 17:06:39 +01:00
|
|
|
|
2020-06-13 06:03:39 +02:00
|
|
|
dict.insert_untagged(sheet_name, sheet_output.into_untagged_value());
|
|
|
|
} else {
|
|
|
|
return Err(ShellError::labeled_error(
|
|
|
|
"Could not load sheet",
|
|
|
|
"could not load sheet",
|
|
|
|
&tag,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
2020-01-07 07:35:00 +01:00
|
|
|
|
2020-06-13 06:03:39 +02:00
|
|
|
Ok(OutputStream::one(ReturnSuccess::value(dict.into_value())))
|
2020-01-07 07:35:00 +01:00
|
|
|
}
|
2020-05-18 14:56:01 +02:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::FromODS;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn examples_work_as_expected() {
|
|
|
|
use crate::examples::test as test_examples;
|
|
|
|
|
|
|
|
test_examples(FromODS {})
|
|
|
|
}
|
|
|
|
}
|