123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280 |
- use crate::error::Error;
- use crate::ignore_block::IgnoreBlocks;
- use crate::token::{Token, Tokenizer};
- pub mod assign;
- pub mod close;
- pub mod glacier;
- pub mod nominate;
- pub mod note;
- pub mod ping;
- pub mod prioritize;
- pub mod relabel;
- pub mod second;
- pub mod shortcut;
- pub fn find_command_start(input: &str, bot: &str) -> Option<usize> {
- input.to_ascii_lowercase().find(&format!("@{}", bot))
- }
- #[derive(Debug, PartialEq)]
- pub enum Command<'a> {
- Relabel(Result<relabel::RelabelCommand, Error<'a>>),
- Assign(Result<assign::AssignCommand, Error<'a>>),
- Ping(Result<ping::PingCommand, Error<'a>>),
- Nominate(Result<nominate::NominateCommand, Error<'a>>),
- Prioritize(Result<prioritize::PrioritizeCommand, Error<'a>>),
- Second(Result<second::SecondCommand, Error<'a>>),
- Glacier(Result<glacier::GlacierCommand, Error<'a>>),
- Shortcut(Result<shortcut::ShortcutCommand, Error<'a>>),
- Close(Result<close::CloseCommand, Error<'a>>),
- Note(Result<note::NoteCommand, Error<'a>>),
- }
- #[derive(Debug)]
- pub struct Input<'a> {
- all: &'a str,
- parsed: usize,
- ignore: IgnoreBlocks,
- // A list of possible bot names.
- bot: Vec<&'a str>,
- }
- fn parse_single_command<'a, T, F, M>(
- parse: F,
- mapper: M,
- tokenizer: &Tokenizer<'a>,
- ) -> Option<(Tokenizer<'a>, Command<'a>)>
- where
- F: FnOnce(&mut Tokenizer<'a>) -> Result<Option<T>, Error<'a>>,
- M: FnOnce(Result<T, Error<'a>>) -> Command<'a>,
- T: std::fmt::Debug,
- {
- let mut tok = tokenizer.clone();
- let res = parse(&mut tok);
- log::info!("parsed {:?} command: {:?}", std::any::type_name::<T>(), res);
- match res {
- Ok(None) => None,
- Ok(Some(v)) => Some((tok, mapper(Ok(v)))),
- Err(err) => Some((tok, mapper(Err(err)))),
- }
- }
- impl<'a> Input<'a> {
- pub fn new(input: &'a str, bot: Vec<&'a str>) -> Input<'a> {
- Input {
- all: input,
- parsed: 0,
- ignore: IgnoreBlocks::new(input),
- bot,
- }
- }
- fn parse_command(&mut self) -> Option<Command<'a>> {
- let mut tok = Tokenizer::new(&self.all[self.parsed..]);
- let name_length = if let Ok(Some(Token::Word(bot_name))) = tok.next_token() {
- assert!(self
- .bot
- .iter()
- .any(|name| bot_name.eq_ignore_ascii_case(&format!("@{}", name))));
- bot_name.len()
- } else {
- panic!("no bot name?")
- };
- log::info!("identified potential command");
- let mut success = vec![];
- let original_tokenizer = tok.clone();
- success.extend(parse_single_command(
- relabel::RelabelCommand::parse,
- Command::Relabel,
- &original_tokenizer,
- ));
- success.extend(parse_single_command(
- assign::AssignCommand::parse,
- Command::Assign,
- &original_tokenizer,
- ));
- success.extend(parse_single_command(
- note::NoteCommand::parse,
- Command::Note,
- &original_tokenizer,
- ));
- success.extend(parse_single_command(
- ping::PingCommand::parse,
- Command::Ping,
- &original_tokenizer,
- ));
- success.extend(parse_single_command(
- nominate::NominateCommand::parse,
- Command::Nominate,
- &original_tokenizer,
- ));
- success.extend(parse_single_command(
- prioritize::PrioritizeCommand::parse,
- Command::Prioritize,
- &original_tokenizer,
- ));
- success.extend(parse_single_command(
- second::SecondCommand::parse,
- Command::Second,
- &original_tokenizer,
- ));
- success.extend(parse_single_command(
- glacier::GlacierCommand::parse,
- Command::Glacier,
- &original_tokenizer,
- ));
- success.extend(parse_single_command(
- shortcut::ShortcutCommand::parse,
- Command::Shortcut,
- &original_tokenizer,
- ));
- success.extend(parse_single_command(
- close::CloseCommand::parse,
- Command::Close,
- &original_tokenizer,
- ));
- if success.len() > 1 {
- panic!(
- "succeeded parsing {:?} to multiple commands: {:?}",
- &self.all[self.parsed..],
- success
- );
- }
- if self
- .ignore
- .overlaps_ignore((self.parsed)..(self.parsed + tok.position()))
- .is_some()
- {
- log::info!("command overlaps ignored block; ignore: {:?}", self.ignore);
- return None;
- }
- let (mut tok, c) = success.pop()?;
- // if we errored out while parsing the command do not move the input forwards
- self.parsed += if c.is_ok() {
- tok.position()
- } else {
- name_length
- };
- Some(c)
- }
- }
- impl<'a> Iterator for Input<'a> {
- type Item = Command<'a>;
- fn next(&mut self) -> Option<Command<'a>> {
- loop {
- let start = self
- .bot
- .iter()
- .filter_map(|name| find_command_start(&self.all[self.parsed..], name))
- .min()?;
- self.parsed += start;
- if let Some(command) = self.parse_command() {
- return Some(command);
- }
- self.parsed += self.bot.len() + 1;
- }
- }
- }
- impl<'a> Command<'a> {
- pub fn is_ok(&self) -> bool {
- match self {
- Command::Relabel(r) => r.is_ok(),
- Command::Assign(r) => r.is_ok(),
- Command::Ping(r) => r.is_ok(),
- Command::Nominate(r) => r.is_ok(),
- Command::Prioritize(r) => r.is_ok(),
- Command::Second(r) => r.is_ok(),
- Command::Glacier(r) => r.is_ok(),
- Command::Shortcut(r) => r.is_ok(),
- Command::Close(r) => r.is_ok(),
- Command::Note(r) => r.is_ok(),
- }
- }
- pub fn is_err(&self) -> bool {
- !self.is_ok()
- }
- }
- #[test]
- fn errors_outside_command_are_fine() {
- let input =
- "haha\" unterminated quotes @bot modify labels: +bug. Terminating after the command";
- let mut input = Input::new(input, vec!["bot"]);
- assert!(input.next().unwrap().is_ok());
- }
- #[test]
- fn code_1() {
- let input = "`@bot modify labels: +bug.`";
- let mut input = Input::new(input, vec!["bot"]);
- assert!(input.next().is_none());
- }
- #[test]
- fn code_2() {
- let input = "```
- @bot modify labels: +bug.
- ```";
- let mut input = Input::new(input, vec!["bot"]);
- assert!(input.next().is_none());
- }
- #[test]
- fn edit_1() {
- let input_old = "@bot modify labels: +bug.";
- let mut input_old = Input::new(input_old, vec!["bot"]);
- let input_new = "Adding labels: @bot modify labels: +bug. some other text";
- let mut input_new = Input::new(input_new, vec!["bot"]);
- assert_eq!(input_old.next(), input_new.next());
- }
- #[test]
- fn edit_2() {
- let input_old = "@bot modify label: +bug.";
- let mut input_old = Input::new(input_old, vec!["bot"]);
- let input_new = "@bot modify labels: +bug.";
- let mut input_new = Input::new(input_new, vec!["bot"]);
- assert_ne!(input_old.next(), input_new.next());
- }
- #[test]
- fn move_input_along() {
- let input = "@bot modify labels: +bug. Afterwards, delete the world.";
- let mut input = Input::new(input, vec!["bot"]);
- assert!(input.next().unwrap().is_ok());
- assert_eq!(&input.all[input.parsed..], " Afterwards, delete the world.");
- }
- #[test]
- fn move_input_along_1() {
- let input = "@bot modify labels\": +bug. Afterwards, delete the world.";
- let mut input = Input::new(input, vec!["bot"]);
- assert!(input.next().unwrap().is_err());
- // don't move input along if parsing the command fails
- assert_eq!(&input.all[..input.parsed], "@bot");
- }
- #[test]
- fn multiname() {
- let input = "@rustbot modify labels: +bug. Afterwards, delete the world. @triagebot prioritize";
- let mut input = Input::new(input, vec!["triagebot", "rustbot"]);
- assert!(dbg!(input.next().unwrap()).is_ok());
- assert_eq!(
- &input.all[input.parsed..],
- " Afterwards, delete the world. @triagebot prioritize"
- );
- assert!(input.next().unwrap().is_ok());
- assert!(input.next().is_none());
- }
|