1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE Safe #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE StandaloneDeriving #-}
{-# LANGUAGE UndecidableInstances #-}
-- |
-- Module : Text.Megaparsec.Error.Builder
-- Copyright : © 2015–present Megaparsec contributors
-- License : FreeBSD
--
-- Maintainer : Mark Karpov <markkarpov92@gmail.com>
-- Stability : experimental
-- Portability : portable
--
-- A set of helpers that should make construction of 'ParseError's more
-- concise. This is primarily useful in test suites and for debugging.
--
-- @since 6.0.0
module Text.Megaparsec.Error.Builder
( -- * Top-level helpers
err,
errFancy,
-- * Error components
utok,
utoks,
ulabel,
ueof,
etok,
etoks,
elabel,
eeof,
fancy,
-- * Data types
ET,
EF,
)
where
import Data.Data (Data)
import Data.List.NonEmpty (NonEmpty (..))
import qualified Data.List.NonEmpty as NE
import Data.Proxy
import Data.Set (Set)
import qualified Data.Set as E
import Data.Typeable (Typeable)
import GHC.Generics
import Text.Megaparsec.Error
import Text.Megaparsec.Stream
----------------------------------------------------------------------------
-- Data types
-- | Auxiliary type for construction of trivial parse errors.
data ET s = ET (Maybe (ErrorItem (Token s))) (Set (ErrorItem (Token s)))
deriving (Typeable, Generic)
deriving instance (Eq (Token s)) => Eq (ET s)
deriving instance (Ord (Token s)) => Ord (ET s)
deriving instance
( Data s,
Data (Token s),
Ord (Token s)
) =>
Data (ET s)
instance (Stream s) => Semigroup (ET s) where
ET us0 ps0 <> ET us1 ps1 = ET (n us0 us1) (E.union ps0 ps1)
where
n Nothing Nothing = Nothing
n (Just x) Nothing = Just x
n Nothing (Just y) = Just y
n (Just x) (Just y) = Just (max x y)
instance (Stream s) => Monoid (ET s) where
mempty = ET Nothing E.empty
mappend = (<>)
-- | Auxiliary type for construction of fancy parse errors.
newtype EF e = EF (Set (ErrorFancy e))
deriving (Eq, Ord, Data, Typeable, Generic)
instance (Ord e) => Semigroup (EF e) where
EF xs0 <> EF xs1 = EF (E.union xs0 xs1)
instance (Ord e) => Monoid (EF e) where
mempty = EF E.empty
mappend = (<>)
----------------------------------------------------------------------------
-- Top-level helpers
-- | Assemble a 'ParseError' from the offset and the @'ET' t@ value. @'ET'
-- t@ is a monoid and can be assembled by combining primitives provided by
-- this module, see below.
err ::
-- | 'ParseError' offset
Int ->
-- | Error components
ET s ->
-- | Resulting 'ParseError'
ParseError s e
err p (ET us ps) = TrivialError p us ps
-- | Like 'err', but constructs a “fancy” 'ParseError'.
errFancy ::
-- | 'ParseError' offset
Int ->
-- | Error components
EF e ->
-- | Resulting 'ParseError'
ParseError s e
errFancy p (EF xs) = FancyError p xs
----------------------------------------------------------------------------
-- Error components
-- | Construct an “unexpected token” error component.
utok :: Token s -> ET s
utok = unexp . Tokens . nes
-- | Construct an “unexpected tokens” error component. Empty chunk produces
-- 'EndOfInput'.
utoks :: forall s. (Stream s) => Tokens s -> ET s
utoks = unexp . canonicalizeTokens (Proxy :: Proxy s)
-- | Construct an “unexpected label” error component. Do not use with empty
-- strings (for empty strings it's bottom).
ulabel :: String -> ET s
ulabel label
| label == "" = error "Text.Megaparsec.Error.Builder.ulabel: empty label"
| otherwise = unexp . Label . NE.fromList $ label
-- | Construct an “unexpected end of input” error component.
ueof :: ET s
ueof = unexp EndOfInput
-- | Construct an “expected token” error component.
etok :: Token s -> ET s
etok = expe . Tokens . nes
-- | Construct an “expected tokens” error component. Empty chunk produces
-- 'EndOfInput'.
etoks :: forall s. (Stream s) => Tokens s -> ET s
etoks = expe . canonicalizeTokens (Proxy :: Proxy s)
-- | Construct an “expected label” error component. Do not use with empty
-- strings.
elabel :: String -> ET s
elabel label
| label == "" = error "Text.Megaparsec.Error.Builder.elabel: empty label"
| otherwise = expe . Label . NE.fromList $ label
-- | Construct an “expected end of input” error component.
eeof :: ET s
eeof = expe EndOfInput
-- | Construct a custom error component.
fancy :: ErrorFancy e -> EF e
fancy = EF . E.singleton
----------------------------------------------------------------------------
-- Helpers
-- | Construct the appropriate 'ErrorItem' representation for the given
-- token stream. The empty string produces 'EndOfInput'.
canonicalizeTokens ::
(Stream s) =>
Proxy s ->
Tokens s ->
ErrorItem (Token s)
canonicalizeTokens pxy ts =
case NE.nonEmpty (chunkToTokens pxy ts) of
Nothing -> EndOfInput
Just xs -> Tokens xs
-- | Lift an unexpected item into 'ET'.
unexp :: ErrorItem (Token s) -> ET s
unexp u = ET (pure u) E.empty
-- | Lift an expected item into 'ET'.
expe :: ErrorItem (Token s) -> ET s
expe p = ET Nothing (E.singleton p)
-- | Make a singleton non-empty list from a value.
nes :: a -> NonEmpty a
nes x = x :| []
|