mirror of
https://github.com/nushell/nushell.git
synced 2025-04-15 00:38:19 +02:00
* update sql-parser crate and all the files it touches * undo adding extra as a default feature
183 lines
5.7 KiB
Rust
183 lines
5.7 KiB
Rust
use crate::database::values::dsl::ExprDb;
|
|
|
|
use super::super::SQLiteDatabase;
|
|
use nu_engine::CallExt;
|
|
use nu_protocol::{
|
|
ast::Call,
|
|
engine::{Command, EngineState, Stack},
|
|
Category, Example, IntoPipelineData, PipelineData, ShellError, Signature, Span, SyntaxShape,
|
|
Type, Value,
|
|
};
|
|
use sqlparser::ast::{BinaryOperator, Expr, Query, Select, SetExpr, Statement};
|
|
|
|
#[derive(Clone)]
|
|
pub struct OrDb;
|
|
|
|
impl Command for OrDb {
|
|
fn name(&self) -> &str {
|
|
"or"
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Includes an OR clause for a query"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build(self.name())
|
|
.required("where", SyntaxShape::Any, "Where expression on the table")
|
|
.input_type(Type::Custom("database".into()))
|
|
.output_type(Type::Custom("database".into()))
|
|
.category(Category::Custom("database".into()))
|
|
}
|
|
|
|
fn search_terms(&self) -> Vec<&str> {
|
|
vec!["database", "where"]
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![
|
|
Example {
|
|
description: "selects a column from a database with an OR clause",
|
|
example: r#"open db.sqlite
|
|
| from table table_1
|
|
| select a
|
|
| where ((field a) > 1)
|
|
| or ((field b) == 1)
|
|
| describe"#,
|
|
result: Some(Value::Record {
|
|
cols: vec!["connection".into(), "query".into()],
|
|
vals: vec![
|
|
Value::String {
|
|
val: "db.sqlite".into(),
|
|
span: Span::test_data(),
|
|
},
|
|
Value::String {
|
|
val: "SELECT a FROM table_1 WHERE a > 1 OR b = 1".into(),
|
|
span: Span::test_data(),
|
|
},
|
|
],
|
|
span: Span::test_data(),
|
|
}),
|
|
},
|
|
Example {
|
|
description: "Creates an OR clause in the column names and a column",
|
|
example: r#"open db.sqlite
|
|
| from table table_1
|
|
| select a
|
|
| where ((field a) > 1 | or ((field a) < 10))
|
|
| or ((field b) == 1)
|
|
| describe"#,
|
|
result: Some(Value::Record {
|
|
cols: vec!["connection".into(), "query".into()],
|
|
vals: vec![
|
|
Value::String {
|
|
val: "db.sqlite".into(),
|
|
span: Span::test_data(),
|
|
},
|
|
Value::String {
|
|
val: "SELECT a FROM table_1 WHERE (a > 1 OR a < 10) OR b = 1".into(),
|
|
span: Span::test_data(),
|
|
},
|
|
],
|
|
span: Span::test_data(),
|
|
}),
|
|
},
|
|
]
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
call: &Call,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let value: Value = call.req(engine_state, stack, 0)?;
|
|
let expr = ExprDb::try_from_value(&value)?.into_native();
|
|
|
|
let mut db = SQLiteDatabase::try_from_pipeline(input, call.head)?;
|
|
match db.statement {
|
|
Some(ref mut statement) => match statement {
|
|
Statement::Query(query) => modify_query(query, expr, call.head)?,
|
|
s => {
|
|
return Err(ShellError::GenericError(
|
|
"Connection doesnt define a query".into(),
|
|
format!("Expected a connection with query. Got {}", s),
|
|
Some(call.head),
|
|
None,
|
|
Vec::new(),
|
|
))
|
|
}
|
|
},
|
|
None => {
|
|
return Err(ShellError::GenericError(
|
|
"Connection without statement".into(),
|
|
"The connection needs a statement defined".into(),
|
|
Some(call.head),
|
|
None,
|
|
Vec::new(),
|
|
))
|
|
}
|
|
};
|
|
|
|
Ok(db.into_value(call.head).into_pipeline_data())
|
|
}
|
|
}
|
|
|
|
fn modify_query(query: &mut Box<Query>, expression: Expr, span: Span) -> Result<(), ShellError> {
|
|
match *query.body {
|
|
SetExpr::Select(ref mut select) => modify_select(select, expression, span)?,
|
|
_ => {
|
|
return Err(ShellError::GenericError(
|
|
"Query without a select".into(),
|
|
"Missing a WHERE clause before an OR clause".into(),
|
|
Some(span),
|
|
None,
|
|
Vec::new(),
|
|
))
|
|
}
|
|
};
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn modify_select(select: &mut Box<Select>, expression: Expr, span: Span) -> Result<(), ShellError> {
|
|
let new_expression = match &select.selection {
|
|
Some(expr) => Ok(Expr::BinaryOp {
|
|
left: Box::new(expr.clone()),
|
|
op: BinaryOperator::Or,
|
|
right: Box::new(expression),
|
|
}),
|
|
None => Err(ShellError::GenericError(
|
|
"Query without a select".into(),
|
|
"Missing a WHERE clause before an OR clause".into(),
|
|
Some(span),
|
|
None,
|
|
Vec::new(),
|
|
)),
|
|
}?;
|
|
|
|
select.as_mut().selection = Some(new_expression);
|
|
Ok(())
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test {
|
|
use super::super::super::expressions::{FieldExpr, OrExpr};
|
|
use super::super::{FromDb, ProjectionDb, WhereDb};
|
|
use super::*;
|
|
use crate::database::test_database::test_database;
|
|
|
|
#[test]
|
|
fn test_examples() {
|
|
test_database(vec![
|
|
Box::new(OrDb {}),
|
|
Box::new(ProjectionDb {}),
|
|
Box::new(FromDb {}),
|
|
Box::new(WhereDb {}),
|
|
Box::new(FieldExpr {}),
|
|
Box::new(OrExpr {}),
|
|
])
|
|
}
|
|
}
|