surrealpatch/lib/src/sql/timeout.rs

47 lines
1 KiB
Rust
Raw Normal View History

2020-06-29 15:36:01 +00:00
use crate::sql::comment::shouldbespace;
use crate::sql::duration::{duration, Duration};
2022-01-16 20:31:50 +00:00
use crate::sql::error::IResult;
2020-06-29 15:36:01 +00:00
use nom::bytes::complete::tag_no_case;
use serde::{Deserialize, Serialize};
use std::fmt;
use std::ops::Deref;
2020-06-29 15:36:01 +00:00
#[derive(Clone, Debug, Default, Eq, PartialEq, PartialOrd, Serialize, Deserialize, Hash)]
pub struct Timeout(pub Duration);
impl Deref for Timeout {
type Target = Duration;
fn deref(&self) -> &Self::Target {
&self.0
}
2020-06-29 15:36:01 +00:00
}
impl fmt::Display for Timeout {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "TIMEOUT {}", self.0)
2020-06-29 15:36:01 +00:00
}
}
pub fn timeout(i: &str) -> IResult<&str, Timeout> {
let (i, _) = tag_no_case("TIMEOUT")(i)?;
let (i, _) = shouldbespace(i)?;
let (i, v) = duration(i)?;
Ok((i, Timeout(v)))
2020-06-29 15:36:01 +00:00
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn timeout_statement() {
let sql = "TIMEOUT 5s";
let res = timeout(sql);
assert!(res.is_ok());
let out = res.unwrap().1;
assert_eq!("TIMEOUT 5s", format!("{}", out));
assert_eq!(out, Timeout(Duration::try_from("5s").unwrap()));
2020-06-29 15:36:01 +00:00
}
}