| Safe Haskell | Trustworthy |
|---|---|
| Language | Haskell98 |
System.Console.Wizard
Synopsis
- newtype Wizard backend a = Wizard (MaybeT (Free backend) a)
- type PromptString = String
- run :: (Functor f, Monad b, Run b f) => Wizard f a -> b (Maybe a)
- class (Functor sub, Functor sup) => sub :<: sup
- data (f :+: g) w
- data Line w
- line :: Line :<: b => PromptString -> Wizard b String
- data LinePrewritten w
- linePrewritten :: LinePrewritten :<: b => PromptString -> String -> String -> Wizard b String
- data Password w
- password :: Password :<: b => PromptString -> Maybe Char -> Wizard b String
- data Character w
- character :: Character :<: b => PromptString -> Wizard b Char
- data Output w
- output :: Output :<: b => String -> Wizard b ()
- data OutputLn w
- outputLn :: OutputLn :<: b => String -> Wizard b ()
- data ArbitraryIO w
- retry :: Functor b => Wizard b a -> Wizard b a
- retryMsg :: OutputLn :<: b => String -> Wizard b a -> Wizard b a
- defaultTo :: Functor b => Wizard b a -> a -> Wizard b a
- parser :: Functor b => (a -> Maybe c) -> Wizard b a -> Wizard b c
- validator :: Functor b => (a -> Bool) -> Wizard b a -> Wizard b a
- nonEmpty :: Functor b => Wizard b [a] -> Wizard b [a]
- inRange :: (Ord a, Functor b) => (a, a) -> Wizard b a -> Wizard b a
- parseRead :: (Read a, Functor b) => Wizard b String -> Wizard b a
- liftMaybe :: Functor b => Maybe a -> Wizard b a
- ensure :: (a -> Bool) -> a -> Maybe a
- readP :: Read a => String -> Maybe a
Wizards
A Wizard b a is a conversation with the user via back-end b that will result in a data type a, or may fail.
A Wizard is made up of one or more "primitives" (see below), composed using the Applicative,
Monad and Alternative instances. The Alternative instance is, as you might expect, a maybe-style cascade.
If the first wizard fails, the next one is tried. mzero can be used to induce failure directly.
The Wizard constructor is exported here for use when developing backends, but it is better for end-users to
simply pretend that Wizard is an opaque data type. Don't depend on this unless you have no other choice.
Wizards are, internally, just a maybe transformer over a free monad built from some coproduct of functors,
each of which is a primitive action.
Instances
| Functor backend => Monad (Wizard backend) # | |
| Functor backend => Functor (Wizard backend) # | |
| Functor backend => Applicative (Wizard backend) # | |
Defined in System.Console.Wizard.Internal Methods pure :: a -> Wizard backend a # (<*>) :: Wizard backend (a -> b) -> Wizard backend a -> Wizard backend b # liftA2 :: (a -> b -> c) -> Wizard backend a -> Wizard backend b -> Wizard backend c # (*>) :: Wizard backend a -> Wizard backend b -> Wizard backend b # (<*) :: Wizard backend a -> Wizard backend b -> Wizard backend a # | |
| ArbitraryIO :<: b => MonadIO (Wizard b) # | |
Defined in System.Console.Wizard | |
| Functor backend => Alternative (Wizard backend) # | |
| Functor backend => MonadPlus (Wizard backend) # | |
type PromptString = String #
A string for a prompt
run :: (Functor f, Monad b, Run b f) => Wizard f a -> b (Maybe a) #
Run a wizard using some back-end.
class (Functor sub, Functor sup) => sub :<: sup #
Subsumption of two functors. You shouldn't define any of your own instances of this when writing back-ends, rely only on GeneralizedNewtypeDeriving.
Minimal complete definition
inj
Instances
Coproduct of two functors
Instances
| (Run b f, Run b g) => Run b (f :+: g) # | |
Defined in System.Console.Wizard.Internal Methods runAlgebra :: (f :+: g) (b v) -> b v # | |
| (Functor f, Functor g, Functor h, f :<: g) => f :<: (h :+: g) # | |
Defined in System.Console.Wizard.Internal | |
| (Functor f, Functor g) => f :<: (f :+: g) # | |
Defined in System.Console.Wizard.Internal | |
| (Functor f, Functor g) => Functor (f :+: g) # | |
Primitives
Primitives are the basic building blocks for wizards. Use these functions to produce wizards that
ask for input from the user, or output information.
Instances
| Functor Line # | |
| Run IO Line # | |
Defined in System.Console.Wizard.BasicIO Methods runAlgebra :: Line (IO v) -> IO v # | |
| Line :<: Haskeline # | |
Defined in System.Console.Wizard.Haskeline | |
| Line :<: BasicIO # | |
Defined in System.Console.Wizard.BasicIO | |
| Line :<: Pure # | |
Defined in System.Console.Wizard.Pure | |
| Run (InputT IO) Line # | |
Defined in System.Console.Wizard.Haskeline | |
| Run (State PureState) Line # | |
Defined in System.Console.Wizard.Pure | |
line :: Line :<: b => PromptString -> Wizard b String #
Read one line of input from the user. Cannot fail (but may throw exceptions, depending on the backend).
data LinePrewritten w #
Instances
| Functor LinePrewritten # | |
Defined in System.Console.Wizard.Internal Methods fmap :: (a -> b) -> LinePrewritten a -> LinePrewritten b # (<$) :: a -> LinePrewritten b -> LinePrewritten a # | |
| LinePrewritten :<: Haskeline # | |
Defined in System.Console.Wizard.Haskeline Methods inj :: LinePrewritten a -> Haskeline a | |
| Run (InputT IO) LinePrewritten # | |
Defined in System.Console.Wizard.Haskeline Methods runAlgebra :: LinePrewritten (InputT IO v) -> InputT IO v # | |
Arguments
| :: LinePrewritten :<: b | |
| => PromptString | |
| -> String | Text to the left of the cursor |
| -> String | Text to the right of the cursor |
| -> Wizard b String |
Read one line of input, with some default text already present, before and/or after the editing cursor.
Read one line of password input, with an optional mask character.
Instances
| Functor Character # | |
| Run IO Character # | |
Defined in System.Console.Wizard.BasicIO Methods runAlgebra :: Character (IO v) -> IO v # | |
| Character :<: Haskeline # | |
Defined in System.Console.Wizard.Haskeline | |
| Character :<: BasicIO # | |
Defined in System.Console.Wizard.BasicIO | |
| Character :<: Pure # | |
Defined in System.Console.Wizard.Pure | |
| Run (InputT IO) Character # | |
Defined in System.Console.Wizard.Haskeline | |
| Run (State PureState) Character # | |
Defined in System.Console.Wizard.Pure | |
character :: Character :<: b => PromptString -> Wizard b Char #
Read a single character only from input. Cannot fail (but may throw exceptions, depending on the backend).
Instances
| Functor Output # | |
| Run IO Output # | |
Defined in System.Console.Wizard.BasicIO Methods runAlgebra :: Output (IO v) -> IO v # | |
| Output :<: Haskeline # | |
Defined in System.Console.Wizard.Haskeline | |
| Output :<: BasicIO # | |
Defined in System.Console.Wizard.BasicIO | |
| Output :<: Pure # | |
Defined in System.Console.Wizard.Pure | |
| Run (InputT IO) Output # | |
Defined in System.Console.Wizard.Haskeline | |
| Run (State PureState) Output # | |
Defined in System.Console.Wizard.Pure | |
Instances
| Functor OutputLn # | |
| Run IO OutputLn # | |
Defined in System.Console.Wizard.BasicIO Methods runAlgebra :: OutputLn (IO v) -> IO v # | |
| OutputLn :<: Haskeline # | |
Defined in System.Console.Wizard.Haskeline | |
| OutputLn :<: BasicIO # | |
Defined in System.Console.Wizard.BasicIO | |
| OutputLn :<: Pure # | |
Defined in System.Console.Wizard.Pure | |
| Run (InputT IO) OutputLn # | |
Defined in System.Console.Wizard.Haskeline | |
| Run (State PureState) OutputLn # | |
Defined in System.Console.Wizard.Pure | |
outputLn :: OutputLn :<: b => String -> Wizard b () #
Output a string followed by a newline. Does not fail.
data ArbitraryIO w #
Instances
| Functor ArbitraryIO # | |
Defined in System.Console.Wizard.Internal Methods fmap :: (a -> b) -> ArbitraryIO a -> ArbitraryIO b # (<$) :: a -> ArbitraryIO b -> ArbitraryIO a # | |
| Run IO ArbitraryIO # | |
Defined in System.Console.Wizard.BasicIO Methods runAlgebra :: ArbitraryIO (IO v) -> IO v # | |
| ArbitraryIO :<: Haskeline # | |
Defined in System.Console.Wizard.Haskeline Methods inj :: ArbitraryIO a -> Haskeline a | |
| ArbitraryIO :<: BasicIO # | |
Defined in System.Console.Wizard.BasicIO Methods inj :: ArbitraryIO a -> BasicIO a | |
| Run (InputT IO) ArbitraryIO # | |
Defined in System.Console.Wizard.Haskeline Methods runAlgebra :: ArbitraryIO (InputT IO v) -> InputT IO v # | |
Modifiers
Modifiers change the behaviour of existing wizards.
retry :: Functor b => Wizard b a -> Wizard b a #
Retry produces a wizard that will retry the entire conversation again if it fails.
It is simply retry x = x <|> retry x.
retryMsg :: OutputLn :<: b => String -> Wizard b a -> Wizard b a #
Same as retry, except an error message can be specified.
defaultTo :: Functor b => Wizard b a -> a -> Wizard b a #
x `defaultTo` y will return y if x fails, e.g parseRead line `defaultTo` 0.
validator :: Functor b => (a -> Bool) -> Wizard b a -> Wizard b a #
validator p causes a wizard to fail if the output value does not satisfy the predicate p.
Convenience
nonEmpty :: Functor b => Wizard b [a] -> Wizard b [a] #
Simply validator (not . null), makes a wizard fail if it gets an empty string.
inRange :: (Ord a, Functor b) => (a, a) -> Wizard b a -> Wizard b a #
Makes a wizard fail if it gets an ordered quantity outside of the given range.
parseRead :: (Read a, Functor b) => Wizard b String -> Wizard b a #
Simply parser readP. Attaches a simple read parser to a Wizard.
Utility
liftMaybe :: Functor b => Maybe a -> Wizard b a #
Translate a maybe value into wizard success/failure.