// Copyright (c) 2021 Soni L. // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. // Documentation and comments licensed under CC BY-SA 4.0. //! Argument processing. use ::std::any::Any; use ::std::borrow::Cow; use ::std::future::Future; use ::std::io::Cursor; use ::std::marker::PhantomData; use ::std::num::ParseFloatError; use ::std::num::ParseIntError; use ::std::ops::RangeBounds; use ::std::pin::Pin; use ::std::str::FromStr; use crate::error::RangeError; use crate::error::ReadError; use crate::strcursor::StringReader; use crate::suggestion::Suggestions; use crate::suggestion::SuggestionsBuilder; // FIXME delete when implemented /// The parsing context of a command. pub struct CommandContext<'i, S, E>(::std::marker::PhantomData<(&'i str, S, E)>); /// An argument parser/validator. /// /// Note: Iosonism requires arguments to be `Send + Sync`, but for ease when /// implementing generic argument types, those bounds are not reflected in this /// trait. Nevertheless, Iosonism doesn't itself use threads, so a [workaround] /// can be used if one needs non-`Send + Sync` argument types. /// /// [workaround]: https://users.rust-lang.org/t/how-to-check-send-at-runtime-similar-to-how-refcell-checks-borrowing-at-runtime/68269 /// /// # Type params /// /// - `S`: The source type accepted by this argument type. /// - `E`: The error type accepted by this argument type. /// /// # Examples /// /// A very basic `bool` argument type: /// /// ``` /// use ::std::io::Cursor; /// /// use ::iosonism::args::ArgumentType; /// use ::iosonism::error::ReadError; /// use ::iosonism::strcursor::StringReader; /// /// struct BoolArgumentType; /// /// impl ArgumentType for BoolArgumentType /// where for<'i> E: ReadError<'i, Cursor<&'i str>> /// { /// type Result = bool; /// fn parse<'i>( /// &self, /// reader: &mut Cursor<&'i str>, /// ) -> Result where E: 'i { /// reader.read_bool() /// } /// } /// ``` pub trait ArgumentType { /// The parsed type of the argument. type Result: Sized + 'static + Any; /// Parses an argument of this type, returning the parsed argument. fn parse<'i>( &self, reader: &mut Cursor<&'i str>, ) -> Result where E: 'i; /// Creates suggestions for this argument. fn list_suggestions<'i>( &self, context: &CommandContext<'i, S, E>, builder: SuggestionsBuilder<'i>, ) -> Pin + Send + 'i>> { let _ = context; let _ = builder; Suggestions::empty() } /// Returns examples for this argument. fn get_examples(&self) -> Cow<'static, [&str]> { Cow::Borrowed(&[]) } } /// Wrapper around `ArgumentType`, but with `Any`. pub(crate) trait ArgumentTypeAny: Send + Sync { /// Parses an argument of this type, returning the parsed argument. fn parse<'i>( &self, reader: &mut Cursor<&'i str>, ) -> Result, E> where E: 'i; /// Creates suggestions for this argument. fn list_suggestions<'i>( &self, context: &CommandContext<'i, S, E>, builder: SuggestionsBuilder<'i>, ) -> Pin + Send + 'i>>; /// Returns examples for this argument. fn get_examples(&self) -> Cow<'static, [&str]>; } impl + Send + Sync, S, E> ArgumentTypeAny for T { fn parse<'i>( &self, reader: &mut Cursor<&'i str>, ) -> Result, E> where E: 'i { self.parse(reader).map(|x| Box::new(x) as _) } fn list_suggestions<'i>( &self, context: &CommandContext<'i, S, E>, builder: SuggestionsBuilder<'i>, ) -> Pin + Send + 'i>> { self.list_suggestions(context, builder) } fn get_examples(&self) -> Cow<'static, [&str]> { self.get_examples() } } /// A boolean argument. // FIXME add examples/expand docs #[derive(Copy, Clone, PartialEq, Eq, Debug, PartialOrd, Ord, Hash, Default)] pub struct BoolArgumentType; /// An `ArgumentType` for `bool`. impl ArgumentType for BoolArgumentType where for<'i> E: ReadError<'i, Cursor<&'i str>> { /// A `BoolArgumentType` parses a `bool`. type Result = bool; /// Attempts to parse a `bool` from the `reader`. fn parse<'i>( &self, reader: &mut Cursor<&'i str>, ) -> Result where E: 'i { reader.read_bool() } /// Suggests completions for inputting a boolean argument. fn list_suggestions<'i>( &self, context: &CommandContext<'i, S, E>, mut builder: SuggestionsBuilder<'i>, ) -> Pin + Send + 'i>> { let _ = context; if "true".starts_with(builder.get_remaining()) { builder.suggest("true".into()); } if "false".starts_with(builder.get_remaining()) { builder.suggest("false".into()); } builder.drain_build_future() } /// Returns examples fn get_examples(&self) -> Cow<'static, [&str]> { Cow::Borrowed(&["true", "false"]) } } /// An integer argument. #[derive(Copy, Clone, PartialEq, Eq, Debug, PartialOrd, Ord, Hash, Default)] pub struct IntegerArgumentType> { /// The valid range for this argument. pub range: R, /// PhantomData for the type. pub _ty: PhantomData, } /// Helper to create an integer argument with values not bounded by a range. /// /// # Examples /// /// ```rust /// use ::iosonism::args::integer; /// /// let argtype = integer::(); /// ``` pub fn integer() -> IntegerArgumentType { IntegerArgumentType { range: .., _ty: PhantomData, } } /// Helper to create an integer argument with values bounded by a range. /// /// # Examples /// /// ```rust /// use ::iosonism::args::bounded_integer; /// /// let argtype = bounded_integer(0..100i32); /// ``` pub fn bounded_integer>( range: R, ) -> IntegerArgumentType { IntegerArgumentType { range: range, _ty: PhantomData, } } /// An `ArgumentType` for integer types. impl ArgumentType for IntegerArgumentType where for<'i> E: ReadError<'i, Cursor<&'i str>>, for<'i> E: RangeError<'i, Cursor<&'i str>, T, R>, R: RangeBounds, T: PartialOrd + FromStr + Any, { /// An `IntegerArgumentType` parses an integer type. type Result = T; /// Attempts to parse an integer from the `reader`. fn parse<'i>( &self, reader: &mut Cursor<&'i str>, ) -> Result where E: 'i { let start = reader.position(); let value = reader.read_integer()?; if self.range.contains(&value) { Ok(value) } else { reader.set_position(start); Err(E::value_not_in_range(reader, &value, &self.range)) } } /// Returns examples fn get_examples(&self) -> Cow<'static, [&str]> { Cow::Borrowed(&["0", "123", "-123"]) } } /// A float argument. #[derive(Copy, Clone, PartialEq, Eq, Debug, PartialOrd, Ord, Hash, Default)] pub struct FloatArgumentType> { /// The valid range for this argument. pub range: R, /// PhantomData for the type. pub _ty: PhantomData, } /// Helper to create a float argument with values not bounded by a range. /// /// # Examples /// /// ```rust /// use ::iosonism::args::float; /// /// let argtype = float::(); /// ``` pub fn float() -> FloatArgumentType { FloatArgumentType { range: .., _ty: PhantomData, } } /// Helper to create a float argument with values bounded by a range. /// /// # Examples /// /// ```rust /// use ::iosonism::args::bounded_float; /// /// let argtype = bounded_float(0.0..100f32); /// ``` pub fn bounded_float>( range: R, ) -> FloatArgumentType { FloatArgumentType { range: range, _ty: PhantomData, } } /// An `ArgumentType` for float types. impl ArgumentType for FloatArgumentType where for<'i> E: ReadError<'i, Cursor<&'i str>>, for<'i> E: RangeError<'i, Cursor<&'i str>, T, R>, R: RangeBounds, T: PartialOrd + FromStr + Any, { /// A `FloatArgumentType` parses a float type. type Result = T; /// Attempts to parse a float from the `reader`. fn parse<'i>( &self, reader: &mut Cursor<&'i str>, ) -> Result where E: 'i { let start = reader.position(); let value = reader.read_float()?; if self.range.contains(&value) { Ok(value) } else { reader.set_position(start); Err(E::value_not_in_range(reader, &value, &self.range)) } } /// Returns examples fn get_examples(&self) -> Cow<'static, [&str]> { Cow::Borrowed(&["0", "1.2", ".5", "-1", "-.5", "-1234.56"]) } } /// A string argument. #[derive(Copy, Clone, PartialEq, Eq, Debug, PartialOrd, Ord, Hash)] pub struct StringArgumentType(StringMode); /// Creates a string argument that accepts simple words. /// /// # Examples /// /// ```rust /// use ::iosonism::args::word; /// /// let argtype = word(); /// ``` pub fn word() -> StringArgumentType { StringArgumentType(StringMode::SingleWord) } /// Creates a string argument that accepts simple words and quoted strings. /// /// # Examples /// /// ```rust /// use ::iosonism::args::string; /// /// let argtype = string(); /// ``` pub fn string() -> StringArgumentType { StringArgumentType(StringMode::QuotablePhrase) } /// Creates a string argument that accepts simple text until the end of the /// input. /// /// # Examples /// /// ```rust /// use ::iosonism::args::greedy_string; /// /// let argtype = greedy_string(); /// ``` pub fn greedy_string() -> StringArgumentType { StringArgumentType(StringMode::GreedyPhrase) } /// The "mode" of parsing a string. #[derive(Copy, Clone, PartialEq, Eq, Debug, PartialOrd, Ord, Hash)] enum StringMode { SingleWord, QuotablePhrase, GreedyPhrase, } /// An `ArgumentType` for strings. impl ArgumentType for StringArgumentType where for<'i> E: ReadError<'i, Cursor<&'i str>> { /// A `StringArgumentType` parses a string. type Result = String; /// Attempts to parse a string from the `reader`. fn parse<'i>( &self, reader: &mut Cursor<&'i str>, ) -> Result where E: 'i { match self { Self(StringMode::SingleWord) => { Ok(reader.read_unquoted_str().into()) }, Self(StringMode::QuotablePhrase) => reader.read_string(), Self(StringMode::GreedyPhrase) => { let text = reader.get_remaining().into(); reader.set_position(reader.total_len() as u64); Ok(text) }, } } /// Returns examples fn get_examples(&self) -> Cow<'static, [&str]> { match self { Self(StringMode::SingleWord) => { Cow::Borrowed(&["word", "words_With_underscores"]) }, Self(StringMode::QuotablePhrase) => { Cow::Borrowed(&["\"quoted phrase\"", "word", "\"\""]) }, Self(StringMode::GreedyPhrase) => { Cow::Borrowed(&["word", "with spaces", "text \"and symbols\""]) }, } } }