2014-10-06 21:14:23 +00:00
|
|
|
{-# OPTIONS_HADDOCK ignore-exports #-}
|
|
|
|
|
2014-10-07 17:12:07 +00:00
|
|
|
module Parser.Core (Parser,
|
2014-09-30 16:28:19 +00:00
|
|
|
runParser,
|
|
|
|
satisfy,
|
|
|
|
char,
|
|
|
|
posInt,
|
2014-09-30 22:05:29 +00:00
|
|
|
posDouble,
|
2014-10-11 02:39:51 +00:00
|
|
|
negDouble,
|
|
|
|
allDouble,
|
2014-09-30 16:28:19 +00:00
|
|
|
oneOrMore,
|
|
|
|
zeroOrMore,
|
|
|
|
spaces) where
|
|
|
|
|
|
|
|
import Control.Applicative
|
|
|
|
import Data.Char
|
2014-10-11 23:57:20 +00:00
|
|
|
import MyPrelude
|
2014-09-30 16:28:19 +00:00
|
|
|
|
2014-10-09 22:19:05 +00:00
|
|
|
|
2014-09-30 16:28:19 +00:00
|
|
|
-- |The parser type. It allows us to create specific parsers,
|
|
|
|
-- combine them and run them via 'runParser' to get a result.
|
|
|
|
newtype Parser a = MkParser { runParser :: String -> Maybe (a, String) }
|
|
|
|
|
2014-10-09 22:19:05 +00:00
|
|
|
|
2014-09-30 16:28:19 +00:00
|
|
|
-- |Functor instance.
|
|
|
|
instance Functor Parser where
|
2014-10-05 13:57:18 +00:00
|
|
|
fmap = inParser . fmap . fmap . first
|
2014-09-30 16:28:19 +00:00
|
|
|
|
2014-10-09 22:19:05 +00:00
|
|
|
|
2014-09-30 16:28:19 +00:00
|
|
|
-- |Applicative functor instance.
|
|
|
|
instance Applicative Parser where
|
2014-10-09 22:19:05 +00:00
|
|
|
pure a = MkParser (\s -> Just (a, s))
|
2014-09-30 16:28:19 +00:00
|
|
|
(MkParser fp) <*> xp = MkParser $ \s ->
|
|
|
|
case fp s of
|
|
|
|
Nothing -> Nothing
|
|
|
|
Just (f,x) -> runParser (f <$> xp) x
|
|
|
|
|
2014-10-09 22:19:05 +00:00
|
|
|
|
2014-09-30 16:28:19 +00:00
|
|
|
-- |Alternative functor instance.
|
|
|
|
instance Alternative Parser where
|
2014-10-09 22:19:05 +00:00
|
|
|
empty = MkParser (const Nothing)
|
2014-09-30 16:28:19 +00:00
|
|
|
MkParser p1 <|> MkParser p2 = MkParser $ liftA2 (<|>) p1 p2
|
|
|
|
|
2014-10-09 22:19:05 +00:00
|
|
|
|
2014-09-30 16:28:19 +00:00
|
|
|
inParser :: ((String -> Maybe (a1, String))
|
|
|
|
-> String
|
|
|
|
-> Maybe (a, String))
|
|
|
|
-> Parser a1
|
|
|
|
-> Parser a
|
|
|
|
inParser f p = MkParser . f . runParser $ p
|
|
|
|
|
2014-10-09 22:19:05 +00:00
|
|
|
|
2014-09-30 16:28:19 +00:00
|
|
|
-- |Creates a Parser that parses a Char depending on a given condition.
|
|
|
|
satisfy :: (Char -> Bool) -- ^ condition
|
|
|
|
-> Parser Char -- ^ created Parser
|
|
|
|
satisfy p = MkParser f
|
|
|
|
where
|
|
|
|
f [] = Nothing
|
|
|
|
f (x:xs)
|
|
|
|
| p x = Just (x, xs)
|
|
|
|
| otherwise = Nothing
|
|
|
|
|
2014-10-09 22:19:05 +00:00
|
|
|
|
2014-09-30 16:28:19 +00:00
|
|
|
-- |Creates a Parser that accepts a given Char.
|
|
|
|
char :: Char -> Parser Char
|
|
|
|
char c = satisfy (== c)
|
|
|
|
|
2014-10-09 22:19:05 +00:00
|
|
|
|
2014-09-30 16:28:19 +00:00
|
|
|
-- |Creates a Parser that accepts positive integers.
|
|
|
|
posInt :: Parser Integer
|
|
|
|
posInt = MkParser f
|
|
|
|
where
|
|
|
|
f xs
|
|
|
|
| null ns = Nothing
|
|
|
|
| otherwise = Just (read ns, rest)
|
|
|
|
where (ns, rest) = span isDigit xs
|
|
|
|
|
2014-10-09 22:19:05 +00:00
|
|
|
|
2014-10-09 15:00:03 +00:00
|
|
|
-- |Creates a Parser that accepts positive doubles.
|
|
|
|
-- Both 131.31 and 132 are valid.
|
2014-09-30 22:05:29 +00:00
|
|
|
posDouble :: Parser Double
|
2014-10-09 22:19:05 +00:00
|
|
|
posDouble =
|
|
|
|
(read <$>) $
|
|
|
|
(\x y z -> x ++ [y] ++ z) <$>
|
|
|
|
MkParser f <*>
|
|
|
|
char '.' <*>
|
|
|
|
MkParser f <|>
|
|
|
|
MkParser f
|
2014-09-30 16:28:19 +00:00
|
|
|
where
|
|
|
|
f xs
|
|
|
|
| null ns = Nothing
|
|
|
|
| otherwise = Just (ns, rest)
|
|
|
|
where (ns, rest) = span isDigit xs
|
|
|
|
|
2014-10-09 22:19:05 +00:00
|
|
|
|
2014-10-11 02:39:51 +00:00
|
|
|
-- |Creates a Parser that accepts negative doubles.
|
|
|
|
-- Both -131.31 and -132 are valid.
|
|
|
|
negDouble :: Parser Double
|
|
|
|
negDouble =
|
|
|
|
(negate <$>) $
|
|
|
|
(read <$>) $
|
|
|
|
(\x y z -> x ++ [y] ++ z) <$>
|
|
|
|
(char '-' *> MkParser f) <*>
|
|
|
|
char '.' <*>
|
|
|
|
MkParser f <|>
|
|
|
|
(char '-' *> MkParser f)
|
|
|
|
where
|
|
|
|
f xs
|
|
|
|
| null ns = Nothing
|
|
|
|
| otherwise = Just (ns, rest)
|
|
|
|
where (ns, rest) = span isDigit xs
|
|
|
|
|
|
|
|
|
|
|
|
-- |Creates a Parser that accepts both positive and negative doubles.
|
|
|
|
allDouble :: Parser Double
|
|
|
|
allDouble = negDouble <|> posDouble
|
|
|
|
|
|
|
|
|
2014-09-30 16:28:19 +00:00
|
|
|
-- |Convert a given Parser to a Parser that accepts zero or more occurences.
|
|
|
|
zeroOrMore :: Parser a -> Parser [a]
|
|
|
|
zeroOrMore p = oneOrMore p <|> pure []
|
|
|
|
|
2014-10-09 22:19:05 +00:00
|
|
|
|
2014-09-30 16:28:19 +00:00
|
|
|
-- |Convert a given Parser to a Parser that accepts one or more occurences.
|
|
|
|
oneOrMore :: Parser a -> Parser [a]
|
|
|
|
oneOrMore p = (:) <$> p <*> zeroOrMore p
|
|
|
|
|
2014-10-09 22:19:05 +00:00
|
|
|
|
2014-09-30 16:28:19 +00:00
|
|
|
-- |Creates a Parser that accepts spaces.
|
|
|
|
spaces :: Parser String
|
|
|
|
spaces = zeroOrMore (satisfy isSpace)
|