GMPParser.hs revision 4cfcd12dc70f806314d0f72040ab68adb6f5cc99
----------------------------------------------------------------
-- the Generic Model Parser Abstract Syntax
-- Copyright 2007, Lutz Schroeder and Georgel Calin
----------------------------------------------------------------
module GMPParser where
import qualified Text.ParserCombinators.Parsec.Token as P
import GMPAS
-----------------------------------------------------------
-- The Different Parsers
-----------------------------------------------------------
par5er :: Parser Formula -- main parser to parse the infix/primitive formulae
par5er =
do f <- prim; option (f) (inf f)
<?> "GMPParser.par5er"
junc :: Parser Junctor -- junctor parser
junc = do try(string "/\\"); whiteSpace; return And
<|> do try(string "\\/"); whiteSpace; return Or
<|> do try(string "->"); whiteSpace; return If
<|> do try(string "<->"); whiteSpace; return Iff
<|> do try(string "<-"); whiteSpace; return Fi
<?> "GMPParser.junc"
inf :: Formula -> Parser Formula -- infix parser
inf f1 =
do iot <- junc; f2 <-par5er; return $ Junctor f1 iot f2
<?> "GMPParser.inf"
prim :: Parser Formula -- primitive parser
prim =
do try(string "F"); whiteSpace; return F;
<|> do try(string "T"); whiteSpace; return T;
<|> do try(string "~"); whiteSpace; f <- par5er; return $ Neg f
<|> do try(char '('); whiteSpace; f <- par5er; whiteSpace; char ')'; whiteSpace; return f
<|> do try(char '['); whiteSpace; i <- ind; whiteSpace; char ']'; whiteSpace; f <-par5er; return $ Mapp (Mop i Square) f
<|> do try(char '<'); whiteSpace; i <- ind; whiteSpace; char '>'; whiteSpace; f <-par5er; return $ Mapp (Mop i Angle) f
<?> "GMPParser.prim"
ind :: Parser Mindex -- modal index parser (as string for now)
ind = many1 (letter <?> "GMPParser.ind")
runLex :: Show a => Parser a -> String -> IO ()
runLex p input = run (do
whiteSpace
; x <- p
--; n <- newline -- add this if the trailing character is present on the input line
; eof
; return x
) input
run :: Show a => Parser a -> String -> IO ()
run p input
= case (parse p "" input) of
Left err -> do{ putStr "parse error at "
; print err
}
Right x -> print x
----------------------------------------------------------------
-- The lexer
----------------------------------------------------------------
lexer = P.makeTokenParser gmpDef
lexeme = P.lexeme lexer
parens = P.parens lexer
braces = P.braces lexer
semiSep = P.semiSep lexer
semiSep1 = P.semiSep1 lexer
commaSep = P.commaSep lexer
commaSep1 = P.commaSep1 lexer
whiteSpace = P.whiteSpace lexer -- used
symbol = P.symbol lexer
identifier = P.identifier lexer
reserved = P.reserved lexer
natural = P.natural lexer
gmpDef
= haskellStyle
{ identStart = letter
, identLetter = alphaNum <|> oneOf "_'" -- ???
, opStart = opLetter gmpDef
, opLetter = oneOf "\\-</~[]"
, reservedOpNames = ["~","->","<-","<->","/\\","\\/","[]"]
}
----------------------------------------------------------------
--
----------------------------------------------------------------