Created
July 26, 2012 09:12
-
-
Save commandodev/3181144 to your computer and use it in GitHub Desktop.
Pcap Conduit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE NoMonomorphismRestriction #-} | |
module Data.Pcap.Source ( | |
sourcePcap | |
, parsePcap | |
) where | |
import Control.Monad.IO.Class | |
import qualified Data.ByteString as BS | |
import Data.Conduit | |
import qualified Data.Conduit.List as CL | |
import Data.DateTime | |
import Data.Void | |
import Network.Pcap | |
import System.IO | |
import Data.Kospi.Parser | |
type HeaderHandler a = (PktHdr -> a) | |
type BodyHandler a = (BS.ByteString -> a) | |
sourcePcap :: FilePath -> (HeaderHandler h) -> (BodyHandler b) -> Pipe Void () (h, b) () IO Int | |
sourcePcap fh fhdr fbody = do | |
liftIO (openOffline fh) >>= loopPcap 0 | |
where | |
loopPcap cnt hdl = do | |
(hdr, bs) <- liftIO $ nextBS hdl | |
if (not $ BS.null bs) then | |
yield (cb hdr bs) >> loopPcap (cnt + 1) hdl | |
else | |
return cnt | |
cb hdr body = (fhdr hdr, fbody body) | |
hdrCB :: PktHdr -> DateTime | |
hdrCB = todt. toRational . hdrDiffTime | |
packetCB :: ByteString -> Either String Quote | |
packetCB = parseOnly parseQuote -- parseQuote :: Parser Quote | |
(parsePcap) | |
:: FilePath | |
-> Pipe | |
Void () (DateTime, Either String Quote) () IO Int | |
parsePcap fh = sourcePcap fh hdrCB packetCB >+> matches | |
matches = CL.filter isRight | |
isRight (a, b) = case b of | |
(Right _) -> True | |
otherwise -> False |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment