gigaparsec-0.3.1.0: src/Text/Gigaparsec/Errors/Combinator.hs
{-# LANGUAGE Safe #-}
{-# OPTIONS_GHC -Wno-missing-import-lists #-}
{-# OPTIONS_GHC -Wno-incomplete-record-updates #-}
{-|
Module : Text.Gigaparsec.Errors.Combinator
Description : This module contains combinators that can be used to directly influence error
messages of parsers.
License : BSD-3-Clause
Maintainer : Jamie Willis, Gigaparsec Maintainers
Stability : stable
Error messages are, by default, not /particularly/ descriptive. However, the combinators in this
module can be used to improve the generation of error messages by providing labels for expected
items, explanations for why things went wrong, custom error messages, custom unexpected error messages,
as well as correcting the offsets that error messages actually occurred at.
==== Terminology
__Observably consumes input__: a parser is said to /observably/ consume input when error messages generated by a parser @p@ occur at a deeper
offset than @p@ originally started at. While this sounds like it is the same as "having consumed input" for the
purposes of backtracking, they are disjoint concepts:
1. in @atomic p@, @p@ can /observably/ consume input even though the wider parser does not consume input due to the @atomic@.
2. in @amend p@, @p@ can consume input and may not backtrack even though the consumption is not /observable/ in the error
message due to the @amend@.
@since 0.2.0.0
-}
module Text.Gigaparsec.Errors.Combinator (
-- * Error Enrichment Combinators
-- | These combinators add additional information - or refine the existing information within - to
-- an error message that has been generated within the scope of the parser they have been called on.
-- These are a very basic, but effective, way of improving the quality of error messages generated
-- by gigaparsec.
label, (<?>), hide, explain,
-- * Failure Combinators
-- | These combinators immediately fail the parser, with a more bespoke message.
emptyWide,
fail, failWide,
unexpected, unexpectedWide,
-- * Error Adjustment Combinators
-- | These combinators can affect at what position an error is caused at. They are
-- opposites: where 'amend' will ensure an error message is said to have generated
-- at the position on entry to the combinator, 'entrench' will resist these changes.
amend, partialAmend, entrench, dislodge, dislodgeBy,
amendThenDislodge, amendThenDislodgeBy, partialAmendThenDislodge, partialAmendThenDislodgeBy,
markAsToken,
filterSWith, mapMaybeSWith,
filterOut, guardAgainst, unexpectedWhen, unexpectedWithReasonWhen,
mapEitherS
) where
{-
Future doc headings:
Filtering Combinators
=====================
These combinators perform filtering on a parser, with particular emphasis on generating meaningful
error messages if the filtering fails. This is particularly useful for data validation within the
parser, as very instructive error messages describing what went wrong can be generated. These combinators
often filter using a `PartialFunction`: this may be because they combine filtering with mapping (in which
case, the error message is provided separately), or the function may produce a `String`.
In these cases, the partial function is producing the error messages: if the input to the function is
defined, this means that it is invalid and the filtering will fail using the message obtained from the
successful partial function invocation.
Generic Filtering Combinators
=============================
This combinators generalise the combinators from above, which are all special cases of them. Each of these
takes the characteristic predicate or function of the regular variants, but takes an `errGen` object that
can be used to fine-tune the error messages. These offer some flexiblity not offered by the specialised
filtering combinators, but are a little more verbose to use.
-}
import Prelude hiding (fail)
import Text.Gigaparsec.Errors.ErrorGen (ErrorGen, vanillaGen, specializedGen)
import Text.Gigaparsec.Errors.ErrorGen qualified as ErrorGen
-- We want to use this to make the docs point to the right definition for users.
import Text.Gigaparsec.Internal (Parsec)
import Text.Gigaparsec.Internal qualified as Internal (Parsec(Parsec), line, col, emptyErr, specialisedErr, raise, unexpectedErr, hints, consumed, useHints, adjustErr, hints, hintsValidOffset)
import Text.Gigaparsec.Internal.Errors (Error, CaretWidth(FlexibleCaret, RigidCaret))
import Text.Gigaparsec.Internal.Errors qualified as Internal (setLexical, amendErr, entrenchErr, dislodgeErr, partialAmendErr, labelErr, explainErr, replaceHints)
import Text.Gigaparsec.Internal.Require (require)
import Text.Gigaparsec.Position (withWidth)
import Data.Set (Set)
import Data.Set qualified as Set (empty)
import Data.List.NonEmpty (NonEmpty)
import Data.List.NonEmpty qualified as NonEmpty (toList)
import Data.Maybe (isNothing, fromJust)
{-|
This combinator changes the expected component of any errors generated by this parser.
When this parser fails having not /observably/ consumed input, the expected component of the generated
error message is set to be the given items.
-}
label :: Set String -- ^ the names to give to the expected component of any qualifying errors.
-> Parsec a -- ^ the parser to apply the labels to
-> Parsec a
label ls (Internal.Parsec p) =
require (not (null ls) && not (any null ls)) "Text.Gigaparsec.Errors.Combinator.label"
"labels cannot be empty" $
Internal.Parsec $ \st good bad ->
let !origConsumed = Internal.consumed st
good' x st'
| Internal.consumed st' /= origConsumed = good x st'
| otherwise = good x st' { Internal.hints = Internal.replaceHints ls (Internal.hints st') }
bad' err = Internal.useHints bad (Internal.labelErr origConsumed ls err)
in p st good' bad'
{-|
This combinator suppresses the entire error message generated by a given parser.
When this parser fails having not /observably/ consumed input, this combinator
replaces any error generated by the given parser to match the 'Text.Gigaparsec.empty' combinator.
This can be useful, say, for hiding whitespace labels, which are not normally useful
information to include in an error message for whitespace insensitive grammars.
-}
hide :: Parsec a -> Parsec a
hide (Internal.Parsec p) =
Internal.Parsec $ \st good bad ->
let !origConsumed = Internal.consumed st
good' x st' = good x st' {
Internal.hints = Internal.hints st,
Internal.hintsValidOffset = Internal.hintsValidOffset st
}
bad' err st'
| Internal.consumed st' /= origConsumed = bad err st'
| otherwise = Internal.useHints bad (Internal.emptyErr st' 0) st'
in p st good' bad'
{-|
This combinator adds a reason to error messages generated by this parser.
When this parser fails having not /observably/ consumed input, this combinator adds
a reason to the error message, which should justify why the error occured. Unlike error
labels, which may persist if more progress is made having not consumed input, reasons
are not carried forward in the error message, and are lost.
-}
explain :: String -- ^ reason the reason why a parser failed.
-> Parsec a -- ^ the parser to apply the reason to
-> Parsec a
explain reason (Internal.Parsec p) =
Internal.Parsec $ \st good bad ->
let !origConsumed = Internal.consumed st
bad' err = Internal.useHints bad (Internal.explainErr origConsumed reason err)
in p st good bad'
{-|
This combinator fails immediately, with a caret of the given width and no other information.
By producing basically no information, this combinator is principally for adjusting the
caret-width of another error, rather than the value 'Text.Gigaparsec.empty', which is used to fail with
no effect on error content.
-}
emptyWide :: Word -- ^ the width of the caret for the error produced by this combinator.
-> Parsec a
emptyWide width = Internal.raise (`Internal.emptyErr` width)
{-|
This combinator consumes no input and fails immediately with the given error messages.
Produces a /specialised/ error message where all the lines of the error are the
given @msgs@ in order of appearance.
==== __Examples__
>>> let failing = fail ["hello,", "this is an error message", "broken across multiple lines"]
-}
fail :: NonEmpty String -- ^ the messages that will make up the error message.
-> Parsec a
fail = _fail (FlexibleCaret 1)
{-|
This combinator consumes no input and fails immediately with the given error messages.
Produces a /specialised/ error message where all the lines of the error are the
given @msgs@ in order of appearance. The caret width of the message is set to the
given value.
==== __Examples__
>>> let failing = fail 3 ["hello,", "this is an error message", "broken across multiple lines"]
-}
failWide :: Word -- ^ the width of the caret for the error produced by this combinator.
-> NonEmpty String -- ^ the messages that will make up the error message.
-> Parsec a
failWide width = _fail (RigidCaret width)
{-# INLINE _fail #-}
_fail :: CaretWidth -> NonEmpty String -> Parsec a
_fail width msgs = Internal.raise (\st -> Internal.specialisedErr st (NonEmpty.toList msgs) width)
{-|
This combinator consumes no input and fails immediately, setting the unexpected component
to the given item.
Produces a /trivial/ error message where the unexpected component of the error is
replaced with the given item.
-}
unexpected :: String -- ^ the unexpected message for the error generated.
-> Parsec a
unexpected = _unexpected (FlexibleCaret 1)
{-|
This combinator consumes no input and fails immediately, setting the unexpected component
to the given item.
Produces a /trivial/ error message where the unexpected component of the error is
replaced with the given item. The caret width of the message is set to the
given value.
-}
unexpectedWide :: Word -- ^ the width of the caret for the error produced by this combinator.
-> String -- ^ the unexpected message for the error generated.
-> Parsec a
unexpectedWide width = _unexpected (RigidCaret width)
{-# INLINE _unexpected #-}
_unexpected :: CaretWidth -> String -> Parsec a
_unexpected width name = Internal.raise $ \st -> Internal.unexpectedErr st Set.empty name width
{-|
This combinator adjusts any error messages generated by the given parser so that they
occur at the position recorded on entry to this combinator (effectively as if no
input were consumed).
This is useful if validation work is done
on the output of a parser that may render it invalid, but the error should point to the
beginning of the structure. This combinators effect can be cancelled with 'entrench'.
==== __Examples__
>>> let greeting = string "hello world" <* char '!'
>>> parseRepl (greeting <?> ["greeting"]) "hello world."
(line 1, column 12):
unexpected "."
expected "!"
>hello world.
^
>>> parseRepl (amend greeting <?> ["greeting"]) "hello world."
(line 1, column 1):
unexpected "h"
expected greeting
>hello world.
^
-}
amend :: Parsec a -> Parsec a
amend = _amend Internal.amendErr
--TODO: examples
{-|
This combinator adjusts any error messages generated by the given parser so that they
occur at the position recorded on entry to this combinator, but retains the original offset.
Similar to 'amend', but retains the original offset the error occurred at. This is known
as its /underlying offset/ as opposed to the visual /presentation offset/. To the reader, the
error messages appears as if no input was consumed, but for the purposes of error message merging
the error is still deeper. A key thing to note is that two errors can only merge if they are at
the same presentation /and/ underlying offsets: if they are not the deeper of the two /dominates/.
The ability for an error to still dominate others after partial amendment can be useful for allowing
it to avoid being lost when merging with errors that are deeper than the presentation offset but
shallower than the underlying.
-}
partialAmend :: Parsec a -> Parsec a
partialAmend = _amend Internal.partialAmendErr
{-# INLINE _amend #-}
_amend :: (Word -> Word -> Word -> Error -> Error) -> Parsec a -> Parsec a
_amend f (Internal.Parsec p) =
Internal.Parsec $ \st good bad ->
let !origConsumed = Internal.consumed st
!origLine = Internal.line st
!origCol = Internal.col st
!origHints = Internal.hints st
!origHintsValidOffset = Internal.hintsValidOffset st
in p st good $ \err st' -> bad (f origConsumed origLine origCol err)
st' { Internal.hints = origHints
, Internal.hintsValidOffset = origHintsValidOffset }
--TODO: examples
{-|
This combinator prevents the action of any enclosing 'amend' on the errors generated by the given
parser.
Sometimes, the error adjustments performed by 'amend' should only affect errors generated
within a certain part of a parser and not the whole thing; in this case, 'entrench' can be used
to protect sub-parsers from having their errors adjusted, providing a much more fine-grained
scope for error adjustment.
-}
entrench :: Parsec a -> Parsec a
entrench = Internal.adjustErr Internal.entrenchErr
{-|
This combinator undoes the action of any 'entrench' combinators on the given parser.
Entrenchment is important for preventing the incorrect amendment of certain parts of sub-errors
for a parser, but it may be then undesireable to block further amendments from elsewhere in the
parser. This combinator can be used to cancel all entrenchment after the critical section has
passed.
-}
dislodge :: Parsec a -> Parsec a
dislodge = dislodgeBy maxBound
{-|
This combinator undoes the action of the given number of 'entrench' combinators on the given parser.
Entrenchment is important for preventing the incorrect amendment of certain parts of sub-errors
for a parser, but it may be then undesireable to block further amendments from elsewhere in the
parser. This combinator can be used to cancel all entrenchment after the critical section has
passed.
-}
dislodgeBy :: Word -- ^ The number of 'entrench' combinators to undo
-> Parsec a -- ^ The parser containing the 'entrench' combinators
-> Parsec a
dislodgeBy by = Internal.adjustErr (Internal.dislodgeErr by)
{-|
This combinator first tries to amend the position of any error generated by the given parser,
and if the error was entrenched will dislodge it instead.
-}
amendThenDislodge :: Parsec a -> Parsec a
amendThenDislodge = dislodge . amend
{-|
This combinator first tries to amend the position of any error generated by the given parser,
and if the error was entrenched will dislodge it the given number of times instead.
-}
amendThenDislodgeBy :: Word -- ^ The number of 'entrench' combinators to dislodge.
-> Parsec a -- ^ The parser to amend and dislodge.
-> Parsec a
amendThenDislodgeBy n = dislodgeBy n . amend
{-|
This combinator first tries to partially amend the position of any error generated by the given parser,
and if the error was entrenched will dislodge it instead.
-}
partialAmendThenDislodge :: Parsec a -> Parsec a
partialAmendThenDislodge = dislodge . partialAmend
{-|
This combinator first tries to partially amend the position of any error generated by the given parser,
and if the error was entrenched will dislodge it the given number of times instead.
-}
partialAmendThenDislodgeBy :: Word -> Parsec a -> Parsec a
partialAmendThenDislodgeBy n = dislodgeBy n . partialAmend
{-|
This combinator marks any errors within the given parser as being /lexical errors/.
When an error is marked as a /lexical error/, it sets a flag within the error that is
passed to 'Text.Gigaparsec.Errors.ErrorBuilder.unexpectedToken': this
should be used to prevent @Lexer@-based token extraction from being performed on an error,
since lexing errors cannot be the result of unexpected tokens.
-}
markAsToken :: Parsec a -> Parsec a
markAsToken (Internal.Parsec p) = Internal.Parsec $ \st good bad ->
p st good $ \err -> bad (Internal.setLexical (Internal.consumed st) err)
{-|
This combinator changes the expected component of any errors generated by this parser.
This is just an alias for the 'label' combinator.
-}
{-# INLINE (<?>) #-}
infix 0 <?>
(<?>) :: Parsec a -> Set String -> Parsec a
(<?>) = flip label
-- should these be implemented with branch? probably not.
{-|
This combinator filters the result of this parser with the given predicate,
generating an error with the given error generator if the function returned 'False'.
Behaves like 'Text.Gigaparsec.filterS', except the error message generated is fine-tuned with
respect to the parser's result and width of input consumed, using the 'ErrorGen'.
First, parse @p@.
If it succeeds then take its result @x@ and apply it to the predicate @pred@.
* If @pred x@ is true, then return @x@.
* If @pred x@ is false, the combinator fails and produces an error message descrbied by the given 'ErrorGen'.
If @p@ failed, this combinator fails without using the given 'ErrorGen'.
@since 0.2.2.0
-}
filterSWith :: ErrorGen a -- ^ the generator for the error message when @p@ succeeds but @pred@ fails.
-> (a -> Bool) -- ^ @pred@, the predicate that is tested against the result of @p@
-> Parsec a -- ^ @p@, the parser to test
-> Parsec a -- ^ a parser that returns the result of @p@ if it passes the predicate.
filterSWith errGen f p = amendThenDislodgeBy 1 $ withWidth (entrench p) >>= \(x, w) ->
if f x then pure x else ErrorGen.asErr errGen x w
{-|
Filters the result of the given parser @p@ using a given function @f@, succeeding only if @pred@ returns @Nothing@.
First, parse @p@.
If it succeeds then take its result @x@ and apply it to the predicate @pred@.
* If @pred x@ is 'Nothing', then return @x@.
* If @pred x@ is @'Just' reason@, the combinator fails, and produces a /vanilla/ error with the given @reason@.
If @p@ failed, this combinator fails in the same way.
This is useful for performing data validation,
but where a definitive reason can be given for the failure.
In this instance, the rest of the error message is generated as normal,
with the expected and unexpected components still given, along with any other generated reasons.
@since 0.2.2.0
-}
filterOut :: (a -> Maybe String) -- ^ @f@, the function that produces a reason for values we wish to filter out
-> Parsec a -- ^ @p@, the parser to filter
-> Parsec a -- ^ a parser that returns @x@, the result of @p@, only when @f x@ is 'Nothing'.
filterOut p =
filterSWith (vanillaGen { ErrorGen.reason = p }) (isNothing . p)
{-|
This combinator filters the result of the given parser using the given partial-predicate, succeeding only when the predicate returns 'Nothing'.
First, run the given parser @p@.
If it succeeds with result @x@, then apply the given partial-predicate @pred@:
* If @pred x@ is 'Nothing', the parser succeeds, returning @x@.
* If @pred x@ is @'Just' msgs@, the parser fails, producing a /specialised/ error only consisting of the messages @msgs@.
This is useful for performing data validation, but where failure is not tied to the grammar
but some other property of the results.
Where 'guardAgainst' shines, however, is in scenarios where the expected alternatives,
or the unexpected component itself distracts from the cause of the error, or is irrelevant in some way.
This might be because 'guardAgainst' is checking some property of the data that is possible to encode in the grammar,
but otherwise impractical, either because it is hard to maintain or generates poor error messages for the user.
@since 0.2.2.0
-}
-- FIXME: 0.3.0.0 change to NonEmptyList
guardAgainst :: (a -> Maybe [String]) -- ^ @pred@, the predicate that is tested against the parser result, which also generates errors.
-> Parsec a -- ^ @p@, the parser to test against.
-> Parsec a -- ^ a parser that returns the result of @p@ if it fails the @pred@.
guardAgainst p =
filterSWith (specializedGen { ErrorGen.messages = fromJust . p }) (isNothing . p)
{-|
This combinator filters the result of the given parser using the given partial-predicate,
succeeding only when the predicate is undefined.
First, run the given parser @p@.
If it succeeds with result @x@, apply the given partial-predicate, @pred@:
* If @pred x@ is 'Nothing', the parser succeeds, returning x.
* If @pred x@ is @'Just' lbl@, the parser fails using 'unexpected' with the label @lbl@.
If @p@ fails, then this combinator also fails.
This is useful for performing data validation where failure results in the entire token being unexpected.
In this instance, the rest of the error message is generated as normal, with the expected components still given,
along with any generated reasons.
@since 0.2.2.0
-}
unexpectedWhen :: (a -> Maybe String) -- ^ @pred@, the predicate that is tested against the parser result, which also generates errors.
-> Parsec a -- ^ @p@, the parser to test against.
-> Parsec a -- ^ a parser that returns the result of @p@ if it fails the @pred@.
unexpectedWhen p =
filterSWith (vanillaGen { ErrorGen.unexpected = ErrorGen.NamedItem . fromJust . p }) (isNothing . p)
{-|
This combinator filters the result of the given parser using the given partial-predicate,
succeeding only when the predicate is undefined.
First, run the given parser @p@.
If it succeeds with result @x@, apply the given partial-predicate, @pred@:
* If @pred x@ is 'Nothing', the parser succeeds, returning x.
* If @pred x@ is @'Just' (lbl, rsn)@, the parser fails using the unexpected label @lbl@ and reason @rsn@.
If @p@ fails, then this combinator also fails.
This is useful for performing data validation where failure results in the entire token being unexpected.
In this instance, the rest of the error message is generated as normal, with the expected components still given,
along with any generated reasons.
@since 0.2.2.0
-}
unexpectedWithReasonWhen
:: (a -> Maybe (String, String)) -- ^ @pred@, the predicate that is tested against the parser result, which also generates errors.
-> Parsec a -- ^ @p@, the parser to test against.
-> Parsec a -- ^ a parser that returns the result of @p@ if it fails the @pred@.
unexpectedWithReasonWhen p =
filterSWith (vanillaGen { ErrorGen.unexpected = ErrorGen.NamedItem . fst . fromJust . p
, ErrorGen.reason = fmap snd . p
}) (isNothing . p)
-- this is called mapFilter in Scala... there is no collect counterpart
{-|
This combinator applies a function @f@ to the result of a parser @p@: if it returns
@'Just' y@, @y@ is returned.
If @p@ succeeds but @f@ returns 'Nothing', then this combinator produces an error message according to the given 'ErrorGen'.
Behaves like 'Text.Gigaparsec.mapMaybeS' with a customised error message.
First, run the given parser @p@.
If it succeeds, apply the function @f@ to the result @x@.
* If @f x@ returns @'Just' y@, return @y@.
* If @f x@ returns @'Nothing'@, the combinator fails and produces an error message descrbied by the given 'ErrorGen'.
If @p@ failed, this combinator fails without using the given 'ErrorGen'.
This is a more efficient way of performing a @filterS@ and @fmap@ at the same time.
@since 0.2.2.0
-}
mapMaybeSWith :: ErrorGen a -- ^ how to generate error messages based on the result of this parser.
-> (a -> Maybe b) -- ^ @f@, the function used to both filter and transform the result of @p@.
-> Parsec a -- ^ @p@, the parser to filter
-> Parsec b -- ^ a parser which returns the result of @p@ applied to @f@, if possible.
mapMaybeSWith errGen f p = amendThenDislodgeBy 1 $ withWidth (entrench p) >>= \(x, w) ->
maybe (ErrorGen.asErr errGen x w) pure (f x)
{-|
This combinator conditionally transforms the result of this parser with a given function:
if a @'Left' xs@ is returned, it generates an error with the messages @xs@; otherwise returns @y@ for the result @'Right' y@.
First, run the given parser @p@.
If it succeeds, apply the function @f@ to the result @x@.
* If @f x@ returns @'Right' y@, return @y@.
* If @f x@ returns @'Left' xs@, the combinator fails with the error messages @xs@.
If @p@ failed, this combinator also fails.
@since 0.2.4.0
-}
mapEitherS :: (a -> Either (NonEmpty String) b)
-- ^ @f@, the predicate that is tested against the parser result.
-> Parsec a -- ^ @p@, the parser to test against the predicate
-> Parsec b -- ^ a parser which returns the result of @p@ applied to @f@, if possible.
mapEitherS f p = amendThenDislodgeBy 1 $ withWidth (entrench p) >>= \(x, w) ->
either (failWide w) pure (f x)