You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
4.5 KiB
108 lines
4.5 KiB
{-# OPTIONS_HADDOCK hide #-} |
|
{-# LANGUAGE OverloadedStrings #-} |
|
module Network.Xmpp.Concurrent.Monad where |
|
|
|
import Control.Applicative ((<$>)) |
|
import Control.Concurrent |
|
import Control.Concurrent.STM |
|
import qualified Control.Exception.Lifted as Ex |
|
import Control.Monad.State |
|
import Network.Xmpp.Concurrent.Types |
|
import Network.Xmpp.Stream |
|
import Network.Xmpp.Types |
|
|
|
-- TODO: Wait for presence error? |
|
|
|
-- | Run an XmppConMonad action in isolation. Reader and writer workers will be |
|
-- temporarily stopped and resumed with the new session details once the action |
|
-- returns. The action will run in the calling thread. Any uncaught exceptions |
|
-- will be interpreted as connection failure. |
|
-- withConnection :: XmppConMonad a -> Context -> IO (Either StreamError a) |
|
withConnection :: (Stream -> IO (b, Stream)) |
|
-> Session |
|
-> IO (Either XmppFailure b) |
|
withConnection a session = do |
|
wait <- newEmptyTMVarIO |
|
Ex.mask_ $ do |
|
-- Suspends the reader until the lock (wait) is released (set to `()'). |
|
throwTo (readerThread session) $ Interrupt wait |
|
-- We acquire the write and stateRef locks, to make sure that this is |
|
-- the only thread that can write to the stream and to perform a |
|
-- withConnection calculation. Afterwards, we release the lock and |
|
-- fetches an updated state. |
|
s <- Ex.catch |
|
(atomically $ do |
|
_ <- takeTMVar (writeRef session) |
|
s <- takeTMVar (streamRef session) |
|
putTMVar wait () |
|
return s |
|
) |
|
-- If we catch an exception, we have failed to take the MVars above. |
|
(\e -> atomically (putTMVar wait ()) >> |
|
Ex.throwIO (e :: Ex.SomeException) |
|
) |
|
-- Run the XmppMonad action, save the (possibly updated) states, release |
|
-- the locks, and return the result. |
|
Ex.catches |
|
(do |
|
(res, s') <- a s |
|
wl <- withStream' (gets $ streamSend . streamHandle) s' |
|
atomically $ do |
|
putTMVar (writeRef session) wl |
|
putTMVar (streamRef session) s' |
|
return $ Right res |
|
) |
|
-- We treat all Exceptions as fatal. If we catch a StreamError, we |
|
-- return it. Otherwise, we throw an exception. |
|
[ Ex.Handler $ \e -> return $ Left (e :: XmppFailure) |
|
, Ex.Handler $ \e -> killStream s |
|
>> Ex.throwIO (e :: Ex.SomeException) |
|
] |
|
|
|
-- | Executes a function to update the event handlers. |
|
modifyHandlers :: (EventHandlers -> EventHandlers) -> Session -> IO () |
|
modifyHandlers f session = atomically $ modifyTVar_ (eventHandlers session) f |
|
where |
|
-- Borrowing modifyTVar from |
|
-- http://hackage.haskell.org/packages/archive/stm/2.4/doc/html/src/Control-Concurrent-STM-TVar.html |
|
-- as it's not available in GHC 7.0. |
|
modifyTVar_ :: TVar a -> (a -> a) -> STM () |
|
modifyTVar_ var g = do |
|
x <- readTVar var |
|
writeTVar var (g x) |
|
|
|
-- | Changes the handler to be executed when the server connection is closed. To |
|
-- avoid race conditions the initial value should be set in the configuration |
|
-- when creating the session |
|
setConnectionClosedHandler :: (XmppFailure -> Session -> IO ()) -> Session -> IO () |
|
setConnectionClosedHandler eh session = do |
|
modifyHandlers (\s -> s{connectionClosedHandler = |
|
\e -> eh e session}) session |
|
|
|
runConnectionClosedHandler :: Session -> XmppFailure -> IO () |
|
runConnectionClosedHandler session e = do |
|
h <- connectionClosedHandler <$> atomically (readTVar $ eventHandlers session) |
|
h e |
|
|
|
-- | Run an event handler. |
|
runHandler :: (EventHandlers -> IO a) -> Session -> IO a |
|
runHandler h session = h =<< atomically (readTVar $ eventHandlers session) |
|
|
|
|
|
-- | End the current Xmpp session. |
|
endSession :: Session -> IO () |
|
endSession session = do -- TODO: This has to be idempotent (is it?) |
|
_ <- flip withConnection session $ \stream -> do |
|
_ <- closeStreams stream |
|
return ((), stream) |
|
stopThreads session |
|
|
|
-- | Close the connection to the server. Closes the stream (by enforcing a |
|
-- write lock and sending a </stream:stream> element), waits (blocks) for three |
|
-- seconds, and then closes the connection. |
|
closeConnection :: Session -> IO () |
|
closeConnection session = do |
|
_ <-flip withConnection session $ \stream -> do |
|
_ <- closeStreams stream |
|
return ((), stream) |
|
runConnectionClosedHandler session StreamEndFailure
|
|
|