我坚持使用attoparsec,我无法返回关于它的值#"嵌入式"。
我尝试解析一个类型的文件:
type
value
type
value
...
例如:
0 -- code for a string value
hello
70 -- code for an int value
10
0
world
20 -- code for a double value
5.20
我目前的数据类型是:
data KeyValue = forall a. (Typeable a, Show a, Eq a) => KeyValue (Int, a)
instance Eq KeyValue where -- as I need to test equality
KeyValue (code1, value1) == KeyValue (code2, value2) =
code1 == code2 && case cast value2 of
Just value2' -> value1 == value2
Nohing -> False
我的解析器看起来像:
parser :: Parser [KeyValue]
parser = many' (keyValue <* endOfLine)
keyValue :: Parser KeyValue
keyValue = do
key <- decimal <* endOfLine
value <- case key of
0 -> takeLine
20 -> double
70 -> decimal
_ -> takeLine
return $ KeyValue (key, value)
takeLine :: Parser Text
takeLine = takeTill isEndOfLine
但GHC抱怨说:
Couldn't match type Double with Text
Expected type: Parser Text Text
Actual type: Parser Double
In the expression: double
In a case alternative: 20 -> double
我理解为什么但不知道如何来解决这个问题!
目前,我使用ExistantialQuantification
pragma与Data.Typeable
,但我不确定解决方案是否需要&#34;如此复杂&#34; 有这个问题吗?
答案 0 :(得分:8)
创建一个和类型并让你的解析器返回,例如:
data SumType = Str String | Int Int | Double Double
keyvalue :: Parser SumType
keyvalue = ...
现在keyvalue
可以以return (Str "foo")
结尾以指示已解析字符串或使用return (Int 23)
等来表示已解析int。
E.g。类似的东西:
keyValue = do
key <- decimal <* endOfLine
case key of
20 -> do d <- parseDouble; return (Double d)
70 -> do i <- parseInt; return (Int i)
...