mirror of
https://github.com/nushell/nushell.git
synced 2024-12-02 05:13:56 +01:00
f73732bf1e
* WIP * Finish last batch
90 lines
2.7 KiB
Rust
90 lines
2.7 KiB
Rust
use crate::prelude::*;
|
|
use calamine::*;
|
|
use nu_data::TaggedListBuilder;
|
|
use nu_engine::WholeStreamCommand;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{Signature, TaggedDictBuilder, UntaggedValue};
|
|
use std::io::Cursor;
|
|
|
|
pub struct FromOds;
|
|
|
|
impl WholeStreamCommand for FromOds {
|
|
fn name(&self) -> &str {
|
|
"from ods"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("from ods")
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Parse OpenDocument Spreadsheet(.ods) data and create table."
|
|
}
|
|
|
|
fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
from_ods(args)
|
|
}
|
|
}
|
|
|
|
fn from_ods(args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
let tag = args.call_info.name_tag.clone();
|
|
let span = tag.span;
|
|
|
|
let bytes = args.input.collect_binary(tag.clone())?;
|
|
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),
|
|
DataType::Float(f) => UntaggedValue::decimal_from_float(*f, span),
|
|
DataType::Int(i) => UntaggedValue::int(*i),
|
|
DataType::Bool(b) => UntaggedValue::boolean(*b),
|
|
_ => UntaggedValue::nothing(),
|
|
};
|
|
|
|
row_output.insert_untagged(&format!("Column{}", i), value);
|
|
}
|
|
|
|
sheet_output.push_untagged(row_output.into_untagged_value());
|
|
}
|
|
|
|
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,
|
|
));
|
|
}
|
|
}
|
|
|
|
Ok(OutputStream::one(dict.into_value()))
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::FromOds;
|
|
use super::ShellError;
|
|
|
|
#[test]
|
|
fn examples_work_as_expected() -> Result<(), ShellError> {
|
|
use crate::examples::test as test_examples;
|
|
|
|
test_examples(FromOds {})
|
|
}
|
|
}
|