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