mongodb/Database/MongoDB/Transport.hs
2020-04-01 15:11:17 +02:00

39 lines
996 B
Haskell

{-|
Module : MongoDB TLS
Copyright : (c) Victor Denisov, 2016
License : Apache 2.0
Maintainer : Victor Denisov denisovenator@gmail.com
Stability : alpha
Portability : POSIX
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
data Transport = Transport {
read :: Int -> IO ByteString, -- ^ should return `ByteString.null` on @EOF@
write :: ByteString -> IO (),
flush :: IO (),
close :: IO ()}
fromHandle :: Handle -> IO Transport
-- ^ Make connection from handle
fromHandle handle = do
return Transport
{ read = ByteString.hGet handle
, write = ByteString.hPut handle
, flush = hFlush handle
, close = hClose handle
}