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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
use nu_engine::command_prelude::*;
use nu_protocol::shell_error::io::IoError;
use std::{collections::VecDeque, io::Read};
#[cfg(feature = "sqlite")]
use crate::database::SQLiteQueryBuilder;
#[derive(Clone)]
pub struct Last;
impl Command for Last {
fn name(&self) -> &str {
"last"
}
fn signature(&self) -> Signature {
Signature::build("last")
.input_output_types(vec![
(
// TODO: This is too permissive; if we could express this
// using a type parameter it would be List<T> -> T.
Type::List(Box::new(Type::Any)),
Type::Any,
),
(Type::Binary, Type::Binary),
(Type::Range, Type::Any),
])
.optional(
"rows",
SyntaxShape::Int,
"Starting from the back, the number of rows to return.",
)
.allow_variants_without_examples(true)
.switch("strict", "Throw an error if input is empty.", Some('s'))
.category(Category::Filters)
}
fn search_terms(&self) -> Vec<&str> {
vec!["tail", "end"]
}
fn description(&self) -> &str {
"Return only the last several rows of the input. Counterpart of `first`. Opposite of `drop`."
}
fn examples(&self) -> Vec<Example<'_>> {
vec![
Example {
example: "[1,2,3] | last 2",
description: "Return the last 2 items of a list/table.",
result: Some(Value::list(
vec![Value::test_int(2), Value::test_int(3)],
Span::test_data(),
)),
},
Example {
example: "[1,2,3] | last",
description: "Return the last item of a list/table.",
result: Some(Value::test_int(3)),
},
Example {
example: "0x[01 23 45] | last 2",
description: "Return the last 2 bytes of a binary value.",
result: Some(Value::binary(vec![0x23, 0x45], Span::test_data())),
},
Example {
example: "1..3 | last",
description: "Return the last item of a range.",
result: Some(Value::test_int(3)),
},
]
}
fn run(
&self,
engine_state: &EngineState,
stack: &mut Stack,
call: &Call,
input: PipelineData,
) -> Result<PipelineData, ShellError> {
let head = call.head;
let rows: Option<Spanned<i64>> = call.opt(engine_state, stack, 0)?;
let strict_mode = call.has_flag(engine_state, stack, "strict")?;
// FIXME: Please read the FIXME message in `first.rs`'s `first_helper` implementation.
// It has the same issue.
let return_single_element = rows.is_none();
let rows = if let Some(rows) = rows {
if rows.item < 0 {
return Err(ShellError::NeedsPositiveValue { span: rows.span });
} else {
rows.item as usize
}
} else {
1
};
let mut input = input;
let metadata = input.take_metadata();
// Count is 0: return empty data immediately.
//
// The main `match` below is not safe for this case-`last` reads binary streams in chunks
// and sqlite paths may still execute. For "take nothing" we only produce an empty value:
// empty binary (and clear pipeline `content_type` for binary) or an empty list, with other
// metadata unchanged.
if rows == 0 {
return match input {
PipelineData::Value(val, _) if matches!(&val, Value::Binary { .. }) => Ok(
Value::binary(Vec::new(), val.span()).into_pipeline_data_with_metadata(
metadata.map(|m| m.with_content_type(None)),
),
),
PipelineData::ByteStream(stream, _) => {
if stream.type_().is_binary_coercible() {
let span = stream.span();
Ok(
Value::binary(Vec::new(), span).into_pipeline_data_with_metadata(
metadata.map(|m| m.with_content_type(None)),
),
)
} else {
Ok(
Value::list(Vec::new(), head)
.into_pipeline_data_with_metadata(metadata),
)
}
}
_ => Ok(Value::list(Vec::new(), head).into_pipeline_data_with_metadata(metadata)),
};
}
match input {
PipelineData::ListStream(_, _) | PipelineData::Value(Value::Range { .. }, _) => {
let iterator = input.into_iter_strict(head)?;
// only keep the last `rows` in memory
let mut buf = VecDeque::new();
for row in iterator {
engine_state.signals().check(&head)?;
if buf.len() == rows {
buf.pop_front();
}
buf.push_back(row);
}
if return_single_element {
if let Some(last) = buf.pop_back() {
Ok(last.into_pipeline_data_with_metadata(metadata))
} else if strict_mode {
Err(ShellError::AccessEmptyContent { span: head })
} else {
// There are no values, so return nothing instead of an error so
// that users can pipe this through 'default' if they want to.
Ok(Value::nothing(head).into_pipeline_data_with_metadata(metadata))
}
} else {
Ok(Value::list(buf.into(), head).into_pipeline_data_with_metadata(metadata))
}
}
PipelineData::Value(val, _) => {
let span = val.span();
match val {
Value::List { mut vals, .. } => {
if return_single_element {
if let Some(v) = vals.pop() {
Ok(v.into_pipeline_data_with_metadata(metadata))
} else if strict_mode {
Err(ShellError::AccessEmptyContent { span: head })
} else {
// There are no values, so return nothing instead of an error so
// that users can pipe this through 'default' if they want to.
Ok(Value::nothing(head).into_pipeline_data_with_metadata(metadata))
}
} else {
let i = vals.len().saturating_sub(rows);
vals.drain(..i);
Ok(Value::list(vals, span).into_pipeline_data_with_metadata(metadata))
}
}
Value::Binary { mut val, .. } => {
let binary_meta = metadata.map(|m| m.with_content_type(None));
if return_single_element {
if let Some(val) = val.pop() {
Ok(Value::int(val.into(), span)
.into_pipeline_data_with_metadata(binary_meta))
} else if strict_mode {
Err(ShellError::AccessEmptyContent { span: head })
} else {
// There are no values, so return nothing instead of an error so
// that users can pipe this through 'default' if they want to.
Ok(Value::nothing(head)
.into_pipeline_data_with_metadata(binary_meta))
}
} else {
let i = val.len().saturating_sub(rows);
val.drain(..i);
Ok(Value::binary(val, span)
.into_pipeline_data_with_metadata(binary_meta))
}
}
// Propagate errors by explicitly matching them before the final case.
Value::Error { error, .. } => Err(*error),
#[cfg(feature = "sqlite")]
// Pushdown optimization: handle 'last' on SQLiteQueryBuilder for lazy SQL execution
Value::Custom {
val: custom_val,
internal_span,
..
} => {
if let Some(table) =
custom_val.as_any().downcast_ref::<SQLiteQueryBuilder>()
{
if return_single_element {
// For single element, ORDER BY rowid DESC LIMIT 1
let new_table = table
.clone()
.with_order_by("rowid DESC".to_string())
.with_limit(1);
let result = new_table.execute(head)?;
let value = result.into_value(head)?;
if let Value::List { vals, .. } = value {
if let Some(val) = vals.into_iter().next() {
Ok(val.into_pipeline_data_with_metadata(metadata))
} else if strict_mode {
Err(ShellError::AccessEmptyContent { span: head })
} else {
// There are no values, so return nothing instead of an error so
// that users can pipe this through 'default' if they want to.
Ok(Value::nothing(head)
.into_pipeline_data_with_metadata(metadata))
}
} else {
Err(ShellError::NushellFailed {
msg: "Expected list from SQLiteQueryBuilder".into(),
})
}
} else {
// For multiple, ORDER BY rowid DESC LIMIT rows
let new_table = table
.clone()
.with_order_by("rowid DESC".to_string())
.with_limit(rows as i64);
let result = new_table.execute(head)?;
let value = result.into_value(head)?;
if let Value::List { mut vals, .. } = value {
// Reverse the results to restore original order
vals.reverse();
Ok(Value::list(vals, head)
.into_pipeline_data_with_metadata(metadata))
} else {
Ok(value.into_pipeline_data_with_metadata(metadata))
}
}
} else {
Err(ShellError::OnlySupportsThisInputType {
exp_input_type: "list, binary or range".into(),
wrong_type: custom_val.type_name(),
dst_span: head,
src_span: internal_span,
})
}
}
other => Err(ShellError::OnlySupportsThisInputType {
exp_input_type: "list, binary or range".into(),
wrong_type: other.get_type().to_string(),
dst_span: head,
src_span: other.span(),
}),
}
}
PipelineData::ByteStream(stream, ..) => {
if stream.type_().is_binary_coercible() {
let span = stream.span();
let byte_meta = metadata.map(|m| m.with_content_type(None));
if let Some(mut reader) = stream.reader() {
// Have to be a bit tricky here, but just consume into a VecDeque that we
// shrink to fit each time
const TAKE: u64 = 8192;
let mut buf = VecDeque::with_capacity(rows + TAKE as usize);
loop {
let taken = std::io::copy(&mut (&mut reader).take(TAKE), &mut buf)
.map_err(|err| IoError::new(err, span, None))?;
if buf.len() > rows {
buf.drain(..(buf.len() - rows));
}
if taken < TAKE {
// This must be EOF.
if return_single_element {
if !buf.is_empty() {
return Ok(Value::int(buf[0] as i64, head)
.into_pipeline_data_with_metadata(byte_meta));
} else if strict_mode {
return Err(ShellError::AccessEmptyContent { span: head });
} else {
// There are no values, so return nothing instead of an error so
// that users can pipe this through 'default' if they want to.
return Ok(Value::nothing(head)
.into_pipeline_data_with_metadata(byte_meta));
}
} else {
return Ok(Value::binary(buf, head)
.into_pipeline_data_with_metadata(byte_meta));
}
}
}
} else {
Ok(Value::nothing(head).into_pipeline_data_with_metadata(byte_meta))
}
} else {
Err(ShellError::OnlySupportsThisInputType {
exp_input_type: "list, binary or range".into(),
wrong_type: stream.type_().describe().into(),
dst_span: head,
src_span: stream.span(),
})
}
}
PipelineData::Empty => Err(ShellError::OnlySupportsThisInputType {
exp_input_type: "list, binary or range".into(),
wrong_type: "null".into(),
dst_span: call.head,
src_span: call.head,
}),
}
}
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn test_examples() -> nu_test_support::Result {
nu_test_support::test().examples(Last)
}
}