I have a problem for writing parsec rules for one language I have next language definition (problematic part)

COMMAND ::= ':' WS LITERAL WS {LITERAL WS}* ';'
LITERAL ::= "[CHAR]*" | [^"\ ][^\ ]*

where WS stands for whitespace and LITERAL is any characters except whitespace or quoted charactes that can contains white spaces so, I've write next functions:

literal = quotedLiteral <|> many1 (noneOf " ") 
command = do { char ':'
             ; separator
             ; name <- literal
             ; separator
             ; cmds <- endBy literal separator            -- (1)
             ; char ';'                                   -- (2)
             ; return (name, Command cmds)
             }

Problem is that symbol ';' is a valid literal so (1) function parses it, therefore there is a parsing error, because (2) fails to find ';' character.

Is there any way to overcome this problem: Either make literal function do not accept ';' as literal or somehow fix (2)?


after sclv's comment I find a solution:

  literal :: Parser Literal
  literal = -- as desired in sclv (changing parserZero to pzero


  command :: Parser TCommand
  command = do { char ':'
            ; separator
            ; name <- literal <?> "no name"
            ; separator
            ; cmds <- sepEndBy (do { try( literal) }) separator
            ; char ';'
            ; return (name, Command cmds)
            }
link|improve this question

Did you define the grammar, or was the grammar given to you? It's unusual to define a grammar with this kind of ambiguity (where a literal is also a valid punctuation). But maybe you have a reason to do that. – Heatsink Jun 7 '11 at 22:35
I defined grammar myself but language definition, in language definition main rule that it is a list of literals separated by space. In my case it also should contain quoted characters. So I take at every element as literal and then work with that list but I want to have a some kind of syntax check. It will simplify main program. – qnikst Jun 8 '11 at 5:54
feedback

1 Answer

up vote 1 down vote accepted

one (untested) take on solution 1:

literal = quotedLiteral <|> someChars
   where someChars = do 
            res <- many1 (noneOf " \n")
            if (res == ';')
               then parserZero
               else return res
link|improve this answer
Thanks that works for literal except I've changed "parserZero" that was hidden to "pzero" but command still not woking. – qnikst Jun 8 '11 at 5:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.