2014-10-05 83 views
1

我想继续应用解析器到一个字符串,并添加它的输出,直到我到达字符串的末尾。不幸的是,当我解析字符串的结尾时,它失败了,所以我得到一个空列表。我希望能够检查解析是否失败,然后在解析失败之前从所有解析中获得输出。我正试图将这个字符串解析成一个浮点列表。我怎样才能阻止这种情况的发生(即获得一个空的列表而不是我的浮动列表)。如何检查解析是否失败?

我写这种类型的解析器:newtype Parser a = MkP (String -> [(String,a)]) 及其单子实例是这样的:

-- (>>=) :: m a -> (a -> m b) -> m b 
instance Monad Parser where 
    return x = MkP f 
     where 
      f inp = [(inp,x)] 
    f >>= g = MkP s 
     where 
      s inp = [(rest,out) | (firstremain,firstout) <- applyParser f inp, (rest,out) <- applyParser (g firstout) firstremain] 

无法解析由空列表[]表示。我有这些主要的解析器:

item :: Parser Char 
item = MkP f 
    where 
     f [] = [] 
     f (x:xs) = [(xs,x)] 


zero :: Parser Char 
zero = MkP f 
    where 
     f _ = [] 

我试图解析这个字符串:

unparsedboeyield = "0.63 0.81 1.01 1.20 1.38 1.54 1.68 1.79 1.89 1.97 2.05 2.11 2.17 2.23 2.28 2.33 2.37 2.42 2.45 2.49 2.53 2.56 2.59 2.62 2.64 2.67 2.69 2.71 2.73 2.75 2.77 2.79 2.80 2.82 2.83 2.84 2.85 2.87 2.87 2.88 2.89 2.90 2.90 2.91 2.91 2.92 2.92 2.92 2.93 2.93" 

这个解析器:

numberParser :: Parser Float 
numberParser = do 
    a <- item 
    b <- item 
    c <- item 
    d <- item 
    let number = read [a,b,c,d] :: Float in return number 

yieldParser :: Parser [Float] 
yieldParser = do 
    x <- numberParser 
    helper [x] where 
     helper y = do 
      a <- randomthing 
      helper (y ++ [a]) 
     randomthing = do 
      item 
      item 
      item 
      item 
      numberParser 

我不明白什么是helper发生时,什么是a当randomthing失败(它不能[]然后它会引发一个类型错误,因为它不是一个浮点数)。当我尝试解析字符串出现这种情况:

applyParser yieldParser boeunparsedyield => []

整个代码是在这里:

import Control.Monad 
import Data.Char 


interpolate :: (Ord a, Fractional a) => ((a,a),(a,a)) -> a -> a 
interpolate ((x1,y1),(x2,y2)) x = if (x > x2) || (x < x1) then error "value out of range" else y1 + difference * gradient 

    where 
     gradient = (y1 -y2)/(x1 - x2) 
     difference = x - x1 


pvt :: Fractional a => a -> Int -> a 
pvt x t = x/(m + spotrate t)^t where m = 1 :: Fractional a => a 

unparsedboeyield :: String 
unparsedboeyield = "0.63 0.81 1.01 1.20 1.38 1.54 1.68 1.79 1.89 1.97 2.05 2.11 2.17 2.23 2.28 2.33 2.37 2.42 2.45 2.49 2.53 2.56 2.59 2.62 2.64 2.67 2.69 2.71 2.73 2.75 2.77 2.79 2.80 2.82 2.83 2.84 2.85 2.87 2.87 2.88 2.89 2.90 2.90 2.91 2.91 2.92 2.92 2.92 2.93 2.93" 
newtype Parser a = MkP (String -> [(String,a)]) 


applyParser :: Parser a -> String -> [(String,a)] 
applyParser (MkP x) y = x y 


-- (>>=) :: m a -> (a -> m b) -> m b 
instance Monad Parser where 
    return x = MkP f 
     where 
      f inp = [(inp,x)] 
    f >>= g = MkP s 
     where 
      s inp = [(rest,out) | (firstremain,firstout) <- applyParser f inp, (rest,out) <- applyParser (g firstout) firstremain] 



item :: Parser Char 
item = MkP f 
    where 
     f [] = [] 
     f (x:xs) = [(xs,x)] 


zero :: Parser Char 
zero = MkP f 
    where 
     f _ = [] 

sat :: (Char -> Bool) -> Parser Char 
sat predicate = 
    item >>= \x -> 
    if predicate x then return x else zero 


doParser :: Parser a -> Int -> Parser() 
doParser x count = helper count 
    where 
     helper count = do 
      if count > 0 then do 
       x 
       helper (count - 1) 
      else return() 
numberParser :: Parser Float 
numberParser = do 
    a <- item 
    b <- item 
    c <- item 
    d <- item 
    let number = read [a,b,c,d] :: Float in return number 

yieldParser :: Parser [Float] 
yieldParser = do 
    x <- numberParser 
    helper [x] where 
     helper y = do 
      a <- randomthing 
      helper (y ++ [a]) 
     randomthing = do 
      item 
      item 
      item 
      item 
      numberParser 




spotrate :: Fractional a => Int -> a 
spotrate = \t -> if (t == 1) then 5 else 2 

untilParser :: (Char -> Bool) -> Parser [Char] 
untilParser p = helper [] 
    where 
     helper x = do 
      y <- item 
      if p y then helper (x ++ [y]) else return x 

回答

0
helper y = do 
    a <- randomthing 
    helper (y ++ [a]) 

什么是当randomthing失败

a从0到randomthing产生一个空列表。

如果你看>>=的定义,g适用于firstout对于applyParser f inp中的每个结果。因此,如果applyParser f inp产生零结果,则应用g零次。

在帮手f的定义是randomthingg\a -> helper (y ++ [a])。所以,如果g从未应用(这是不是当randomthing produces an empty list for the given input)a不具有价值,因为只有a里面g存在。

我希望能够检查一个解析失败

你不能使用monadic接口来做,而必须自己使用applyParser,然后检查它是否返回空列表