Refactor drop columns to fix issues (#10903)

# Description
This PR refactors `drop columns` and fixes issues #10902 and #6846.
Tables with "holes" are now handled consistently, although still
somewhat awkwardly. That is, the columns in the first row are used to
determine which columns to drop, meaning that the columns displayed all
the way to the right by `table` may not be the columns actually being
dropped. For example, `[{a: 1}, {b: 2}] | drop column` will drop column
`a` instead of `b`. Before, this would give a list of empty records.

# User-Facing Changes
`drop columns` can now take records as input.
This commit is contained in:
Ian Manske 2023-11-09 12:51:46 +00:00 committed by GitHub
parent cd75640a90
commit 33a7bc405f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 152 additions and 111 deletions

View File

@ -1,11 +1,13 @@
use nu_engine::CallExt; use nu_engine::CallExt;
use nu_protocol::ast::{Call, CellPath}; use nu_protocol::ast::Call;
use nu_protocol::engine::{Command, EngineState, Stack}; use nu_protocol::engine::{Command, EngineState, Stack};
use nu_protocol::{ use nu_protocol::{
record, Category, Example, FromValue, IntoInterruptiblePipelineData, IntoPipelineData, record, Category, Example, IntoInterruptiblePipelineData, IntoPipelineData, PipelineData,
PipelineData, Record, ShellError, Signature, Span, SyntaxShape, Type, Value, ShellError, Signature, Span, Spanned, SyntaxShape, Type, Value,
}; };
use std::collections::HashSet;
#[derive(Clone)] #[derive(Clone)]
pub struct DropColumn; pub struct DropColumn;
@ -16,7 +18,10 @@ impl Command for DropColumn {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build(self.name()) Signature::build(self.name())
.input_output_types(vec![(Type::Table(vec![]), Type::Table(vec![]))]) .input_output_types(vec![
(Type::Table(vec![]), Type::Table(vec![])),
(Type::Record(vec![]), Type::Record(vec![])),
])
.optional( .optional(
"columns", "columns",
SyntaxShape::Int, SyntaxShape::Int,
@ -41,148 +46,142 @@ impl Command for DropColumn {
input: PipelineData, input: PipelineData,
) -> Result<PipelineData, ShellError> { ) -> Result<PipelineData, ShellError> {
// the number of columns to drop // the number of columns to drop
let columns: Option<i64> = call.opt(engine_state, stack, 0)?; let columns: Option<Spanned<i64>> = call.opt(engine_state, stack, 0)?;
let span = call.head;
let columns_to_drop = if let Some(quantity) = columns { let columns = if let Some(columns) = columns {
quantity if columns.item < 0 {
return Err(ShellError::NeedsPositiveValue(columns.span));
} else {
columns.item as usize
}
} else { } else {
1 1
}; };
// Make columns to drop is positive drop_cols(engine_state, input, call.head, columns)
if columns_to_drop < 0 {
if let Some(expr) = call.positional_nth(0) {
return Err(ShellError::NeedsPositiveValue(expr.span));
}
}
dropcol(engine_state, span, input, columns_to_drop)
} }
fn examples(&self) -> Vec<Example> { fn examples(&self) -> Vec<Example> {
vec![Example { vec![
Example {
description: "Remove the last column of a table", description: "Remove the last column of a table",
example: "[[lib, extension]; [nu-lib, rs] [nu-core, rb]] | drop column", example: "[[lib, extension]; [nu-lib, rs] [nu-core, rb]] | drop column",
result: Some(Value::list( result: Some(Value::test_list(vec![
vec![ Value::test_record(record! { "lib" => Value::test_string("nu-lib") }),
Value::test_record(record!("lib" =>Value::test_string("nu-lib"))), Value::test_record(record! { "lib" => Value::test_string("nu-core") }),
Value::test_record(record!("lib" =>Value::test_string("nu-core"))), ])),
], },
Span::test_data(), Example {
description: "Remove the last column of a record",
example: "{lib: nu-lib, extension: rs} | drop column",
result: Some(Value::test_record(
record! { "lib" => Value::test_string("nu-lib") },
)), )),
}] },
]
} }
} }
fn dropcol( fn drop_cols(
engine_state: &EngineState, engine_state: &EngineState,
span: Span,
input: PipelineData, input: PipelineData,
columns: i64, // the number of columns to drop head: Span,
columns: usize,
) -> Result<PipelineData, ShellError> { ) -> Result<PipelineData, ShellError> {
let mut keep_columns = vec![]; // For simplicity and performance, we use the first row's columns
// as the columns for the whole table, and assume that later rows/records
// have these same columns. However, this can give weird results like:
// `[{a: 1}, {b: 2}] | drop column`
// This will drop the column "a" instead of "b" even though column "b"
// is displayed farther to the right.
match input { match input {
PipelineData::ListStream(stream, ..) => { PipelineData::ListStream(mut stream, ..) => {
let mut output = vec![]; if let Some(mut first) = stream.next() {
let drop_cols = drop_cols_set(&mut first, head, columns)?;
let v: Vec<_> = stream.into_iter().collect(); Ok(std::iter::once(first)
let input_cols = get_input_cols(v.clone()); .chain(stream.map(move |mut v| {
let kc = get_keep_columns(input_cols, columns); match drop_record_cols(&mut v, head, &drop_cols) {
keep_columns = get_cellpath_columns(kc, span); Ok(()) => v,
Err(e) => Value::error(e, head),
for input_val in v {
let mut record = Record::new();
for path in &keep_columns {
let fetcher = input_val.clone().follow_cell_path(&path.members, false)?;
record.push(path.into_string(), fetcher);
} }
output.push(Value::record(record, span)) }))
}
Ok(output
.into_iter()
.into_pipeline_data(engine_state.ctrlc.clone()))
}
PipelineData::Value(v, ..) => {
let val_span = v.span();
if let Value::List {
vals: input_vals, ..
} = v
{
let mut output = vec![];
let input_cols = get_input_cols(input_vals.clone());
let kc = get_keep_columns(input_cols, columns);
keep_columns = get_cellpath_columns(kc, val_span);
for input_val in input_vals {
let mut record = Record::new();
for path in &keep_columns {
let fetcher = input_val.clone().follow_cell_path(&path.members, false)?;
record.push(path.into_string(), fetcher);
}
output.push(Value::record(record, val_span))
}
Ok(output
.into_iter()
.into_pipeline_data(engine_state.ctrlc.clone())) .into_pipeline_data(engine_state.ctrlc.clone()))
} else { } else {
let mut record = Record::new(); Ok(PipelineData::Empty)
for cell_path in &keep_columns {
let result = v.clone().follow_cell_path(&cell_path.members, false)?;
record.push(cell_path.into_string(), result);
} }
}
PipelineData::Value(v, ..) => {
let span = v.span();
match v {
Value::List { mut vals, .. } => {
if let Some((first, rest)) = vals.split_first_mut() {
let drop_cols = drop_cols_set(first, head, columns)?;
for val in rest {
drop_record_cols(val, head, &drop_cols)?
}
}
Ok(Value::list(vals, span).into_pipeline_data())
}
Value::Record {
val: mut record, ..
} => {
let len = record.len().saturating_sub(columns);
record.truncate(len);
Ok(Value::record(record, span).into_pipeline_data()) Ok(Value::record(record, span).into_pipeline_data())
} }
// Propagate errors
Value::Error { error, .. } => Err(*error),
val => Err(unsupported_value_error(&val, head)),
} }
x => Ok(x), }
PipelineData::Empty => Ok(PipelineData::Empty),
PipelineData::ExternalStream { span, .. } => Err(ShellError::OnlySupportsThisInputType {
exp_input_type: "table or record".into(),
wrong_type: "raw data".into(),
dst_span: head,
src_span: span,
}),
} }
} }
fn get_input_cols(input: Vec<Value>) -> Vec<String> { fn drop_cols_set(val: &mut Value, head: Span, drop: usize) -> Result<HashSet<String>, ShellError> {
let rec = input.first(); if let Value::Record { val: record, .. } = val {
match rec { let len = record.len().saturating_sub(drop);
Some(Value::Record { val, .. }) => val.cols.to_vec(), Ok(record.drain(len..).map(|(col, _)| col).collect())
_ => vec!["".to_string()], } else {
Err(unsupported_value_error(val, head))
} }
} }
fn get_cellpath_columns(keep_cols: Vec<String>, span: Span) -> Vec<CellPath> { fn drop_record_cols(
let mut output = vec![]; val: &mut Value,
for keep_col in keep_cols { head: Span,
let val = Value::string(keep_col, span); drop_cols: &HashSet<String>,
let cell_path = match CellPath::from_value(val) { ) -> Result<(), ShellError> {
Ok(v) => v, if let Value::Record { val, .. } = val {
Err(_) => return vec![], val.retain(|col, _| !drop_cols.contains(col));
}; Ok(())
output.push(cell_path); } else {
Err(unsupported_value_error(val, head))
} }
output
} }
fn get_keep_columns(input: Vec<String>, mut num_of_columns_to_drop: i64) -> Vec<String> { fn unsupported_value_error(val: &Value, head: Span) -> ShellError {
let vlen: i64 = input.len() as i64; ShellError::OnlySupportsThisInputType {
exp_input_type: "table or record".into(),
if num_of_columns_to_drop > vlen { wrong_type: val.get_type().to_string(),
num_of_columns_to_drop = vlen; dst_span: head,
src_span: val.span(),
} }
let num_of_columns_to_keep = (vlen - num_of_columns_to_drop) as usize;
input[0..num_of_columns_to_keep].to_vec()
} }
#[cfg(test)] #[cfg(test)]
mod test { mod test {
use super::*;
#[test] #[test]
fn test_examples() { fn test_examples() {
use super::DropColumn; crate::test_examples(DropColumn)
use crate::test_examples;
test_examples(DropColumn {})
} }
} }

View File

@ -93,3 +93,45 @@ fn fail_on_non_iterator() {
assert!(actual.err.contains("command doesn't support")); assert!(actual.err.contains("command doesn't support"));
} }
#[test]
fn disjoint_columns_first_row_becomes_empty() {
let actual = nu!(pipeline(
"
[{a: 1}, {b: 2, c: 3}]
| drop column
| columns
| to nuon
"
));
assert_eq!(actual.out, "[b, c]");
}
#[test]
fn disjoint_columns() {
let actual = nu!(pipeline(
"
[{a: 1, b: 2}, {c: 3}]
| drop column
| columns
| to nuon
"
));
assert_eq!(actual.out, "[a, c]");
}
#[test]
fn record() {
let actual = nu!("{a: 1, b: 2} | drop column | to nuon");
assert_eq!(actual.out, "{a: 1}");
}
#[test]
fn more_columns_than_record_has() {
let actual = nu!("{a: 1, b: 2} | drop column 3 | to nuon");
assert_eq!(actual.out, "{}");
}