I want to parse a file like this:
66:3 3:4 329:2 101:3 495:4 55:5 268:5 267:2 242:4 262:1 861:1
My code is like the following:
getTestData :: String -> IO [[(Int, Int)]]
getTestData name = do
--res <- parseFromFile testData (name ++ ".test")
fc <- readFile (name ++ ".test")
let res = parse testData "test data" fc
case res of
Left e -> error $ show e-- "test data parse eror."
Right ts -> return ts
eol = char '\n'
testData = endBy line eol
--testData = many line
testTuple = do
i <- natural
colon
r <- natural
return (fromIntegral i:: Int, fromIntegral r:: Int)
line = sepBy testTuple whiteSpace
But when run, it throw an exception:
ts <- getTestData "data"
*** Exception: "test data" (line 11, column 1):
unexpected end of input
expecting natural or "\n"
I don't understand, why it said line 11, when my data.test file only has 10 lines. So I failed to fix this problem after several tries.
whiteSpacecombinator used in thelineparser consumes newlines so you don't wanttestDatato useeolas anendBycondition. Maybe usingtestData = many1 linewould work, but in general you have to be quite careful about whitespace handling even for simple formats. Parsec was built for parsing programming languages rather than line oriented data files, so it sees all whitespace as the same thing rather than distinguishing newlines or whatever. – stephen tetley Jun 4 '11 at 7:36lineintoline = sepBy1 testTuple whiteSpace? (although this is going down a dodgy track regarding whitespace) – stephen tetley Jun 4 '11 at 7:53line = sepBy1 testTuple whiteSpace- you can't write a line oriented parser usingwhiteSpace. In this case, because you want a line oriented parser and your format is otherwise simple, you are better off making primitive parsers withText.ParserCombinators.Parsec.Charrather than using token parsers fromText.ParserCombinators.Parsec.Token. You will need to write your own version ofnaturalthough. – stephen tetley Jun 4 '11 at 8:38