2019-10-30 07:54:06 +01:00
|
|
|
use crate::commands::WholeStreamCommand;
|
|
|
|
use crate::errors::ShellError;
|
|
|
|
use crate::parser::CommandRegistry;
|
|
|
|
use crate::prelude::*;
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
struct AppendArgs {
|
2019-11-21 15:33:14 +01:00
|
|
|
row: Value,
|
2019-10-30 07:54:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Append;
|
|
|
|
|
|
|
|
impl WholeStreamCommand for Append {
|
|
|
|
fn name(&self) -> &str {
|
|
|
|
"append"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
|
|
|
Signature::build("append").required(
|
|
|
|
"row value",
|
|
|
|
SyntaxShape::Any,
|
|
|
|
"the value of the row to append to the table",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn usage(&self) -> &str {
|
|
|
|
"Append the given row to the table"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run(
|
|
|
|
&self,
|
|
|
|
args: CommandArgs,
|
|
|
|
registry: &CommandRegistry,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
|
|
|
args.process(registry, append)?.run()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn append(
|
|
|
|
AppendArgs { row }: AppendArgs,
|
|
|
|
RunnableContext { input, .. }: RunnableContext,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
2019-11-21 15:33:14 +01:00
|
|
|
let mut after: VecDeque<Value> = VecDeque::new();
|
2019-10-30 07:54:06 +01:00
|
|
|
after.push_back(row);
|
|
|
|
|
2019-10-30 08:04:39 +01:00
|
|
|
Ok(OutputStream::from_input(input.values.chain(after)))
|
2019-10-30 07:54:06 +01:00
|
|
|
}
|