git-annex/Assistant/Threads/PushNotifier.hs

120 lines
3.6 KiB
Haskell
Raw Normal View History

{- git-annex assistant push notification thread, using XMPP
-
- This handles both sending outgoing push notifications, and receiving
- incoming push notifications.
-
- Copyright 2012 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Assistant.Threads.PushNotifier where
import Assistant.Common
2012-10-26 14:44:36 -04:00
import Assistant.XMPP
2012-11-02 12:59:31 -04:00
import Assistant.XMPP.Client
import Assistant.Pushes
2012-11-02 12:59:31 -04:00
import Assistant.Types.Buddies
import Assistant.XMPP.Buddies
import Assistant.Sync
2012-10-30 14:34:48 -04:00
import Assistant.DaemonStatus
import qualified Remote
import Utility.ThreadScheduler
import Network.Protocol.XMPP
import Control.Concurrent
import qualified Data.Set as S
import qualified Git.Branch
import Data.Time.Clock
2012-10-29 11:40:22 -04:00
pushNotifierThread :: NamedThread
pushNotifierThread = NamedThread "PushNotifier" $ do
iodebug <- asIO1 debug
iopull <- asIO1 pull
2012-11-02 12:59:31 -04:00
iowaitpush <- asIO waitPush
ioupdatebuddies <- asIO1 $ \p -> do
updateBuddyList (updateBuddies p) <<~ buddyList
debug =<< map show <$> getBuddyList <<~ buddyList
ioclient <- asIO $
xmppClient iowaitpush iodebug iopull ioupdatebuddies
2012-10-29 17:52:43 -04:00
forever $ do
2012-11-02 12:59:31 -04:00
{- The buddy list starts empty each time the client connects,
- so that stale info is not retained. -}
updateBuddyList (const noBuddies) <<~ buddyList
tid <- liftIO $ forkIO ioclient
2012-10-29 17:52:43 -04:00
waitRestart
liftIO $ killThread tid
2012-11-02 12:59:31 -04:00
xmppClient
:: (IO [UUID])
-> ([String] -> IO ())
-> ([UUID] -> IO ())
-> (Presence -> IO ())
-> Assistant ()
xmppClient iowaitpush iodebug iopull ioupdatebuddies = do
2012-10-29 11:40:22 -04:00
v <- liftAnnex getXMPPCreds
case v of
Nothing -> noop
Just c -> liftIO $ loop c =<< getCurrentTime
where
loop c starttime = do
void $ connectXMPP c $ \jid -> do
fulljid <- bindJID jid
liftIO $ iodebug ["XMPP connected", show fulljid]
putStanza $ gitAnnexPresence gitAnnexSignature
s <- getSession
_ <- liftIO $ forkIO $ void $ runXMPP s $
receivenotifications
sendnotifications
now <- getCurrentTime
if diffUTCTime now starttime > 300
then do
iodebug ["XMPP connection lost; reconnecting"]
loop c now
else do
iodebug ["XMPP connection failed; will retry"]
threadDelaySeconds (Seconds 300)
loop c =<< getCurrentTime
sendnotifications = forever $ do
2012-10-29 17:52:43 -04:00
us <- liftIO iowaitpush
2012-10-29 11:40:22 -04:00
putStanza $ gitAnnexPresence $ encodePushNotification us
receivenotifications = forever $ do
s <- getStanza
liftIO $ iodebug ["received XMPP:", show s]
case s of
2012-11-02 12:59:31 -04:00
ReceivedPresence p -> do
liftIO $ ioupdatebuddies p
when (isGitAnnexPresence p) $
liftIO $ iopull $ concat $ catMaybes $
map decodePushNotification $
presencePayloads p
2012-10-29 11:40:22 -04:00
_ -> noop
{- We only pull from one remote out of the set listed in the push
- notification, as an optimisation.
-
- Note that it might be possible (though very unlikely) for the push
- notification to take a while to be sent, and multiple pushes happen
- before it is sent, so it includes multiple remotes that were pushed
- to at different times.
-
- It could then be the case that the remote we choose had the earlier
- push sent to it, but then failed to get the later push, and so is not
- fully up-to-date. If that happens, the pushRetryThread will come along
- and retry the push, and we'll get another notification once it succeeds,
- and pull again. -}
2012-10-29 11:40:22 -04:00
pull :: [UUID] -> Assistant ()
pull [] = noop
pull us = do
2012-10-30 14:44:18 -04:00
rs <- filter matching . syncRemotes <$> getDaemonStatus
2012-10-29 11:40:22 -04:00
debug $ "push notification for" : map (fromUUID . Remote.uuid ) rs
2012-10-29 16:28:45 -04:00
pullone rs =<< liftAnnex (inRepo Git.Branch.current)
2012-10-29 11:40:22 -04:00
where
matching r = Remote.uuid r `S.member` s
s = S.fromList us
2012-10-29 16:28:45 -04:00
pullone [] _ = noop
pullone (r:rs) branch =
unlessM (all id . fst <$> manualPull branch [r]) $
pullone rs branch