# Description Lint: `clippy::uninlined_format_args` More readable in most situations. (May be slightly confusing for modifier format strings https://doc.rust-lang.org/std/fmt/index.html#formatting-parameters) Alternative to #7865 # User-Facing Changes None intended # Tests + Formatting (Ran `cargo +stable clippy --fix --workspace -- -A clippy::all -D clippy::uninlined_format_args` to achieve this. Depends on Rust `1.67`)
108 lines
3.0 KiB
Rust
108 lines
3.0 KiB
Rust
use indexmap::map::IndexMap;
|
|
use nu_protocol::ast::Call;
|
|
use nu_protocol::engine::{Command, EngineState, Stack};
|
|
use nu_protocol::{
|
|
Category, Example, IntoPipelineData, PipelineData, ShellError, Signature, Span, Type, Value,
|
|
};
|
|
|
|
#[derive(Clone)]
|
|
pub struct FromIni;
|
|
|
|
impl Command for FromIni {
|
|
fn name(&self) -> &str {
|
|
"from ini"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("from ini")
|
|
.input_output_types(vec![(Type::String, Type::Record(vec![]))])
|
|
.category(Category::Formats)
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Parse text as .ini and create record"
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![Example {
|
|
example: "'[foo]
|
|
a=1
|
|
b=2' | from ini",
|
|
description: "Converts ini formatted string to record",
|
|
result: Some(Value::Record {
|
|
cols: vec!["foo".to_string()],
|
|
vals: vec![Value::Record {
|
|
cols: vec!["a".to_string(), "b".to_string()],
|
|
vals: vec![Value::test_string("1"), Value::test_string("2")],
|
|
span: Span::test_data(),
|
|
}],
|
|
span: Span::test_data(),
|
|
}),
|
|
}]
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
_engine_state: &EngineState,
|
|
_stack: &mut Stack,
|
|
call: &Call,
|
|
input: PipelineData,
|
|
) -> Result<nu_protocol::PipelineData, ShellError> {
|
|
let head = call.head;
|
|
from_ini(input, head)
|
|
}
|
|
}
|
|
|
|
pub fn from_ini_string_to_value(
|
|
s: String,
|
|
span: Span,
|
|
val_span: Span,
|
|
) -> Result<Value, ShellError> {
|
|
let v: Result<IndexMap<String, IndexMap<String, String>>, serde_ini::de::Error> =
|
|
serde_ini::from_str(&s);
|
|
match v {
|
|
Ok(index_map) => {
|
|
let (cols, vals) = index_map
|
|
.into_iter()
|
|
.fold((vec![], vec![]), |mut acc, (k, v)| {
|
|
let (cols, vals) = v.into_iter().fold((vec![], vec![]), |mut acc, (k, v)| {
|
|
acc.0.push(k);
|
|
acc.1.push(Value::String { val: v, span });
|
|
acc
|
|
});
|
|
acc.0.push(k);
|
|
acc.1.push(Value::Record { cols, vals, span });
|
|
acc
|
|
});
|
|
Ok(Value::Record { cols, vals, span })
|
|
}
|
|
Err(err) => Err(ShellError::UnsupportedInput(
|
|
format!("Could not load ini: {err}"),
|
|
"value originates from here".into(),
|
|
span,
|
|
val_span,
|
|
)),
|
|
}
|
|
}
|
|
|
|
fn from_ini(input: PipelineData, head: Span) -> Result<PipelineData, ShellError> {
|
|
let (concat_string, span, metadata) = input.collect_string_strict(head)?;
|
|
|
|
match from_ini_string_to_value(concat_string, head, span) {
|
|
Ok(x) => Ok(x.into_pipeline_data_with_metadata(metadata)),
|
|
Err(other) => Err(other),
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_examples() {
|
|
use crate::test_examples;
|
|
|
|
test_examples(FromIni {})
|
|
}
|
|
}
|