1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
use crate::prelude::*; use nu_engine::run_block; use nu_engine::WholeStreamCommand; use nu_errors::ShellError; use nu_protocol::hir::ExternalRedirection; use nu_protocol::{ ColumnPath, Primitive, ReturnSuccess, Signature, SyntaxShape, UntaggedValue, Value, }; use nu_source::HasFallibleSpan; use nu_value_ext::ValueExt; pub struct Command; impl WholeStreamCommand for Command { fn name(&self) -> &str { "update" } fn signature(&self) -> Signature { Signature::build("update") .required( "field", SyntaxShape::ColumnPath, "the name of the column to update", ) .required( "replacement value", SyntaxShape::Any, "the new value to give the cell(s)", ) } fn usage(&self) -> &str { "Update an existing column to have a new value." } fn run_with_actions(&self, args: CommandArgs) -> Result<ActionStream, ShellError> { update(args) } fn examples(&self) -> Vec<Example> { vec![Example { description: "Update a column value", example: "echo [[name, stars]; ['nu', 5]] | update name 'Nushell'", result: Some(vec![UntaggedValue::row(indexmap! { "name".to_string() => Value::from("Nushell"), "stars".to_string() => UntaggedValue::int(5).into(), }) .into()]), },Example { description: "Use in block form for more involved updating logic", example: "echo [[project, authors]; ['nu', ['Andrés', 'Jonathan', 'Yehuda']]] | update authors { get authors | str collect ',' }", result: Some(vec![UntaggedValue::row(indexmap! { "project".to_string() => Value::from("nu"), "authors".to_string() => Value::from("Andrés,Jonathan,Yehuda"), }) .into()]), }] } } fn process_row( context: Arc<EvaluationContext>, input: Value, mut replacement: Arc<Value>, field: Arc<ColumnPath>, tag: Arc<Tag>, ) -> Result<ActionStream, ShellError> { let tag = &*tag; let replacement = Arc::make_mut(&mut replacement); Ok(match replacement { Value { value: UntaggedValue::Block(captured_block), tag: block_tag, } => { let for_block = input.clone(); let input_stream = vec![Ok(for_block)].into_iter().into_input_stream(); context.scope.enter_scope(); if let Some((arg, _)) = captured_block.block.params.positional.first() { context.scope.add_var(arg.name(), input.clone()); } context.scope.add_vars(&captured_block.captured.entries); let result = run_block( &captured_block.block, &*context, input_stream, ExternalRedirection::Stdout, ); context.scope.exit_scope(); match result { Ok(mut stream) => { let values = stream.drain_vec(); let errors = context.get_errors(); if let Some(error) = errors.first() { return Err(error.clone()); } let result = if values.len() == 1 { let value = values .get(0) .ok_or_else(|| ShellError::unexpected("No value to update with."))?; Value { value: value.value.clone(), tag: input.tag.clone(), } } else if values.is_empty() { UntaggedValue::nothing().into_value(&input.tag) } else { UntaggedValue::table(&values).into_value(&input.tag) }; match input { obj @ Value { value: UntaggedValue::Row(_), .. } => match obj.replace_data_at_column_path(&field, result) { Some(v) => ActionStream::one(ReturnSuccess::value(v)), None => ActionStream::one(Err(ShellError::labeled_error( "update could not find place to insert column", "column name", obj.tag, ))), }, _ => ActionStream::one(Err(ShellError::labeled_error( "Unrecognized type in stream", "original value", block_tag.clone(), ))), } } Err(e) => ActionStream::one(Err(e)), } } replacement => match input { Value { value: UntaggedValue::Primitive(Primitive::Nothing), .. } => match context .scope .get_var("$it") .unwrap_or_else(|| UntaggedValue::nothing().into_untagged_value()) .replace_data_at_column_path(&field, replacement.clone()) { Some(v) => ActionStream::one(ReturnSuccess::value(v)), None => ActionStream::one(Err(ShellError::labeled_error( "update could not find place to insert column", "column name", field.maybe_span().unwrap_or(tag.span), ))), }, Value { value: _, ref tag } => { match input.replace_data_at_column_path(&field, replacement.clone()) { Some(v) => ActionStream::one(ReturnSuccess::value(v)), None => ActionStream::one(Err(ShellError::labeled_error( "update could not find place to insert column", "column name", field.maybe_span().unwrap_or(tag.span), ))), } } }, }) } fn update(args: CommandArgs) -> Result<ActionStream, ShellError> { let name_tag = Arc::new(args.call_info.name_tag.clone()); let context = Arc::new(args.context.clone()); let field: ColumnPath = args.req(0)?; let replacement: Value = args.req(1)?; let input = args.input; let replacement = Arc::new(replacement); let field = Arc::new(field); Ok(input .map(move |input| { let tag = name_tag.clone(); let context = context.clone(); let replacement = replacement.clone(); let field = field.clone(); match process_row(context, input, replacement, field, tag) { Ok(s) => s, Err(e) => ActionStream::one(Err(e)), } }) .flatten() .into_action_stream()) }