use core::fmt; use nom::{ IResult, branch::alt, bytes::complete::{tag, take_while1}, character::{is_digit, complete::char}, combinator::{map, value}, sequence::{preceded, tuple, Tuple}, multi::fold_many1, error::ErrorKind, }; use btoi::{btoi, ParseIntegerError}; use super::session::ReportMode; #[derive(Clone, Debug)] pub enum Error { Parser(ErrorKind), Incomplete, UnexpectedInput(u8), ParseInteger(ParseIntegerError) } impl<'t> From> for Error { fn from(e: nom::Err<(&'t [u8], ErrorKind)>) -> Self { match e { nom::Err::Incomplete(_) => Error::Incomplete, nom::Err::Error((_, e)) => Error::Parser(e), nom::Err::Failure((_, e)) => Error::Parser(e), } } } impl From for Error { fn from(e: ParseIntegerError) -> Self { Error::ParseInteger(e) } } impl fmt::Display for Error { fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> { match self { Error::Incomplete => "incomplete input".fmt(fmt), Error::UnexpectedInput(c) => { "unexpected input: ".fmt(fmt)?; c.fmt(fmt) } Error::Parser(e) => { "parser: ".fmt(fmt)?; (e as &dyn core::fmt::Debug).fmt(fmt) } Error::ParseInteger(e) => { "parsing number: ".fmt(fmt)?; e.fmt(fmt) } } } } #[derive(Debug, Clone)] pub enum ShowCommand { ReportMode, Pid, } #[derive(Debug, Clone)] pub enum PidParameter { Target(f32), KP(f32), KI(f32), KD(f32), OutputMin(f32), OutputMax(f32), IntegralMin(f32), IntegralMax(f32), } #[derive(Debug, Clone)] pub enum Command { Quit, Show(ShowCommand), Report(ReportMode), Pwm { width: u32, total: u32, }, Pid(PidParameter), } fn whitespace(input: &[u8]) -> IResult<&[u8], ()> { fold_many1(char(' '), (), |(), _| ())(input) } fn unsigned(input: &[u8]) -> IResult<&[u8], Result> { take_while1(is_digit)(input) .map(|(input, digits)| (input, btoi(digits))) } fn report_mode(input: &[u8]) -> IResult<&[u8], ReportMode> { alt((value(ReportMode::Off, tag("off")), value(ReportMode::Once, tag("once")), value(ReportMode::Continuous, tag("continuous")) ))(input) } fn report(input: &[u8]) -> IResult<&[u8], Command> { preceded( preceded( tag("report"), whitespace ), alt(( preceded( whitespace, preceded( tag("mode"), alt(( preceded( whitespace, map(report_mode, |mode| Command::Report(mode)) ), |input| Ok((input, Command::Show(ShowCommand::ReportMode))) )) )), |input| Ok((input, Command::Report(ReportMode::Once))) )) )(input) } fn pwm(input: &[u8]) -> IResult<&[u8], Result> { let (input, _) = tag("pwm")(input)?; let (input, _) = whitespace(input)?; let (input, width) = unsigned(input)?; let width = match width { Ok(width) => width, Err(e) => return Ok((input, Err(e.into()))), }; let (input, _) = whitespace(input)?; let (input, total) = unsigned(input)?; let total = match total { Ok(total) => total, Err(e) => return Ok((input, Err(e.into()))), }; Ok((input, Ok(Command::Pwm { width, total }))) } fn pid_parameter(input: &[u8]) -> IResult<&[u8], Result> { let (input, parameter_f) = alt((value(PidParameter::KP, tag("kp")), value(PidParameter::KP, tag("ki")) ))(input)?; let (input, _) = whitespace(input)?; // TODO: parse float let (input, value) = unsigned(input)?; let value = value.map(|value| parameter_f(value as f32)) .map_err(|e| e.into()); Ok((input, value)) } fn pid(input: &[u8]) -> IResult<&[u8], Result> { let (input, _) = tag("pid")(input)?; let (input, _) = whitespace(input)?; alt(( preceded( whitespace, |input| pid_parameter(input) .map(|(input, parameter)| { (input, parameter.map(Command::Pid)) }) ), |input| Ok((input, Ok(Command::Show(ShowCommand::Pid)))) ))(input) } fn command(input: &[u8]) -> IResult<&[u8], Result> { alt((value(Ok(Command::Quit), tag("quit")), |input| report(input).map(|(input, command)| { (input, Ok(command)) }), pwm, pid, ))(input) } impl Command { pub fn parse(input: &[u8]) -> Result { match command(input) { Ok((b"", result)) => result, Ok((input_remain, _)) => Err(Error::UnexpectedInput(input_remain[0])), Err(e) => Err(e.into()), } } }