megaparsec/Text/Megaparsec/Prim.hs

753 lines
26 KiB
Haskell
Raw Normal View History

2008-01-13 20:53:15 +03:00
-- |
-- Module : Text.Megaparsec.Prim
-- Copyright : © 2015 Megaparsec contributors
-- © 2007 Paolo Martini
-- © 19992001 Daan Leijen
2015-07-28 16:32:19 +03:00
-- License : BSD3
--
-- Maintainer : Mark Karpov <markkarpov@opmbx.org>
2015-07-30 18:45:06 +03:00
-- Stability : experimental
2008-01-13 20:53:15 +03:00
-- Portability : portable
2015-07-28 16:32:19 +03:00
--
2008-01-13 20:53:15 +03:00
-- The primitive parser combinators.
2015-07-30 18:45:06 +03:00
{-# OPTIONS_HADDOCK not-home #-}
2008-01-13 20:53:15 +03:00
module Text.Megaparsec.Prim
( -- * Used data-types
State (..)
2015-08-12 20:51:06 +03:00
, Stream (..)
, Consumed (..)
, Reply (..)
, Parsec
, ParsecT
-- * Primitive combinators
, MonadParsec (..)
, (<?>)
-- * Parser state combinators
2015-08-12 20:51:06 +03:00
, getPosition
, setPosition
, getInput
2015-08-12 20:51:06 +03:00
, setInput
, setParserState
-- * Running parser
, runParser
, runParserT
, parse
, parse'
, parseTest )
2015-07-28 16:32:19 +03:00
where
import Data.Bool (bool)
import Data.Monoid
2015-07-28 16:32:19 +03:00
import Control.Monad
import Control.Monad.Cont.Class
import Control.Monad.Error.Class
2008-01-13 20:53:15 +03:00
import Control.Monad.Identity
2008-02-05 08:45:50 +03:00
import Control.Monad.Reader.Class
2015-07-30 18:45:06 +03:00
import Control.Monad.State.Class hiding (state)
import Control.Monad.Trans
import Control.Monad.Trans.Identity
import qualified Control.Applicative as A
import qualified Control.Monad.Trans.Reader as L
import qualified Control.Monad.Trans.State.Lazy as L
import qualified Control.Monad.Trans.State.Strict as S
import qualified Control.Monad.Trans.Writer.Lazy as L
import qualified Control.Monad.Trans.Writer.Strict as S
2015-07-28 16:32:19 +03:00
import qualified Data.ByteString.Char8 as B
import qualified Data.ByteString.Lazy.Char8 as BL
import qualified Data.Text as T
import qualified Data.Text.Lazy as TL
import Text.Megaparsec.Error
import Text.Megaparsec.Pos
import Text.Megaparsec.ShowToken
-- | This is Megaparsec state, it's parametrized over stream type @s@.
2015-07-30 21:36:54 +03:00
data State s = State
2015-08-12 20:51:06 +03:00
{ stateInput :: s
, statePos :: !SourcePos }
deriving (Show, Eq)
-- | An instance of @Stream s t@ has stream type @s@, and token type @t@
-- determined by the stream.
2008-01-13 20:53:15 +03:00
class (ShowToken t, ShowToken [t]) => Stream s t | s -> t where
uncons :: s -> Maybe (t, s)
2009-03-02 03:20:00 +03:00
instance (ShowToken t, ShowToken [t]) => Stream [t] t where
uncons [] = Nothing
uncons (t:ts) = Just (t, ts)
2015-08-12 20:51:06 +03:00
{-# INLINE uncons #-}
2009-03-02 03:20:00 +03:00
instance Stream B.ByteString Char where
uncons = B.uncons
{-# INLINE uncons #-}
2008-01-13 20:53:15 +03:00
instance Stream BL.ByteString Char where
uncons = BL.uncons
{-# INLINE uncons #-}
2008-01-13 20:53:15 +03:00
instance Stream T.Text Char where
uncons = T.uncons
2015-08-12 20:51:06 +03:00
{-# INLINE uncons #-}
instance Stream TL.Text Char where
uncons = TL.uncons
2015-08-12 20:51:06 +03:00
{-# INLINE uncons #-}
2008-01-13 20:53:15 +03:00
2015-07-30 21:36:54 +03:00
-- | This data structure represents an aspect of result of parser's
-- work. The two constructors have the following meaning:
--
-- * @Cosumed@ is a wrapper for result when some part of input stream
2015-08-12 15:41:22 +03:00
-- was consumed.
-- * @Empty@ is a wrapper for result when no input was consumed.
2015-07-30 21:36:54 +03:00
--
-- See also: 'Reply'.
2015-07-30 21:36:54 +03:00
data Consumed a = Consumed a | Empty !a
2008-01-13 20:53:15 +03:00
2015-07-30 21:36:54 +03:00
-- | This data structure represents an aspect of result of parser's
-- work. The two constructors have the following meaning:
--
-- * @Ok@ for successfully run parser.
-- * @Error@ for failed parser.
--
-- See also 'Consumed'.
2015-07-30 21:36:54 +03:00
data Reply s a = Ok a !(State s) | Error ParseError
-- | 'Hints' represent collection of strings to be included into 'ParserError'
-- as “expected” messages when a parser fails without consuming input right
-- after successful parser that produced the hints.
--
-- For example, without hints you could get:
--
-- >>> parseTest (many (char 'r') <* eof) "ra"
-- parse error at line 1, column 2:
-- unexpected 'a'
-- expecting end of input
--
-- we're getting better error messages with help of hints:
--
-- >>> parseTest (many (char 'r') <* eof) "ra"
-- parse error at line 1, column 2:
-- unexpected 'a'
-- expecting 'r' or end of input
newtype Hints = Hints [[String]] deriving Monoid
-- | Convert 'ParseError' record into 'Hints'.
toHints :: ParseError -> Hints
toHints err = Hints hints
where hints = if null msgs then [] else [messageString <$> msgs]
msgs = filter ((== 1) . fromEnum) $ errorMessages err
-- | @withHints hs c@ makes “error” continuation @c@ use given hints @hs@.
withHints :: Hints -> (ParseError -> m b) -> ParseError -> m b
withHints (Hints xs) c = c . addHints
where addHints err = foldr addErrorMessage err (Expected <$> concat xs)
-- | @accHints hs c@ results in “OK” continuation that will add given hints
-- @hs@ to third argument of original continuation @c@.
accHints :: Hints -> (a -> State s -> Hints -> m b) ->
a -> State s -> Hints -> m b
accHints hs1 c x s hs2 = c x s (hs1 <> hs2)
-- | Replace most recent group of hints (if any) with given string. Used in
-- 'label' combinator.
refreshLastHint :: Hints -> String -> Hints
refreshLastHint (Hints []) _ = Hints []
refreshLastHint (Hints (_:xs)) "" = Hints xs
refreshLastHint (Hints (_:xs)) l = Hints ([l]:xs)
-- If you're reading this, you may be interested in how Megaparsec works on
-- lower level. That's quite simple. 'ParsecT' is a wrapper around function
-- that takes five arguments:
--
-- * State. It includes input stream, position in input stream and
-- user's backtracking state.
--
-- * “Consumed-OK” continuation (cok). This is just a function that
-- takes three arguments: result of parsing, state after parsing, and
-- hints (see their description above). This continuation is called when
-- something has been consumed during parsing and result is OK (no error
-- occurred).
--
-- * “Consumed-error” continuation (cerr). This function is called when
-- some part of input stream has been consumed and parsing resulted in
-- an error. When error happens, parsing stops and we're only interested
-- in error message, so this continuation takes 'ParseError' as its only
-- argument.
--
-- * “Empty-OK” continuation (eok). The function takes the same
-- arguments as “consumed-OK” continuation. “Empty-OK” is called when no
-- input has been consumed and no error occurred.
--
-- * “Empty-error” continuation (eerr). The function is called when no
-- input has been consumed, but nonetheless parsing resulted in an
-- error. Just like “consumed-error”, the continuation take single
-- argument — 'ParseError' record.
--
-- You call specific continuation when you want to proceed in that specific
-- branch of control flow.
-- | @Parsec@ is non-transformer variant of more general @ParsecT@
-- monad-transformer.
type Parsec s = ParsecT s Identity
2015-07-30 18:45:06 +03:00
-- | @ParsecT s m a@ is a parser with stream type @s@, underlying monad @m@
-- and return type @a@.
2015-07-30 18:45:06 +03:00
newtype ParsecT s m a = ParsecT
{ unParser :: forall b. State s
-> (a -> State s -> Hints -> m b) -- consumed-OK
-> (ParseError -> m b) -- consumed-error
-> (a -> State s -> Hints -> m b) -- empty-OK
-> (ParseError -> m b) -- empty-error
-> m b }
2008-01-13 20:53:15 +03:00
instance Functor (ParsecT s m) where
fmap = pMap
2008-01-13 20:53:15 +03:00
pMap :: (a -> b) -> ParsecT s m a -> ParsecT s m b
pMap f p = ParsecT $ \s cok cerr eok eerr ->
2015-08-12 20:51:06 +03:00
unParser p s (cok . f) cerr (eok . f) eerr
{-# INLINE pMap #-}
2008-01-13 20:53:15 +03:00
instance A.Applicative (ParsecT s m) where
2015-08-12 20:51:06 +03:00
pure = return
(<*>) = ap
(*>) = (>>)
p1 <* p2 = do { x1 <- p1 ; void p2 ; return x1 }
instance A.Alternative (ParsecT s m) where
2015-08-12 20:51:06 +03:00
empty = mzero
(<|>) = mplus
many p = reverse <$> manyAcc p
manyAcc :: ParsecT s m a -> ParsecT s m [a]
manyAcc p = ParsecT $ \s cok cerr eok _ ->
let errToHints c err = c (toHints err)
walk xs x s' _ =
unParser p s'
(seq xs $ walk $ x:xs) -- consumed-OK
cerr -- consumed-error
manyErr -- empty-OK
(errToHints $ cok (x:xs) s') -- empty-error
in unParser p s (walk []) cerr manyErr (errToHints $ eok [] s)
manyErr :: a
manyErr = error
"Text.Megaparsec.Prim.many: combinator 'many' is applied to a parser \
\that accepts an empty string."
2008-01-13 20:53:15 +03:00
instance Monad (ParsecT s m) where
return = pReturn
(>>=) = pBind
fail = pFail
2008-02-05 08:45:50 +03:00
pReturn :: a -> ParsecT s m a
pReturn x = ParsecT $ \s _ _ eok _ -> eok x s mempty
{-# INLINE pReturn #-}
2009-03-02 03:20:00 +03:00
pBind :: ParsecT s m a -> (a -> ParsecT s m b) -> ParsecT s m b
pBind m k = ParsecT $ \s cok cerr eok eerr ->
let mcok x s' hs = unParser (k x) s' cok cerr
(accHints hs cok) (withHints hs cerr)
meok x s' hs = unParser (k x) s' cok cerr
(accHints hs eok) (withHints hs eerr)
in unParser m s mcok cerr meok eerr
{-# INLINE pBind #-}
2008-01-13 20:53:15 +03:00
pFail :: String -> ParsecT s m a
pFail msg = ParsecT $ \s _ _ _ eerr ->
2015-08-12 20:51:06 +03:00
eerr $ newErrorMessage (Message msg) (statePos s)
{-# INLINE pFail #-}
2008-01-13 20:53:15 +03:00
-- | Low-level creation of the ParsecT type.
2015-07-30 18:45:06 +03:00
mkPT :: Monad m => (State s -> m (Consumed (m (Reply s a)))) -> ParsecT s m a
2015-07-30 18:45:06 +03:00
mkPT k = ParsecT $ \s cok cerr eok eerr -> do
2015-08-12 20:51:06 +03:00
cons <- k s
case cons of
Consumed mrep -> do
rep <- mrep
case rep of
Ok x s' -> cok x s' mempty
Error err -> cerr err
2015-08-12 20:51:06 +03:00
Empty mrep -> do
rep <- mrep
case rep of
Ok x s' -> eok x s' mempty
Error err -> eerr err
2015-07-30 18:45:06 +03:00
instance MonadIO m => MonadIO (ParsecT s m) where
2015-08-12 20:51:06 +03:00
liftIO = lift . liftIO
2015-07-30 18:45:06 +03:00
instance MonadReader r m => MonadReader r (ParsecT s m) where
2015-08-12 20:51:06 +03:00
ask = lift ask
local f p = mkPT $ \s -> local f (runParsecT p s)
2015-07-30 18:45:06 +03:00
instance MonadState s m => MonadState s (ParsecT s' m) where
2015-08-12 20:51:06 +03:00
get = lift get
put = lift . put
2015-07-30 18:45:06 +03:00
instance MonadCont m => MonadCont (ParsecT s m) where
2015-08-12 20:51:06 +03:00
callCC f = mkPT $ \s ->
callCC $ \c ->
runParsecT (f (\a -> mkPT $ \s' -> c (pack s' a))) s
where pack s a = Empty $ return (Ok a s)
2015-07-30 18:45:06 +03:00
instance MonadError e m => MonadError e (ParsecT s m) where
2015-08-12 20:51:06 +03:00
throwError = lift . throwError
p `catchError` h = mkPT $ \s ->
runParsecT p s `catchError` \e ->
runParsecT (h e) s
2008-01-13 20:53:15 +03:00
instance MonadPlus (ParsecT s m) where
mzero = pZero
mplus = pPlus
pZero :: ParsecT s m a
pZero = ParsecT $ \(State _ pos) _ _ _ eerr -> eerr $ newErrorUnknown pos
2009-03-02 03:20:00 +03:00
pPlus :: ParsecT s m a -> ParsecT s m a -> ParsecT s m a
pPlus m n = ParsecT $ \s cok cerr eok eerr ->
2015-08-12 20:51:06 +03:00
let meerr err =
let ncerr err' = cerr (mergeError err' err)
neok x s' hs = eok x s' (toHints err <> hs)
neerr err' = eerr (mergeError err' err)
in unParser n s cok ncerr neok neerr
2015-08-12 20:51:06 +03:00
in unParser m s cok cerr eok meerr
{-# INLINE pPlus #-}
2008-01-13 20:53:15 +03:00
instance MonadTrans (ParsecT s) where
lift amb = ParsecT $ \s _ _ eok _ -> amb >>= \a -> eok a s mempty
2015-07-30 21:36:54 +03:00
-- Primitive combinators
infix 0 <?>
-- | Type class describing parsers independent of input type.
class (A.Alternative m, Monad m, Stream s t) =>
MonadParsec s m t | m -> s t where
-- | The parser @unexpected msg@ always fails with an unexpected error
-- message @msg@ without consuming any input.
--
-- The parsers 'fail', ('<?>') and @unexpected@ are the three parsers used
-- to generate error messages. Of these, only ('<?>') is commonly used.
unexpected :: String -> m a
-- | The parser @label name p@ behaves as parser @p@, but whenever the
-- parser @p@ fails /without consuming any input/, it replaces names of
-- “expected” tokens with the name @name@.
label :: String -> m a -> m a
-- | @hidden p@ behaves just like parser @p@, but it doesn't show any
-- “expected” tokens in error message when @p@ fails.
hidden :: m a -> m a
hidden = label ""
-- | The parser @try p@ behaves like parser @p@, except that it
-- pretends that it hasn't consumed any input when an error occurs.
--
-- This combinator is used whenever arbitrary look ahead is needed. Since
-- it pretends that it hasn't consumed any input when @p@ fails, the
-- ('A.<|>') combinator will try its second alternative even when the
-- first parser failed while consuming input.
--
-- For example, here is a parser that will /try/ (sorry for the pun) to
-- parse word “let” or “lexical”:
--
-- >>> parseTest (string "let" <|> string "lexical") "lexical"
-- parse error at line 1, column 1:
-- unexpected "lex"
-- expecting "let"
--
-- First parser consumed “le” and failed, @string "lexical"@ couldn't
-- succeed with “xical” as its input! Things get much better with help of
-- @try@:
--
-- >>> parseTest (try (string "let") <|> string "lexical") "lexical"
-- "lexical"
--
-- @try@ also improves error messages in case of overlapping alternatives,
-- because Megaparsec's hint system can be used:
--
-- >>> parseTest (try (string "let") <|> string "lexical") "le"
-- parse error at line 1, column 1:
-- unexpected "le"
-- expecting "let" or "lexical"
try :: m a -> m a
-- | @lookAhead p@ parses @p@ without consuming any input.
--
-- If @p@ fails and consumes some input, so does @lookAhead@. Combine with
-- 'try' if this is undesirable.
lookAhead :: m a -> m a
-- | @notFollowedBy p@ only succeeds when parser @p@ fails. This parser
-- does not consume any input and can be used to implement the “longest
-- match” rule.
notFollowedBy :: m a -> m ()
-- | This parser only succeeds at the end of the input.
eof :: m ()
-- | The parser @token nextPos testTok@ accepts a token @t@ with result
-- @x@ when the function @testTok t@ returns @'Just' x@. The position of
-- the /next/ token should be returned when @nextPos@ is called with the
-- current source position @pos@, the current token @t@ and the rest of
-- the tokens @toks@, @nextPos pos t toks@.
--
-- This is the most primitive combinator for accepting tokens. For
-- example, the 'Text.Megaparsec.Char.char' parser could be implemented
-- as:
--
-- > char c = token nextPos testChar
-- > where testChar x = if x == c then Just x else Nothing
-- > nextPos pos x xs = updatePosChar pos x
token :: (SourcePos -> t -> s -> SourcePos) -- ^ Next position calculating function.
-> (t -> Either [Message] a) -- ^ Matching function for the token to parse.
-> m a
-- | The parser @tokens posFromTok test@ parses list of tokens and returns
-- it. The resulting parser will use 'showToken' to pretty-print the
-- collection of tokens. Supplied predicate @test@ is used to check
-- equality of given and parsed tokens.
--
-- This can be used to example to write 'Text.Megaparsec.Char.string':
--
-- > string = tokens updatePosString (==)
tokens :: Eq t =>
(SourcePos -> [t] -> SourcePos) -- ^ Computes position of tokens.
-> (t -> t -> Bool) -- ^ Predicate to check equality of tokens.
-> [t] -- ^ List of tokens to parse
-> m [t]
-- | Returns the full parser state as a 'State' record.
getParserState :: m (State s)
-- | @updateParserState f@ applies function @f@ to the parser state.
updateParserState :: (State s -> State s) -> m ()
instance Stream s t => MonadParsec s (ParsecT s m) t where
unexpected = pUnexpected
label = pLabel
try = pTry
lookAhead = pLookAhead
notFollowedBy = pNotFollowedBy
eof = pEof
token = pToken
tokens = pTokens
getParserState = pGetParserState
updateParserState = pUpdateParserState
pUnexpected :: String -> ParsecT s m a
pUnexpected msg = ParsecT $ \(State _ pos) _ _ _ eerr ->
eerr $ newErrorMessage (Unexpected msg) pos
pLabel :: String -> ParsecT s m a -> ParsecT s m a
pLabel l p = ParsecT $ \s cok cerr eok eerr ->
let cok' x s' hs = cok x s' $ refreshLastHint hs l
eok' x s' hs = eok x s' $ refreshLastHint hs l
eerr' err = eerr $ setErrorMessage (Expected l) err
in unParser p s cok' cerr eok' eerr'
pTry :: ParsecT s m a -> ParsecT s m a
pTry p = ParsecT $ \s cok _ eok eerr -> unParser p s cok eerr eok eerr
{-# INLINE pTry #-}
pLookAhead :: ParsecT s m a -> ParsecT s m a
pLookAhead p = ParsecT $ \s _ cerr eok eerr ->
let eok' a _ _ = eok a s mempty
in unParser p s eok' cerr eok' eerr
{-# INLINE pLookAhead #-}
pNotFollowedBy :: Stream s t => ParsecT s m a -> ParsecT s m ()
pNotFollowedBy p = ParsecT $ \s@(State input pos) _ _ eok eerr ->
let l = maybe eoi (showToken . fst) (uncons input)
cok' _ _ _ = eerr $ unexpectedErr l pos
cerr' _ = eok () s mempty
eok' _ _ _ = eerr $ unexpectedErr l pos
eerr' _ = eok () s mempty
in unParser p s cok' cerr' eok' eerr'
pEof :: Stream s t => ParsecT s m ()
pEof = label eoi $ ParsecT $ \s@(State input pos) _ _ eok eerr ->
case uncons input of
Nothing -> eok () s mempty
Just (x,_) -> eerr $ unexpectedErr (showToken x) pos
{-# INLINE pEof #-}
pToken :: Stream s t =>
(SourcePos -> t -> s -> SourcePos)
-> (t -> Either [Message] a)
-> ParsecT s m a
pToken nextpos test = ParsecT $ \(State input pos) cok _ _ eerr ->
case uncons input of
Nothing -> eerr $ unexpectedErr eoi pos
Just (c,cs) ->
case test c of
Left ms -> eerr $ foldr addErrorMessage (newErrorUnknown pos) ms
Right x -> let newpos = nextpos pos c cs
newstate = State cs newpos
in seq newpos $ seq newstate $ cok x newstate mempty
{-# INLINE pToken #-}
pTokens :: Stream s t =>
(SourcePos -> [t] -> SourcePos)
-> (t -> t -> Bool)
-> [t]
-> ParsecT s m [t]
pTokens _ _ [] = ParsecT $ \s _ _ eok _ -> eok [] s mempty
pTokens nextpos test tts = ParsecT $ \(State input pos) cok cerr _ eerr ->
2015-08-12 20:51:06 +03:00
let errExpect x = setErrorMessage (Expected $ showToken tts)
(newErrorMessage (Unexpected x) pos)
walk [] _ rs = let pos' = nextpos pos tts
s' = State rs pos'
in cok tts s' mempty
walk (t:ts) is rs =
let errorCont = if null is then eerr else cerr
what = bool (showToken $ reverse is) "end of input" (null is)
in case uncons rs of
Nothing -> errorCont . errExpect $ what
Just (x,xs)
| test t x -> walk ts (x:is) xs
| otherwise -> errorCont . errExpect . showToken $ reverse (x:is)
in walk tts [] input
{-# INLINE pTokens #-}
pGetParserState :: ParsecT s m (State s)
pGetParserState = ParsecT $ \s _ _ eok _ -> eok s s mempty
{-# INLINE pGetParserState #-}
pUpdateParserState :: (State s -> State s) -> ParsecT s m ()
pUpdateParserState f = ParsecT $ \s _ _ eok _ -> eok () (f s) mempty
{-# INLINE pUpdateParserState #-}
2008-01-13 20:53:15 +03:00
-- | A synonym for 'label' in form of an operator.
(<?>) :: MonadParsec s m t => m a -> String -> m a
(<?>) = flip label
unexpectedErr :: String -> SourcePos -> ParseError
unexpectedErr msg = newErrorMessage (Unexpected msg)
2015-07-30 18:45:06 +03:00
eoi :: String
eoi = "end of input"
2008-01-13 20:53:15 +03:00
2015-07-30 18:45:06 +03:00
-- Parser state combinators
-- | Returns the current source position. See also 'SourcePos'.
2008-01-13 20:53:15 +03:00
getPosition :: MonadParsec s m t => m SourcePos
2015-07-30 18:45:06 +03:00
getPosition = statePos <$> getParserState
2008-01-13 20:53:15 +03:00
-- | @setPosition pos@ sets the current source position to @pos@.
setPosition :: MonadParsec s m t => SourcePos -> m ()
setPosition pos = updateParserState (\(State s _) -> State s pos)
2015-07-30 18:45:06 +03:00
-- | Returns the current input.
getInput :: MonadParsec s m t => m s
2015-07-30 18:45:06 +03:00
getInput = stateInput <$> getParserState
2008-01-13 20:53:15 +03:00
-- | @setInput input@ continues parsing with @input@. The 'getInput' and
2015-07-30 18:45:06 +03:00
-- @setInput@ functions can for example be used to deal with #include files.
setInput :: MonadParsec s m t => s -> m ()
setInput s = updateParserState (\(State _ pos) -> State s pos)
2008-01-13 20:53:15 +03:00
2015-07-28 16:32:19 +03:00
-- | @setParserState st@ set the full parser state to @st@.
setParserState :: MonadParsec s m t => State s -> m ()
2008-01-13 20:53:15 +03:00
setParserState st = updateParserState (const st)
-- Running a parser
-- | @parse p file input@ runs a parser @p@ over 'Identity'. The
-- @file@ is only used in error messages and may be the empty
-- string. Returns either a 'ParseError' ('Left') or a value of type @a@
-- ('Right'). This is a synonym for 'runParser'.
--
-- > main = case (parse numbers "" "11, 2, 43") of
-- > Left err -> print err
-- > Right xs -> print (sum xs)
-- >
-- > numbers = commaSep integer
2008-01-13 20:53:15 +03:00
parse :: Stream s t => Parsec s a -> SourceName -> s -> Either ParseError a
parse = runParser
-- | @parse' p input@ runs parser @p@ on @input@ and returns result
-- inside 'Just' on success and 'Nothing' on failure. This function also
-- parses 'eof', so all input should be consumed by the parser @p@.
--
-- The function is supposed to be useful for lightweight parsing, where
-- error messages (and thus file name) are not important and entire input
-- should be parsed. For example it can be used when parsing of single
-- number according to specification of its format is desired.
2008-01-13 20:53:15 +03:00
parse' :: Stream s t => Parsec s a -> s -> Maybe a
parse' p s =
case parse (p <* eof) "" s of
Left _ -> Nothing
Right x -> Just x
2008-01-13 20:53:15 +03:00
-- | The expression @parseTest p input@ applies a parser @p@ against
-- input @input@ and prints the result to stdout. Used for testing.
parseTest :: (Stream s t, Show a) => Parsec s a -> s -> IO ()
parseTest p input =
case parse p "" input of
Left err -> putStr "parse error at " >> print err
Right x -> print x
2008-01-13 20:53:15 +03:00
-- | The most general way to run a parser over the 'Identity' monad.
-- @runParser p file input@ runs parser @p@ on the input list of tokens
-- @input@, obtained from source @file@. The @file@ is only used in error
-- messages and may be the empty string. Returns either a 'ParseError'
-- ('Left') or a value of type @a@ ('Right').
--
-- > parseFromFile p file = runParser p file <$> readFile file
runParser :: Stream s t => Parsec s a -> SourceName -> s -> Either ParseError a
runParser p name s = runIdentity $ runParserT p name s
-- | The most general way to run a parser. @runParserT p file input@ runs
-- parser @p@ on the input list of tokens @input@, obtained from source
-- @file@. The @file@ is only used in error messages and may be the empty
-- string. Returns a computation in the underlying monad @m@ that return
-- either a 'ParseError' ('Left') or a value of type @a@ ('Right').
runParserT :: (Monad m, Stream s t) =>
ParsecT s m a -> SourceName -> s -> m (Either ParseError a)
runParserT p name s = do
res <- runParsecT p $ State s (initialPos name)
r <- parserReply res
case r of
Ok x _ -> return $ Right x
Error err -> return $ Left err
where parserReply res =
case res of
Consumed r -> r
Empty r -> r
-- | Low-level unpacking of the ParsecT type. 'runParserT' and 'runParser'
-- are built upon this.
runParsecT :: Monad m => ParsecT s m a -> State s -> m (Consumed (m (Reply s a)))
runParsecT p s = unParser p s cok cerr eok eerr
where cok a s' _ = return . Consumed . return $ Ok a s'
cerr err = return . Consumed . return $ Error err
eok a s' _ = return . Empty . return $ Ok a s'
eerr err = return . Empty . return $ Error err
-- Instances of 'MonadParsec'
instance (MonadPlus m, MonadParsec s m t) =>
MonadParsec s (L.StateT e m) t where
label n (L.StateT m) = L.StateT $ \s -> label n (m s)
try (L.StateT m) = L.StateT $ try . m
lookAhead (L.StateT m) = L.StateT $ \s -> lookAhead (m s)
notFollowedBy (L.StateT m) = L.StateT $ \s ->
notFollowedBy (fst <$> m s) >> return ((),s)
unexpected = lift . unexpected
eof = lift eof
token f e = lift $ token f e
tokens f e ts = lift $ tokens f e ts
getParserState = lift getParserState
updateParserState f = lift $ updateParserState f
instance (MonadPlus m, MonadParsec s m t) =>
MonadParsec s (S.StateT e m) t where
label n (S.StateT m) = S.StateT $ \s -> label n (m s)
try (S.StateT m) = S.StateT $ try . m
lookAhead (S.StateT m) = S.StateT $ \s -> lookAhead (m s)
notFollowedBy (S.StateT m) = S.StateT $ \s ->
notFollowedBy (fst <$> m s) >> return ((),s)
unexpected = lift . unexpected
eof = lift eof
token f e = lift $ token f e
tokens f e ts = lift $ tokens f e ts
getParserState = lift getParserState
updateParserState f = lift $ updateParserState f
instance (MonadPlus m, MonadParsec s m t) =>
MonadParsec s (L.ReaderT e m) t where
label n (L.ReaderT m) = L.ReaderT $ \s -> label n (m s)
try (L.ReaderT m) = L.ReaderT $ try . m
lookAhead (L.ReaderT m) = L.ReaderT $ \s -> lookAhead (m s)
notFollowedBy (L.ReaderT m) = L.ReaderT $ notFollowedBy . m
unexpected = lift . unexpected
eof = lift eof
token f e = lift $ token f e
tokens f e ts = lift $ tokens f e ts
getParserState = lift getParserState
updateParserState f = lift $ updateParserState f
instance (MonadPlus m, Monoid w, MonadParsec s m t) =>
MonadParsec s (L.WriterT w m) t where
label n (L.WriterT m) = L.WriterT $ label n m
try (L.WriterT m) = L.WriterT $ try m
lookAhead (L.WriterT m) = L.WriterT $ lookAhead m
notFollowedBy (L.WriterT m) = L.WriterT $
notFollowedBy (fst <$> m) >>= \x -> return (x,mempty)
unexpected = lift . unexpected
eof = lift eof
token f e = lift $ token f e
tokens f e ts = lift $ tokens f e ts
getParserState = lift getParserState
updateParserState f = lift $ updateParserState f
instance (MonadPlus m, Monoid w, MonadParsec s m t) =>
MonadParsec s (S.WriterT w m) t where
label n (S.WriterT m) = S.WriterT $ label n m
try (S.WriterT m) = S.WriterT $ try m
lookAhead (S.WriterT m) = S.WriterT $ lookAhead m
notFollowedBy (S.WriterT m) = S.WriterT $
notFollowedBy (fst <$> m) >>= \x -> return (x,mempty)
unexpected = lift . unexpected
eof = lift eof
token f e = lift $ token f e
tokens f e ts = lift $ tokens f e ts
getParserState = lift getParserState
updateParserState f = lift $ updateParserState f
instance (Monad m, MonadParsec s m t) =>
MonadParsec s (IdentityT m) t where
label n (IdentityT m) = IdentityT $ label n m
try = IdentityT . try . runIdentityT
lookAhead (IdentityT m) = IdentityT $ lookAhead m
notFollowedBy (IdentityT m) = IdentityT $ notFollowedBy m
unexpected = lift . unexpected
eof = lift eof
token f e = lift $ token f e
tokens f e ts = lift $ tokens f e ts
getParserState = lift getParserState
updateParserState f = lift $ updateParserState f