-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathIncrementalConduit.hs
45 lines (39 loc) · 1.54 KB
/
IncrementalConduit.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import Control.Applicative (empty, many, optional, (<$>), (<|>))
import Control.Monad.Trans (lift)
import Data.Void (Void)
import Data.Conduit
import Text.ParserCombinators.Incremental.LeftBiasedLocal
main = upstream $$ parseC
upstream :: ConduitM () String IO ()
upstream = do yield "hello"
yield "yoyo"
yield "yowait"
yield "bye"
yield "hello"
yield "bye"
yield "hello"
yield "hello"
yield "bye"
yield "yo"
parseC :: ConduitM String Void IO ()
parseC = parseWith parser
parseWith :: Parser String [Either String (String, [String], Maybe String, String)] -> ConduitM String Void IO ()
parseWith p = do next <- await
case next
of Just s -> do let (r, p') = resultPrefix (feed s p)
lift (mapM print r)
parseWith p'
Nothing -> lift (putStrLn $ "Final result: " ++ show (completeResults (feedEof p)))
parser :: Parser String [Either String (String, [String], Maybe String, String)]
parser = myMany $ (
do greeting <- string "hello"
more <- many (string "yo")
w <- optional (string "wait")
end <- string "bye"
return $ Right (greeting, more, w, end)
<|>
Left <$> string "hello"
<|>
Left <$> concatSome (notFollowedBy (string "hello" <|> eof) >< anyToken)
)
-- Left <$> manyTill anyToken (string "hello")