mongodb/Database/MongoDB/Transport.hs

33 lines
820 B
Haskell
Raw Normal View History

-- | This module defines a connection interface. It could be a regular
-- network connection, TLS connection, a mock or anything else.
module Database.MongoDB.Transport (
Transport(..),
fromHandle,
) where
import Prelude hiding (read)
import Data.ByteString (ByteString)
import qualified Data.ByteString as ByteString
import System.IO
-- | Abstract transport interface
--
-- `read` should return `ByteString.null` on EOF
data Transport = Transport {
2016-05-02 02:05:51 +00:00
read :: Int -> IO ByteString,
write :: ByteString -> IO (),
flush :: IO (),
close :: IO ()}
fromHandle :: Handle -> IO Transport
-- ^ Make connection form handle
fromHandle handle = do
return Transport
2016-05-02 02:05:51 +00:00
{ read = ByteString.hGet handle
, write = ByteString.hPut handle
, flush = hFlush handle
, close = hClose handle
}