module Agda.Syntax.Parser.LookAhead
(
LookAhead
, runLookAhead
, lookAheadError
, getInput, setInput, liftP
, nextChar, eatNextChar
, sync, rollback
, match, match'
)
where
import Control.Monad.Reader
import Control.Monad.State
import Agda.Syntax.Parser.Alex
import Agda.Syntax.Parser.Monad
import Agda.Utils.Null (ifNull)
import Agda.Utils.Maybe (fromMaybeM)
newtype LookAhead a =
LookAhead { forall a.
LookAhead a -> ReaderT ErrorFunction (StateT AlexInput Parser) a
_unLookAhead :: ReaderT ErrorFunction
(StateT AlexInput Parser) a
}
deriving ((forall a b. (a -> b) -> LookAhead a -> LookAhead b)
-> (forall a b. a -> LookAhead b -> LookAhead a)
-> Functor LookAhead
forall a b. a -> LookAhead b -> LookAhead a
forall a b. (a -> b) -> LookAhead a -> LookAhead b
forall (f :: * -> *).
(forall a b. (a -> b) -> f a -> f b)
-> (forall a b. a -> f b -> f a) -> Functor f
$cfmap :: forall a b. (a -> b) -> LookAhead a -> LookAhead b
fmap :: forall a b. (a -> b) -> LookAhead a -> LookAhead b
$c<$ :: forall a b. a -> LookAhead b -> LookAhead a
<$ :: forall a b. a -> LookAhead b -> LookAhead a
Functor, Functor LookAhead
Functor LookAhead =>
(forall a. a -> LookAhead a)
-> (forall a b. LookAhead (a -> b) -> LookAhead a -> LookAhead b)
-> (forall a b c.
(a -> b -> c) -> LookAhead a -> LookAhead b -> LookAhead c)
-> (forall a b. LookAhead a -> LookAhead b -> LookAhead b)
-> (forall a b. LookAhead a -> LookAhead b -> LookAhead a)
-> Applicative LookAhead
forall a. a -> LookAhead a
forall a b. LookAhead a -> LookAhead b -> LookAhead a
forall a b. LookAhead a -> LookAhead b -> LookAhead b
forall a b. LookAhead (a -> b) -> LookAhead a -> LookAhead b
forall a b c.
(a -> b -> c) -> LookAhead a -> LookAhead b -> LookAhead c
forall (f :: * -> *).
Functor f =>
(forall a. a -> f a)
-> (forall a b. f (a -> b) -> f a -> f b)
-> (forall a b c. (a -> b -> c) -> f a -> f b -> f c)
-> (forall a b. f a -> f b -> f b)
-> (forall a b. f a -> f b -> f a)
-> Applicative f
$cpure :: forall a. a -> LookAhead a
pure :: forall a. a -> LookAhead a
$c<*> :: forall a b. LookAhead (a -> b) -> LookAhead a -> LookAhead b
<*> :: forall a b. LookAhead (a -> b) -> LookAhead a -> LookAhead b
$cliftA2 :: forall a b c.
(a -> b -> c) -> LookAhead a -> LookAhead b -> LookAhead c
liftA2 :: forall a b c.
(a -> b -> c) -> LookAhead a -> LookAhead b -> LookAhead c
$c*> :: forall a b. LookAhead a -> LookAhead b -> LookAhead b
*> :: forall a b. LookAhead a -> LookAhead b -> LookAhead b
$c<* :: forall a b. LookAhead a -> LookAhead b -> LookAhead a
<* :: forall a b. LookAhead a -> LookAhead b -> LookAhead a
Applicative, Applicative LookAhead
Applicative LookAhead =>
(forall a b. LookAhead a -> (a -> LookAhead b) -> LookAhead b)
-> (forall a b. LookAhead a -> LookAhead b -> LookAhead b)
-> (forall a. a -> LookAhead a)
-> Monad LookAhead
forall a. a -> LookAhead a
forall a b. LookAhead a -> LookAhead b -> LookAhead b
forall a b. LookAhead a -> (a -> LookAhead b) -> LookAhead b
forall (m :: * -> *).
Applicative m =>
(forall a b. m a -> (a -> m b) -> m b)
-> (forall a b. m a -> m b -> m b)
-> (forall a. a -> m a)
-> Monad m
$c>>= :: forall a b. LookAhead a -> (a -> LookAhead b) -> LookAhead b
>>= :: forall a b. LookAhead a -> (a -> LookAhead b) -> LookAhead b
$c>> :: forall a b. LookAhead a -> LookAhead b -> LookAhead b
>> :: forall a b. LookAhead a -> LookAhead b -> LookAhead b
$creturn :: forall a. a -> LookAhead a
return :: forall a. a -> LookAhead a
Monad)
newtype ErrorFunction =
ErrorFun { ErrorFunction -> forall a. String -> LookAhead a
throwError :: forall a. String -> LookAhead a }
lookAheadError :: String -> LookAhead a
String
s = ((String -> LookAhead a) -> String -> LookAhead a
forall a b. (a -> b) -> a -> b
$ String
s) ((String -> LookAhead a) -> LookAhead a)
-> LookAhead (String -> LookAhead a) -> LookAhead a
forall (m :: * -> *) a b. Monad m => (a -> m b) -> m a -> m b
=<< do ReaderT
ErrorFunction (StateT AlexInput Parser) (String -> LookAhead a)
-> LookAhead (String -> LookAhead a)
forall a.
ReaderT ErrorFunction (StateT AlexInput Parser) a -> LookAhead a
LookAhead (ReaderT
ErrorFunction (StateT AlexInput Parser) (String -> LookAhead a)
-> LookAhead (String -> LookAhead a))
-> ReaderT
ErrorFunction (StateT AlexInput Parser) (String -> LookAhead a)
-> LookAhead (String -> LookAhead a)
forall a b. (a -> b) -> a -> b
$ (ErrorFunction -> String -> LookAhead a)
-> ReaderT
ErrorFunction (StateT AlexInput Parser) (String -> LookAhead a)
forall r (m :: * -> *) a. MonadReader r m => (r -> a) -> m a
asks (\ErrorFunction
e -> ErrorFunction -> forall a. String -> LookAhead a
throwError ErrorFunction
e)
getInput :: LookAhead AlexInput
getInput :: LookAhead AlexInput
getInput = ReaderT ErrorFunction (StateT AlexInput Parser) AlexInput
-> LookAhead AlexInput
forall a.
ReaderT ErrorFunction (StateT AlexInput Parser) a -> LookAhead a
LookAhead ReaderT ErrorFunction (StateT AlexInput Parser) AlexInput
forall s (m :: * -> *). MonadState s m => m s
get
setInput :: AlexInput -> LookAhead ()
setInput :: AlexInput -> LookAhead ()
setInput = ReaderT ErrorFunction (StateT AlexInput Parser) () -> LookAhead ()
forall a.
ReaderT ErrorFunction (StateT AlexInput Parser) a -> LookAhead a
LookAhead (ReaderT ErrorFunction (StateT AlexInput Parser) ()
-> LookAhead ())
-> (AlexInput
-> ReaderT ErrorFunction (StateT AlexInput Parser) ())
-> AlexInput
-> LookAhead ()
forall b c a. (b -> c) -> (a -> b) -> a -> c
. AlexInput -> ReaderT ErrorFunction (StateT AlexInput Parser) ()
forall s (m :: * -> *). MonadState s m => s -> m ()
put
liftP :: Parser a -> LookAhead a
liftP :: forall a. Parser a -> LookAhead a
liftP = ReaderT ErrorFunction (StateT AlexInput Parser) a -> LookAhead a
forall a.
ReaderT ErrorFunction (StateT AlexInput Parser) a -> LookAhead a
LookAhead (ReaderT ErrorFunction (StateT AlexInput Parser) a -> LookAhead a)
-> (Parser a -> ReaderT ErrorFunction (StateT AlexInput Parser) a)
-> Parser a
-> LookAhead a
forall b c a. (b -> c) -> (a -> b) -> a -> c
. StateT AlexInput Parser a
-> ReaderT ErrorFunction (StateT AlexInput Parser) a
forall (m :: * -> *) a. Monad m => m a -> ReaderT ErrorFunction m a
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (StateT AlexInput Parser a
-> ReaderT ErrorFunction (StateT AlexInput Parser) a)
-> (Parser a -> StateT AlexInput Parser a)
-> Parser a
-> ReaderT ErrorFunction (StateT AlexInput Parser) a
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Parser a -> StateT AlexInput Parser a
forall (m :: * -> *) a. Monad m => m a -> StateT AlexInput m a
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift
nextChar :: LookAhead Char
nextChar :: LookAhead Char
nextChar = LookAhead Char -> LookAhead (Maybe Char) -> LookAhead Char
forall (m :: * -> *) a. Monad m => m a -> m (Maybe a) -> m a
fromMaybeM (String -> LookAhead Char
forall a. String -> LookAhead a
lookAheadError String
"unexpected end of file") LookAhead (Maybe Char)
nextCharMaybe
nextCharMaybe :: LookAhead (Maybe Char)
nextCharMaybe :: LookAhead (Maybe Char)
nextCharMaybe =
do inp <- LookAhead AlexInput
getInput
case alexGetChar inp of
Maybe (Char, AlexInput)
Nothing -> Maybe Char -> LookAhead (Maybe Char)
forall a. a -> LookAhead a
forall (m :: * -> *) a. Monad m => a -> m a
return Maybe Char
forall a. Maybe a
Nothing
Just (Char
c,AlexInput
inp') ->
do AlexInput -> LookAhead ()
setInput AlexInput
inp'
Maybe Char -> LookAhead (Maybe Char)
forall a. a -> LookAhead a
forall (m :: * -> *) a. Monad m => a -> m a
return (Maybe Char -> LookAhead (Maybe Char))
-> Maybe Char -> LookAhead (Maybe Char)
forall a b. (a -> b) -> a -> b
$ Char -> Maybe Char
forall a. a -> Maybe a
Just Char
c
sync :: LookAhead ()
sync :: LookAhead ()
sync =
do inp <- LookAhead AlexInput
getInput
liftP $ setLexInput inp
rollback :: LookAhead ()
rollback :: LookAhead ()
rollback =
do inp <- Parser AlexInput -> LookAhead AlexInput
forall a. Parser a -> LookAhead a
liftP Parser AlexInput
getLexInput
setInput inp
eatNextChar :: LookAhead Char
eatNextChar :: LookAhead Char
eatNextChar =
do c <- LookAhead Char
nextChar
sync
return c
match :: [(String, LookAhead a)] -> LookAhead a -> LookAhead a
match :: forall a. [(String, LookAhead a)] -> LookAhead a -> LookAhead a
match [(String, LookAhead a)]
xs LookAhead a
def =
do c <- LookAhead Char
nextChar
match' c xs def
match' :: Char -> [(String, LookAhead a)] -> LookAhead a -> LookAhead a
match' :: forall a.
Char -> [(String, LookAhead a)] -> LookAhead a -> LookAhead a
match' Char
c [(String, LookAhead a)]
xs LookAhead a
def = do
inp <- LookAhead AlexInput
getInput
let fallback = AlexInput -> LookAhead ()
setInput AlexInput
inp LookAhead () -> LookAhead a -> LookAhead a
forall a b. LookAhead a -> LookAhead b -> LookAhead b
forall (m :: * -> *) a b. Monad m => m a -> m b -> m b
>> LookAhead a
def
match'' fallback xs c
where
match'' :: LookAhead b -> [(String, LookAhead b)] -> Char -> LookAhead b
match'' LookAhead b
fallback [(String, LookAhead b)]
bs Char
c =
[(String, LookAhead b)]
-> LookAhead b
-> ([(String, LookAhead b)] -> LookAhead b)
-> LookAhead b
forall a b. Null a => a -> b -> (a -> b) -> b
ifNull [ (String
s, LookAhead b
p) | (Char
c':String
s, LookAhead b
p) <- [(String, LookAhead b)]
bs, Char
c Char -> Char -> Bool
forall a. Eq a => a -> a -> Bool
== Char
c' ]
LookAhead b
fallback
(([(String, LookAhead b)] -> LookAhead b) -> LookAhead b)
-> ([(String, LookAhead b)] -> LookAhead b) -> LookAhead b
forall a b. (a -> b) -> a -> b
$ \ [(String, LookAhead b)]
bs' -> do
fallback' <- do
case String -> [(String, LookAhead b)] -> Maybe (LookAhead b)
forall a b. Eq a => a -> [(a, b)] -> Maybe b
lookup String
"" [(String, LookAhead b)]
bs' of
Maybe (LookAhead b)
Nothing -> LookAhead b -> LookAhead (LookAhead b)
forall a. a -> LookAhead a
forall (f :: * -> *) a. Applicative f => a -> f a
pure LookAhead b
fallback
Just LookAhead b
p -> do
inp <- LookAhead AlexInput
getInput
pure $ setInput inp >> p
maybe fallback' (match'' fallback' bs') =<< nextCharMaybe
runLookAhead :: (forall b. String -> LookAhead b) -> LookAhead a -> Parser a
runLookAhead :: forall a.
(forall a. String -> LookAhead a) -> LookAhead a -> Parser a
runLookAhead forall a. String -> LookAhead a
err (LookAhead ReaderT ErrorFunction (StateT AlexInput Parser) a
m) =
do inp <- Parser AlexInput
getLexInput
evalStateT (runReaderT m (ErrorFun err)) inp