108 lines
2.5 KiB
Rust
108 lines
2.5 KiB
Rust
use crate::sql::comment::shouldbespace;
|
|
use crate::sql::common::commas;
|
|
use crate::sql::error::IResult;
|
|
use crate::sql::idiom::{basic, Idiom};
|
|
use nom::bytes::complete::tag_no_case;
|
|
use nom::combinator::opt;
|
|
use nom::multi::separated_list1;
|
|
use nom::sequence::tuple;
|
|
use serde::{Deserialize, Serialize};
|
|
use std::fmt;
|
|
use std::ops::Deref;
|
|
|
|
#[derive(Clone, Debug, Default, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
|
pub struct Groups(pub Vec<Group>);
|
|
|
|
impl Deref for Groups {
|
|
type Target = Vec<Group>;
|
|
fn deref(&self) -> &Self::Target {
|
|
&self.0
|
|
}
|
|
}
|
|
|
|
impl IntoIterator for Groups {
|
|
type Item = Group;
|
|
type IntoIter = std::vec::IntoIter<Self::Item>;
|
|
fn into_iter(self) -> Self::IntoIter {
|
|
self.0.into_iter()
|
|
}
|
|
}
|
|
|
|
impl fmt::Display for Groups {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
write!(
|
|
f,
|
|
"GROUP BY {}",
|
|
self.0.iter().map(|ref v| format!("{}", v)).collect::<Vec<_>>().join(", ")
|
|
)
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Debug, Default, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
|
pub struct Group(pub Idiom);
|
|
|
|
impl Deref for Group {
|
|
type Target = Idiom;
|
|
fn deref(&self) -> &Self::Target {
|
|
&self.0
|
|
}
|
|
}
|
|
|
|
impl fmt::Display for Group {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
write!(f, "{}", self.0)
|
|
}
|
|
}
|
|
|
|
pub fn group(i: &str) -> IResult<&str, Groups> {
|
|
let (i, _) = tag_no_case("GROUP")(i)?;
|
|
let (i, _) = opt(tuple((shouldbespace, tag_no_case("BY"))))(i)?;
|
|
let (i, _) = shouldbespace(i)?;
|
|
let (i, v) = separated_list1(commas, group_raw)(i)?;
|
|
Ok((i, Groups(v)))
|
|
}
|
|
|
|
fn group_raw(i: &str) -> IResult<&str, Group> {
|
|
let (i, v) = basic(i)?;
|
|
Ok((i, Group(v)))
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
|
|
use super::*;
|
|
use crate::sql::test::Parse;
|
|
|
|
#[test]
|
|
fn group_statement() {
|
|
let sql = "GROUP field";
|
|
let res = group(sql);
|
|
assert!(res.is_ok());
|
|
let out = res.unwrap().1;
|
|
assert_eq!(out, Groups(vec![Group(Idiom::parse("field"))]));
|
|
assert_eq!("GROUP BY field", format!("{}", out));
|
|
}
|
|
|
|
#[test]
|
|
fn group_statement_by() {
|
|
let sql = "GROUP BY field";
|
|
let res = group(sql);
|
|
assert!(res.is_ok());
|
|
let out = res.unwrap().1;
|
|
assert_eq!(out, Groups(vec![Group(Idiom::parse("field"))]));
|
|
assert_eq!("GROUP BY field", format!("{}", out));
|
|
}
|
|
|
|
#[test]
|
|
fn group_statement_multiple() {
|
|
let sql = "GROUP field, other.field";
|
|
let res = group(sql);
|
|
assert!(res.is_ok());
|
|
let out = res.unwrap().1;
|
|
assert_eq!(
|
|
out,
|
|
Groups(vec![Group(Idiom::parse("field")), Group(Idiom::parse("other.field"))])
|
|
);
|
|
assert_eq!("GROUP BY field, other.field", format!("{}", out));
|
|
}
|
|
}
|