postgres-websockets-0.5.0.0: src/PostgresWebsockets/HasqlBroadcast.hs
{-| Uses Broadcast module adding database as a source producer.
This module provides a function to produce a 'Multiplexer' from a Hasql 'Connection'.
The producer issues a LISTEN command upon Open commands and UNLISTEN upon Close.
-}
module PostgresWebsockets.HasqlBroadcast
( newHasqlBroadcaster
, newHasqlBroadcasterOrError
-- re-export
, acquire
, relayMessages
, relayMessagesForever
) where
import Protolude hiding (putErrLn)
import Hasql.Connection
import Data.Aeson (decode, Value(..))
import Data.HashMap.Lazy (lookupDefault)
import Data.Either.Combinators (mapBoth)
import Data.Function (id)
import Control.Retry (RetryStatus, retrying, capDelay, exponentialBackoff)
import PostgresWebsockets.Database
import PostgresWebsockets.Broadcast
{- | Returns a multiplexer from a connection URI, keeps trying to connect in case there is any error.
This function also spawns a thread that keeps relaying the messages from the database to the multiplexer's listeners
-}
newHasqlBroadcaster :: ByteString -> ByteString -> IO Multiplexer
newHasqlBroadcaster ch = newHasqlBroadcasterForConnection . tryUntilConnected
where
newHasqlBroadcasterForConnection = newHasqlBroadcasterForChannel ch
{- | Returns a multiplexer from a connection URI or an error message on the left case
This function also spawns a thread that keeps relaying the messages from the database to the multiplexer's listeners
-}
newHasqlBroadcasterOrError :: ByteString -> ByteString -> IO (Either ByteString Multiplexer)
newHasqlBroadcasterOrError ch =
acquire >=> (sequence . mapBoth show (newHasqlBroadcasterForConnection . return))
where
newHasqlBroadcasterForConnection = newHasqlBroadcasterForChannel ch
tryUntilConnected :: ByteString -> IO Connection
tryUntilConnected =
fmap (either (panic "Failure on connection retry") id) . retryConnection
where
retryConnection conStr = retrying retryPolicy shouldRetry (const $ acquire conStr)
maxDelayInMicroseconds = 32000000
firstDelayInMicroseconds = 1000000
retryPolicy = capDelay maxDelayInMicroseconds $ exponentialBackoff firstDelayInMicroseconds
shouldRetry :: RetryStatus -> Either ConnectionError Connection -> IO Bool
shouldRetry _ con =
case con of
Left err -> do
putErrLn $ "Error connecting notification listener to database: " <> show err
return True
_ -> return False
{- | Returns a multiplexer from a channel and an IO Connection, listen for different database notifications on the provided channel using the connection produced.
This function also spawns a thread that keeps relaying the messages from the database to the multiplexer's listeners
To listen on channels *chat*
@
import Protolude
import PostgresWebsockets.HasqlBroadcast
import PostgresWebsockets.Broadcast
import Hasql.Connection
main = do
conOrError <- H.acquire "postgres://localhost/test_database"
let con = either (panic . show) id conOrError :: Connection
multi <- newHasqlBroadcaster con
onMessage multi "chat" (\ch ->
forever $ fmap print (atomically $ readTChan ch)
@
-}
newHasqlBroadcasterForChannel :: ByteString -> IO Connection -> IO Multiplexer
newHasqlBroadcasterForChannel ch getCon = do
multi <- newMultiplexer openProducer closeProducer
void $ relayMessagesForever multi
return multi
where
closeProducer _ = putErrLn "Broadcaster is dead"
toMsg :: ByteString -> ByteString -> Message
toMsg c m = case decode (toS m) of
Just v -> Message (channelDef c v) m
Nothing -> Message c m
lookupStringDef :: Text -> ByteString -> Value -> ByteString
lookupStringDef key d (Object obj) =
case lookupDefault (String $ toS d) key obj of
String s -> toS s
_ -> d
lookupStringDef _ d _ = d
channelDef = lookupStringDef "channel"
openProducer msgs = do
con <- getCon
listen con $ toPgIdentifier ch
waitForNotifications
(\c m-> atomically $ writeTQueue msgs $ toMsg c m)
con
putErrLn :: Text -> IO ()
putErrLn = hPutStrLn stderr