2019-08-19 07:16:39 +02:00
|
|
|
use crate::commands::WholeStreamCommand;
|
2019-06-01 20:26:04 +02:00
|
|
|
use crate::prelude::*;
|
2019-11-30 01:21:05 +01:00
|
|
|
use nu_errors::{CoerceInto, ShellError};
|
|
|
|
use nu_protocol::{Primitive, ReturnSuccess, Signature, UnspannedPathMember, UntaggedValue, Value};
|
2019-06-01 20:26:04 +02:00
|
|
|
|
2019-08-19 07:16:39 +02:00
|
|
|
pub struct ToTOML;
|
|
|
|
|
|
|
|
impl WholeStreamCommand for ToTOML {
|
|
|
|
fn name(&self) -> &str {
|
2020-05-04 10:44:33 +02:00
|
|
|
"to toml"
|
2019-08-19 07:16:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
2020-05-04 10:44:33 +02:00
|
|
|
Signature::build("to toml")
|
2019-08-19 07:16:39 +02:00
|
|
|
}
|
2019-08-30 00:52:32 +02:00
|
|
|
|
|
|
|
fn usage(&self) -> &str {
|
|
|
|
"Convert table into .toml text"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run(
|
|
|
|
&self,
|
|
|
|
args: CommandArgs,
|
|
|
|
registry: &CommandRegistry,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
|
|
|
to_toml(args, registry)
|
|
|
|
}
|
2019-08-19 07:16:39 +02:00
|
|
|
}
|
|
|
|
|
2019-11-21 15:33:14 +01:00
|
|
|
pub fn value_to_toml_value(v: &Value) -> Result<toml::Value, ShellError> {
|
|
|
|
Ok(match &v.value {
|
|
|
|
UntaggedValue::Primitive(Primitive::Boolean(b)) => toml::Value::Boolean(*b),
|
|
|
|
UntaggedValue::Primitive(Primitive::Bytes(b)) => toml::Value::Integer(*b as i64),
|
|
|
|
UntaggedValue::Primitive(Primitive::Duration(d)) => toml::Value::Integer(*d as i64),
|
|
|
|
UntaggedValue::Primitive(Primitive::Date(d)) => toml::Value::String(d.to_string()),
|
|
|
|
UntaggedValue::Primitive(Primitive::EndOfStream) => {
|
2019-06-30 08:46:49 +02:00
|
|
|
toml::Value::String("<End of Stream>".to_string())
|
|
|
|
}
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::BeginningOfStream) => {
|
2019-07-27 09:45:00 +02:00
|
|
|
toml::Value::String("<Beginning of Stream>".to_string())
|
|
|
|
}
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Decimal(f)) => {
|
2019-10-13 06:12:43 +02:00
|
|
|
toml::Value::Float(f.tagged(&v.tag).coerce_into("converting to TOML float")?)
|
2019-09-01 18:20:31 +02:00
|
|
|
}
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Int(i)) => {
|
2019-10-13 06:12:43 +02:00
|
|
|
toml::Value::Integer(i.tagged(&v.tag).coerce_into("converting to TOML integer")?)
|
2019-08-30 19:29:04 +02:00
|
|
|
}
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Nothing) => {
|
|
|
|
toml::Value::String("<Nothing>".to_string())
|
|
|
|
}
|
|
|
|
UntaggedValue::Primitive(Primitive::Pattern(s)) => toml::Value::String(s.clone()),
|
|
|
|
UntaggedValue::Primitive(Primitive::String(s)) => toml::Value::String(s.clone()),
|
2019-12-03 07:44:59 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Line(s)) => toml::Value::String(s.clone()),
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Path(s)) => {
|
|
|
|
toml::Value::String(s.display().to_string())
|
|
|
|
}
|
|
|
|
UntaggedValue::Primitive(Primitive::ColumnPath(path)) => toml::Value::Array(
|
2019-11-04 16:47:03 +01:00
|
|
|
path.iter()
|
2019-11-21 15:33:14 +01:00
|
|
|
.map(|x| match &x.unspanned {
|
|
|
|
UnspannedPathMember::String(string) => Ok(toml::Value::String(string.clone())),
|
|
|
|
UnspannedPathMember::Int(int) => Ok(toml::Value::Integer(
|
2019-11-04 16:47:03 +01:00
|
|
|
int.tagged(&v.tag)
|
|
|
|
.coerce_into("converting to TOML integer")?,
|
|
|
|
)),
|
|
|
|
})
|
|
|
|
.collect::<Result<Vec<toml::Value>, ShellError>>()?,
|
|
|
|
),
|
2019-06-30 08:46:49 +02:00
|
|
|
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Table(l) => toml::Value::Array(collect_values(l)?),
|
|
|
|
UntaggedValue::Error(e) => return Err(e.clone()),
|
|
|
|
UntaggedValue::Block(_) => toml::Value::String("<Block>".to_string()),
|
2019-12-04 22:14:52 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Range(_)) => toml::Value::String("<Range>".to_string()),
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Binary(b)) => {
|
2019-07-04 07:11:56 +02:00
|
|
|
toml::Value::Array(b.iter().map(|x| toml::Value::Integer(*x as i64)).collect())
|
|
|
|
}
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Row(o) => {
|
2019-06-30 08:46:49 +02:00
|
|
|
let mut m = toml::map::Map::new();
|
|
|
|
for (k, v) in o.entries.iter() {
|
2019-08-30 19:29:04 +02:00
|
|
|
m.insert(k.clone(), value_to_toml_value(v)?);
|
2019-06-30 08:46:49 +02:00
|
|
|
}
|
|
|
|
toml::Value::Table(m)
|
|
|
|
}
|
2019-08-30 19:29:04 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-12-06 16:28:26 +01:00
|
|
|
fn collect_values(input: &[Value]) -> Result<Vec<toml::Value>, ShellError> {
|
2019-08-30 19:29:04 +02:00
|
|
|
let mut out = vec![];
|
|
|
|
|
|
|
|
for value in input {
|
|
|
|
out.push(value_to_toml_value(value)?);
|
2019-06-30 08:46:49 +02:00
|
|
|
}
|
2019-08-30 19:29:04 +02:00
|
|
|
|
|
|
|
Ok(out)
|
2019-06-30 08:46:49 +02:00
|
|
|
}
|
|
|
|
|
2019-08-19 07:16:39 +02:00
|
|
|
fn to_toml(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
2019-07-24 00:22:11 +02:00
|
|
|
let args = args.evaluate_once(registry)?;
|
2019-09-14 18:30:24 +02:00
|
|
|
let name_tag = args.name_tag();
|
2019-11-21 15:33:14 +01:00
|
|
|
let name_span = name_tag.span;
|
2019-09-26 02:22:17 +02:00
|
|
|
let stream = async_stream! {
|
Move external closer to internal (#1611)
* Refactor InputStream and affected commands.
First, making `values` private and leaning on the `Stream` implementation makes
consumes of `InputStream` less likely to have to change in the future, if we
change what an `InputStream` is internally.
Second, we're dropping `Option<InputStream>` as the input to pipelines,
internals, and externals. Instead, `InputStream.is_empty` can be used to check
for "emptiness". Empty streams are typically only ever used as the first input
to a pipeline.
* Add run_external internal command.
We want to push external commands closer to internal commands, eventually
eliminating the concept of "external" completely. This means we can consolidate
a couple of things:
- Variable evaluation (for example, `$it`, `$nu`, alias vars)
- Behaviour of whole stream vs per-item external execution
It should also make it easier for us to start introducing argument signatures
for external commands,
* Update run_external.rs
* Update run_external.rs
* Update run_external.rs
* Update run_external.rs
Co-authored-by: Jonathan Turner <jonathandturner@users.noreply.github.com>
2020-04-20 05:30:44 +02:00
|
|
|
let input: Vec<Value> = args.input.collect().await;
|
2019-07-09 06:31:26 +02:00
|
|
|
|
2019-09-04 08:48:40 +02:00
|
|
|
let to_process_input = if input.len() > 1 {
|
2019-10-13 06:12:43 +02:00
|
|
|
let tag = input[0].tag.clone();
|
2019-11-21 15:33:14 +01:00
|
|
|
vec![Value { value: UntaggedValue::Table(input), tag } ]
|
2019-09-04 08:48:40 +02:00
|
|
|
} else if input.len() == 1 {
|
|
|
|
input
|
|
|
|
} else {
|
|
|
|
vec![]
|
|
|
|
};
|
|
|
|
|
|
|
|
for value in to_process_input {
|
2019-11-21 15:33:14 +01:00
|
|
|
let value_span = value.tag.span;
|
2019-09-04 08:48:40 +02:00
|
|
|
match value_to_toml_value(&value) {
|
|
|
|
Ok(toml_value) => {
|
|
|
|
match toml::to_string(&toml_value) {
|
|
|
|
Ok(x) => yield ReturnSuccess::value(
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::String(x)).into_value(&name_tag),
|
2019-09-04 08:48:40 +02:00
|
|
|
),
|
|
|
|
_ => yield Err(ShellError::labeled_error_with_secondary(
|
2019-09-14 18:30:24 +02:00
|
|
|
"Expected a table with TOML-compatible structure.tag() from pipeline",
|
2019-09-04 08:48:40 +02:00
|
|
|
"requires TOML-compatible input",
|
2019-11-21 15:33:14 +01:00
|
|
|
name_span,
|
2019-09-04 08:48:40 +02:00
|
|
|
"originates from here".to_string(),
|
2019-11-21 15:33:14 +01:00
|
|
|
value_span,
|
2019-09-04 08:48:40 +02:00
|
|
|
)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => yield Err(ShellError::labeled_error(
|
2019-09-04 18:29:49 +02:00
|
|
|
"Expected a table with TOML-compatible structure from pipeline",
|
2019-09-04 08:48:40 +02:00
|
|
|
"requires TOML-compatible input",
|
2019-10-13 06:12:43 +02:00
|
|
|
&name_tag))
|
2019-07-08 18:44:53 +02:00
|
|
|
}
|
2019-09-04 08:48:40 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(stream.to_output_stream())
|
2019-06-01 20:26:04 +02:00
|
|
|
}
|