2012-07-28 19:41:49 +00:00
|
|
|
{- notification broadcaster
|
|
|
|
-
|
|
|
|
- This is used to allow clients to block until there is a new notification
|
|
|
|
- that some thing occurred. It does not communicate what the change is,
|
|
|
|
- it only provides blocking reads to wait on notifications.
|
|
|
|
-
|
|
|
|
- Multiple clients are supported. Each has a unique id.
|
|
|
|
-
|
|
|
|
- Copyright 2012 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
2012-07-28 20:01:50 +00:00
|
|
|
module Utility.NotificationBroadcaster (
|
|
|
|
NotificationBroadcaster,
|
2012-07-28 19:41:49 +00:00
|
|
|
NotificationHandle,
|
2012-07-29 01:11:40 +00:00
|
|
|
NotificationId,
|
2012-07-28 20:01:50 +00:00
|
|
|
newNotificationBroadcaster,
|
2012-07-28 19:41:49 +00:00
|
|
|
newNotificationHandle,
|
|
|
|
notificationHandleToId,
|
|
|
|
notificationHandleFromId,
|
|
|
|
sendNotification,
|
|
|
|
waitNotification,
|
|
|
|
) where
|
|
|
|
|
|
|
|
import Common
|
|
|
|
|
|
|
|
import Control.Concurrent.STM
|
2012-10-05 21:04:46 +00:00
|
|
|
import Control.Concurrent.MSampleVar
|
2012-07-28 19:41:49 +00:00
|
|
|
|
2012-10-05 21:04:46 +00:00
|
|
|
{- One MSampleVar per client. The TMVar is never empty, so never blocks. -}
|
|
|
|
type NotificationBroadcaster = TMVar [MSampleVar ()]
|
2012-07-28 19:41:49 +00:00
|
|
|
|
2012-07-29 00:30:46 +00:00
|
|
|
newtype NotificationId = NotificationId Int
|
2012-07-29 01:21:22 +00:00
|
|
|
deriving (Read, Show, Eq, Ord)
|
2012-07-29 00:30:46 +00:00
|
|
|
|
2012-07-28 19:41:49 +00:00
|
|
|
{- Handle given out to an individual client. -}
|
2012-07-29 00:30:46 +00:00
|
|
|
data NotificationHandle = NotificationHandle NotificationBroadcaster NotificationId
|
2012-07-28 19:41:49 +00:00
|
|
|
|
2012-07-28 20:01:50 +00:00
|
|
|
newNotificationBroadcaster :: IO NotificationBroadcaster
|
2012-07-29 01:11:40 +00:00
|
|
|
newNotificationBroadcaster = atomically $ newTMVar []
|
2012-07-28 19:41:49 +00:00
|
|
|
|
2013-03-27 18:56:15 +00:00
|
|
|
{- Allocates a notification handle for a client to use.
|
|
|
|
-
|
|
|
|
- An immediate notification can be forced the first time waitNotification
|
|
|
|
- is called on the handle. This is useful in cases where a notification
|
|
|
|
- may be sent while the new handle is being constructed. Normally,
|
|
|
|
- such a notification would be missed. Forcing causes extra work,
|
|
|
|
- but ensures such notifications get seen.
|
|
|
|
-}
|
|
|
|
newNotificationHandle :: Bool -> NotificationBroadcaster -> IO NotificationHandle
|
|
|
|
newNotificationHandle force b = NotificationHandle
|
2012-07-28 19:41:49 +00:00
|
|
|
<$> pure b
|
2012-07-28 20:01:50 +00:00
|
|
|
<*> addclient
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
addclient = do
|
2013-03-27 18:56:15 +00:00
|
|
|
s <- if force
|
|
|
|
then newSV ()
|
|
|
|
else newEmptySV
|
2012-12-13 04:24:19 +00:00
|
|
|
atomically $ do
|
|
|
|
l <- takeTMVar b
|
|
|
|
putTMVar b $ l ++ [s]
|
|
|
|
return $ NotificationId $ length l
|
2012-07-28 19:41:49 +00:00
|
|
|
|
2012-07-29 00:30:46 +00:00
|
|
|
{- Extracts the identifier from a notification handle.
|
2012-07-28 19:41:49 +00:00
|
|
|
- This can be used to eg, pass the identifier through to a WebApp. -}
|
2012-07-29 00:30:46 +00:00
|
|
|
notificationHandleToId :: NotificationHandle -> NotificationId
|
2012-07-28 19:41:49 +00:00
|
|
|
notificationHandleToId (NotificationHandle _ i) = i
|
|
|
|
|
2012-07-29 00:30:46 +00:00
|
|
|
notificationHandleFromId :: NotificationBroadcaster -> NotificationId -> NotificationHandle
|
2012-07-28 19:41:49 +00:00
|
|
|
notificationHandleFromId = NotificationHandle
|
|
|
|
|
|
|
|
{- Sends a notification to all clients. -}
|
2012-07-28 20:01:50 +00:00
|
|
|
sendNotification :: NotificationBroadcaster -> IO ()
|
2012-07-28 19:41:49 +00:00
|
|
|
sendNotification b = do
|
|
|
|
l <- atomically $ readTMVar b
|
|
|
|
mapM_ notify l
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
notify s = writeSV s ()
|
2012-07-28 19:41:49 +00:00
|
|
|
|
|
|
|
{- Used by a client to block until a new notification is available since
|
|
|
|
- the last time it tried. -}
|
|
|
|
waitNotification :: NotificationHandle -> IO ()
|
2012-07-29 00:30:46 +00:00
|
|
|
waitNotification (NotificationHandle b (NotificationId i)) = do
|
2012-07-28 19:41:49 +00:00
|
|
|
l <- atomically $ readTMVar b
|
2012-10-05 21:04:46 +00:00
|
|
|
readSV (l !! i)
|