mirror of
https://github.com/mrkkrp/megaparsec.git
synced 2024-12-18 22:01:41 +03:00
149 lines
5.4 KiB
Haskell
149 lines
5.4 KiB
Haskell
-- |
|
||
-- Module : Text.Megaparsec.Expr
|
||
-- Copyright : © 2015 Megaparsec contributors
|
||
-- © 2007 Paolo Martini
|
||
-- © 1999–2001 Daan Leijen
|
||
-- License : BSD3
|
||
--
|
||
-- Maintainer : Mark Karpov <markkarpov@opmbx.org>
|
||
-- Stability : experimental
|
||
-- Portability : non-portable
|
||
--
|
||
-- A helper module to parse expressions. Builds a parser given a table of
|
||
-- operators.
|
||
|
||
module Text.Megaparsec.Expr
|
||
( Operator (..)
|
||
, makeExprParser )
|
||
where
|
||
|
||
import Control.Applicative ((<|>))
|
||
|
||
import Text.Megaparsec.Combinator
|
||
import Text.Megaparsec.Prim
|
||
|
||
-- | This data type specifies operators that work on values of type @a@.
|
||
-- An operator is either binary infix or unary prefix or postfix. A binary
|
||
-- operator has also an associated associativity.
|
||
|
||
data Operator s u m a
|
||
= InfixN (ParsecT s u m (a -> a -> a)) -- ^ non-associative infix
|
||
| InfixL (ParsecT s u m (a -> a -> a)) -- ^ left-associative infix
|
||
| InfixR (ParsecT s u m (a -> a -> a)) -- ^ right-associative infix
|
||
| Prefix (ParsecT s u m (a -> a)) -- ^ prefix
|
||
| Postfix (ParsecT s u m (a -> a)) -- ^ postfix
|
||
|
||
-- | @makeExprParser term table@ builds an expression parser for terms
|
||
-- @term@ with operators from @table@, taking the associativity and
|
||
-- precedence specified in @table@ into account.
|
||
--
|
||
-- @table@ is a list of @[Operator s u m a]@ lists. The list is ordered in
|
||
-- descending precedence. All operators in one list have the same precedence
|
||
-- (but may have a different associativity).
|
||
--
|
||
-- Prefix and postfix
|
||
-- operators of the same precedence can only occur once (i.e. @--2@ is not
|
||
-- allowed if @-@ is prefix negate). Prefix and postfix operators of the
|
||
-- same precedence associate to the left (i.e. if @++@ is postfix increment,
|
||
-- than @-2++@ equals @-1@, not @-3@).
|
||
--
|
||
-- The @makeExprParser@ takes care of all the complexity involved in
|
||
-- building expression parser. Here is an example of an expression parser
|
||
-- that handles prefix signs, postfix increment and basic arithmetic.
|
||
--
|
||
-- > expr = makeExprParser term table <?> "expression"
|
||
-- >
|
||
-- > term = parens expr <|> integer <?> "term"
|
||
-- >
|
||
-- > table = [ [ prefix "-" negate
|
||
-- > , prefix "+" id ]
|
||
-- > , [ postfix "++" (+1) ]
|
||
-- > , [ binary "*" (*)
|
||
-- > , binary "/" div ]
|
||
-- > , [ binary "+" (+)
|
||
-- > , binary "-" (-) ] ]
|
||
-- >
|
||
-- > binary name f = InfixL (reservedOp name >> return f)
|
||
-- > prefix name f = Prefix (reservedOp name >> return f)
|
||
-- > postfix name f = Postfix (reservedOp name >> return f)
|
||
|
||
makeExprParser :: Stream s m t => ParsecT s u m a ->
|
||
[[Operator s u m a]] -> ParsecT s u m a
|
||
makeExprParser = foldl addPrecLevel
|
||
|
||
-- | @addPrecLevel p ops@ adds ability to parse operators in table @ops@ to
|
||
-- parser @p@.
|
||
|
||
addPrecLevel :: Stream s m t =>
|
||
ParsecT s u m a -> [Operator s u m a] -> ParsecT s u m a
|
||
addPrecLevel term ops =
|
||
term' >>= \x -> choice [ras' x, las' x, nas' x, return x] <?> "operator"
|
||
where (ras, las, nas, prefix, postfix) = foldr splitOp ([],[],[],[],[]) ops
|
||
term' = pTerm (choice prefix) term (choice postfix)
|
||
ras' = pInfixR (choice ras) term'
|
||
las' = pInfixL (choice las) term'
|
||
nas' = pInfixN (choice nas) term'
|
||
|
||
-- | @pTerm prefix term postfix@ parses term with @term@ surrounded by
|
||
-- optional prefix and postfix unary operators. Parsers @prefix@ and
|
||
-- @postfix@ are allowed to fail, in this case 'id' is used.
|
||
|
||
pTerm :: Stream s m t => ParsecT s u m (a -> a) -> ParsecT s u m a ->
|
||
ParsecT s u m (a -> a) -> ParsecT s u m a
|
||
pTerm prefix term postfix = do
|
||
pre <- option id (hidden prefix)
|
||
x <- term
|
||
post <- option id (hidden postfix)
|
||
return $ post (pre x)
|
||
|
||
-- | @pInfixN op p x@ parses non-associative infix operator @op@, then term
|
||
-- with parser @p@, then returns result of the operator application on @x@
|
||
-- and the term.
|
||
|
||
pInfixN :: Stream s m t => ParsecT s u m (a -> a -> a) ->
|
||
ParsecT s u m a -> a -> ParsecT s u m a
|
||
pInfixN op p x = do
|
||
f <- op
|
||
y <- p
|
||
return $ f x y
|
||
|
||
-- | @pInfixL op p x@ parses left-associative infix operator @op@, then term
|
||
-- with parser @p@, then returns result of the operator application on @x@
|
||
-- and the term.
|
||
|
||
pInfixL :: Stream s m t => ParsecT s u m (a -> a -> a) ->
|
||
ParsecT s u m a -> a -> ParsecT s u m a
|
||
pInfixL op p x = do
|
||
f <- op
|
||
y <- p
|
||
let r = f x y
|
||
pInfixL op p r <|> return r
|
||
|
||
-- | @pInfixR op p x@ parses right-associative infix operator @op@, then
|
||
-- term with parser @p@, then returns result of the operator application on
|
||
-- @x@ and the term.
|
||
|
||
pInfixR :: Stream s m t => ParsecT s u m (a -> a -> a) ->
|
||
ParsecT s u m a -> a -> ParsecT s u m a
|
||
pInfixR op p x = do
|
||
f <- op
|
||
y <- p >>= \r -> pInfixR op p r <|> return r
|
||
return $ f x y
|
||
|
||
type Batch s u m a =
|
||
( [ParsecT s u m (a -> a -> a)]
|
||
, [ParsecT s u m (a -> a -> a)]
|
||
, [ParsecT s u m (a -> a -> a)]
|
||
, [ParsecT s u m (a -> a)]
|
||
, [ParsecT s u m (a -> a)] )
|
||
|
||
-- | A helper to separate various operators (binary, unary, and according to
|
||
-- associativity) and return them in a tuple.
|
||
|
||
splitOp :: Operator s u m a -> Batch s u m a -> Batch s u m a
|
||
splitOp (InfixR op) (r, l, n, pre, post) = (op:r, l, n, pre, post)
|
||
splitOp (InfixL op) (r, l, n, pre, post) = (r, op:l, n, pre, post)
|
||
splitOp (InfixN op) (r, l, n, pre, post) = (r, l, op:n, pre, post)
|
||
splitOp (Prefix op) (r, l, n, pre, post) = (r, l, n, op:pre, post)
|
||
splitOp (Postfix op) (r, l, n, pre, post) = (r, l, n, pre, op:post)
|