forked from extern/nushell
Remove old nushell/merge engine-q
This commit is contained in:
@ -1,12 +1,5 @@
|
||||
<<<<<<< HEAD
|
||||
use nu_errors::ShellError;
|
||||
use nu_protocol::{did_you_mean, ColumnPath, Primitive, ShellTypeName, UntaggedValue, Value};
|
||||
use nu_source::{span_for_spanned_list, HasSpan, SpannedItem, Tagged};
|
||||
use nu_value_ext::{get_data_by_column_path, ValueExt};
|
||||
=======
|
||||
use nu_plugin::LabeledError;
|
||||
use nu_protocol::{Span, Value};
|
||||
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
|
||||
|
||||
#[derive(Debug, Eq, PartialEq)]
|
||||
pub enum Action {
|
||||
@ -23,10 +16,6 @@ pub enum SemVerAction {
|
||||
|
||||
#[derive(Default)]
|
||||
pub struct Inc {
|
||||
<<<<<<< HEAD
|
||||
pub field: Option<Tagged<ColumnPath>>,
|
||||
=======
|
||||
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
|
||||
pub error: Option<String>,
|
||||
pub action: Option<Action>,
|
||||
}
|
||||
@ -36,25 +25,17 @@ impl Inc {
|
||||
Default::default()
|
||||
}
|
||||
|
||||
<<<<<<< HEAD
|
||||
fn apply(&self, input: &str) -> UntaggedValue {
|
||||
=======
|
||||
fn apply(&self, input: &str, head: Span) -> Value {
|
||||
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
|
||||
match &self.action {
|
||||
Some(Action::SemVerAction(act_on)) => {
|
||||
let mut ver = match semver::Version::parse(input) {
|
||||
Ok(parsed_ver) => parsed_ver,
|
||||
<<<<<<< HEAD
|
||||
Err(_) => return UntaggedValue::string(input.to_string()),
|
||||
=======
|
||||
Err(_) => {
|
||||
return Value::String {
|
||||
val: input.to_string(),
|
||||
span: head,
|
||||
}
|
||||
}
|
||||
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
|
||||
};
|
||||
|
||||
match act_on {
|
||||
@ -63,13 +44,6 @@ impl Inc {
|
||||
SemVerAction::Patch => ver.increment_patch(),
|
||||
}
|
||||
|
||||
<<<<<<< HEAD
|
||||
UntaggedValue::string(ver.to_string())
|
||||
}
|
||||
Some(Action::Default) | None => match input.parse::<u64>() {
|
||||
Ok(v) => UntaggedValue::string((v + 1).to_string()),
|
||||
Err(_) => UntaggedValue::string(input),
|
||||
=======
|
||||
Value::String {
|
||||
val: ver.to_string(),
|
||||
span: head,
|
||||
@ -84,7 +58,6 @@ impl Inc {
|
||||
val: input.to_string(),
|
||||
span: head,
|
||||
},
|
||||
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
|
||||
},
|
||||
}
|
||||
}
|
||||
@ -109,76 +82,6 @@ impl Inc {
|
||||
"Usage: inc field [--major|--minor|--patch]"
|
||||
}
|
||||
|
||||
<<<<<<< HEAD
|
||||
pub fn inc(&self, value: Value) -> Result<Value, ShellError> {
|
||||
match &value.value {
|
||||
UntaggedValue::Primitive(Primitive::Int(i)) => {
|
||||
Ok(UntaggedValue::int(i + 1).into_value(value.tag()))
|
||||
}
|
||||
UntaggedValue::Primitive(Primitive::Filesize(b)) => {
|
||||
Ok(UntaggedValue::filesize(b + 1_u64).into_value(value.tag()))
|
||||
}
|
||||
UntaggedValue::Primitive(Primitive::String(ref s)) => {
|
||||
Ok(self.apply(s).into_value(value.tag()))
|
||||
}
|
||||
UntaggedValue::Table(values) => {
|
||||
if values.len() == 1 {
|
||||
Ok(UntaggedValue::Table(vec![self.inc(values[0].clone())?])
|
||||
.into_value(value.tag()))
|
||||
} else {
|
||||
Err(ShellError::type_error(
|
||||
"incrementable value",
|
||||
value.type_name().spanned(value.span()),
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
UntaggedValue::Row(_) => match self.field {
|
||||
Some(ref f) => {
|
||||
let fields = f.clone();
|
||||
|
||||
let replace_for = get_data_by_column_path(
|
||||
&value,
|
||||
f,
|
||||
move |obj_source, column_path_tried, _| match did_you_mean(
|
||||
obj_source,
|
||||
column_path_tried.as_string(),
|
||||
) {
|
||||
Some(suggestions) => ShellError::labeled_error(
|
||||
"Unknown column",
|
||||
format!("did you mean '{}'?", suggestions[0]),
|
||||
span_for_spanned_list(fields.iter().map(|p| p.span)),
|
||||
),
|
||||
None => ShellError::labeled_error(
|
||||
"Unknown column",
|
||||
"row does not contain this column",
|
||||
span_for_spanned_list(fields.iter().map(|p| p.span)),
|
||||
),
|
||||
},
|
||||
);
|
||||
|
||||
let got = replace_for?;
|
||||
let replacement = self.inc(got)?;
|
||||
|
||||
value
|
||||
.replace_data_at_column_path(f, replacement.value.into_untagged_value())
|
||||
.ok_or_else(|| {
|
||||
ShellError::labeled_error(
|
||||
"inc could not find field to replace",
|
||||
"column name",
|
||||
value.tag(),
|
||||
)
|
||||
})
|
||||
}
|
||||
None => Err(ShellError::untagged_runtime_error(
|
||||
"inc needs a field when incrementing a column in a table",
|
||||
)),
|
||||
},
|
||||
_ => Err(ShellError::type_error(
|
||||
"incrementable value",
|
||||
value.type_name().spanned(value.span()),
|
||||
)),
|
||||
=======
|
||||
pub fn inc(&self, head: Span, value: &Value) -> Result<Value, LabeledError> {
|
||||
match value {
|
||||
Value::Int { val, span } => Ok(Value::Int {
|
||||
@ -199,7 +102,6 @@ impl Inc {
|
||||
span: Some(head),
|
||||
})
|
||||
}
|
||||
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -207,17 +109,6 @@ impl Inc {
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
mod semver {
|
||||
<<<<<<< HEAD
|
||||
use crate::inc::SemVerAction;
|
||||
use crate::Inc;
|
||||
use nu_test_support::value::string;
|
||||
|
||||
#[test]
|
||||
fn major() {
|
||||
let mut inc = Inc::new();
|
||||
inc.for_semver(SemVerAction::Major);
|
||||
assert_eq!(inc.apply("0.1.3"), string("1.0.0").value);
|
||||
=======
|
||||
use nu_protocol::{Span, Value};
|
||||
|
||||
use crate::inc::SemVerAction;
|
||||
@ -232,16 +123,10 @@ mod tests {
|
||||
let mut inc = Inc::new();
|
||||
inc.for_semver(SemVerAction::Major);
|
||||
assert_eq!(inc.apply("0.1.3", Span::test_data()), expected)
|
||||
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn minor() {
|
||||
<<<<<<< HEAD
|
||||
let mut inc = Inc::new();
|
||||
inc.for_semver(SemVerAction::Minor);
|
||||
assert_eq!(inc.apply("0.1.3"), string("0.2.0").value);
|
||||
=======
|
||||
let expected = Value::String {
|
||||
val: "0.2.0".to_string(),
|
||||
span: Span::test_data(),
|
||||
@ -249,16 +134,10 @@ mod tests {
|
||||
let mut inc = Inc::new();
|
||||
inc.for_semver(SemVerAction::Minor);
|
||||
assert_eq!(inc.apply("0.1.3", Span::test_data()), expected)
|
||||
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn patch() {
|
||||
<<<<<<< HEAD
|
||||
let mut inc = Inc::new();
|
||||
inc.for_semver(SemVerAction::Patch);
|
||||
assert_eq!(inc.apply("0.1.3"), string("0.1.4").value);
|
||||
=======
|
||||
let expected = Value::String {
|
||||
val: "0.1.4".to_string(),
|
||||
span: Span::test_data(),
|
||||
@ -266,7 +145,6 @@ mod tests {
|
||||
let mut inc = Inc::new();
|
||||
inc.for_semver(SemVerAction::Patch);
|
||||
assert_eq!(inc.apply("0.1.3", Span::test_data()), expected)
|
||||
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user