use super::{ FError, FErrorKind, FightOutcome, filters, SearchField, Weekday, }; use evtclib::statistics::gamedata::Boss; use std::collections::HashSet; use lalrpop_util::ParseError; use chrono::NaiveDateTime; use regex::Regex; grammar; extern { type Error = FError; } pub LogFilter: Box = { Disjunction, } PlayerFilter: Box = { Disjunction, } Disjunction: T = { > "or" > => a | b, Conjunction, } Conjunction: T = { > "and"? > => a & b, Negation, } Negation: T = { "not" > => ! <>, "!" > => ! <>, T, } LogPredicate: Box = { "-success" => filters::log::OutcomeFilter::success(), "-wipe" => filters::log::OutcomeFilter::wipe(), "-outcome" > => filters::log::OutcomeFilter::new(<>), "-weekday" > => filters::log::WeekdayFilter::new(<>), "-before" => filters::log::TimeFilter::new(None, Some(<>)), "-after" => filters::log::TimeFilter::new(Some(<>), None), "-boss" > => filters::log::BossFilter::new(<>), "-player" => filters::player::any( filters::player::NameFilter::new(SearchField::Character, <>.clone()) | filters::player::NameFilter::new(SearchField::Account, <>) ), "all" "(" "player" ":" ")" => filters::player::all(<>), "any" "(" "player" ":" ")" => filters::player::any(<>), "exists" "(" "player" ":" ")" => filters::player::any(<>), "(" ")", } PlayerPredicate: Box = { "-character" => filters::player::NameFilter::new(SearchField::Character, <>), "-account" => filters::player::NameFilter::new(SearchField::Account, <>), "-name" => filters::player::NameFilter::new(SearchField::Account, <>.clone()) | filters::player::NameFilter::new(SearchField::Character, <>), "(" ")", } Regex: Regex = { =>? Regex::new(&s[1..s.len() - 1]).map_err(|error| ParseError::User { error: FError { location: l, data: s.to_string(), kind: error.into(), } }), =>? Regex::new(s).map_err(|error| ParseError::User { error: FError { location: l, data: s.to_string(), kind: error.into(), } }), } FightOutcome: FightOutcome = { =>? w.parse().map_err(|_| ParseError::User { error: FError { location: l, data: w.into(), kind: FErrorKind::InvalidFightOutcome, } }), } Weekday: Weekday = { =>? w.parse().map_err(|_| ParseError::User { error: FError { location: l, data: w.into(), kind: FErrorKind::InvalidWeekday, } }), } Boss: Boss = { =>? w.parse().map_err(|_| ParseError::User { error: FError { location: l, data: w.into(), kind: FErrorKind::InvalidBoss, } }), } Date: NaiveDateTime = { =>? NaiveDateTime::parse_from_str(d, "%Y-%m-%d %H:%M:%S") .map_err(|error| ParseError::User { error: FError { location: l, data: d.into(), kind: error.into(), } }), =>? NaiveDateTime::parse_from_str(&format!("{} 00:00:00", d), "%Y-%m-%d %H:%M:%S") .map_err(|error| ParseError::User { error: FError { location: l, data: d.into(), kind: error.into(), } }), } Comma: HashSet = { ",")*> => { let mut result = v.into_iter().collect::>(); result.insert(e); result }, } match { "player" => "player", "not" => "not", "or" => "or", "and" => "and", "any" => "any", "all" => "all", "exists" => "exists", r"\d\d\d\d-\d\d-\d\d \d\d:\d\d:\d\d" => datetime, r"\d\d\d\d-\d\d-\d\d" => date, r"\w+" => word, r#""[^"]*""# => regex, _ }