git-annex/Assistant/Threads/Pusher.hs

120 lines
3.6 KiB
Haskell
Raw Normal View History

{- git-annex assistant git pushing thread
2012-06-22 17:39:44 +00:00
-
- Copyright 2012 Joey Hess <joey@kitenet.net>
2012-06-23 05:20:40 +00:00
-
- Licensed under the GNU GPL version 3 or higher.
2012-06-22 17:39:44 +00:00
-}
2012-06-25 20:10:10 +00:00
module Assistant.Threads.Pusher where
2012-06-22 17:39:44 +00:00
import Assistant.Common
2012-06-22 17:39:44 +00:00
import Assistant.Commits
2012-06-25 20:38:12 +00:00
import Assistant.Pushes
import Assistant.Alert
2012-06-22 17:39:44 +00:00
import Assistant.ThreadedMonad
2012-06-26 00:16:30 +00:00
import Assistant.Threads.Merger
import Assistant.DaemonStatus
2012-06-22 17:39:44 +00:00
import qualified Command.Sync
import Utility.ThreadScheduler
import Utility.Parallel
import Data.Time.Clock
import qualified Data.Map as M
thisThread :: ThreadName
thisThread = "Pusher"
2012-06-25 20:38:12 +00:00
{- This thread retries pushes that failed before. -}
pushRetryThread :: ThreadState -> DaemonStatusHandle -> FailedPushMap -> IO ()
pushRetryThread st dstatus pushmap = runEvery (Seconds halfhour) $ do
2012-06-25 20:38:12 +00:00
-- We already waited half an hour, now wait until there are failed
-- pushes to retry.
topush <- getFailedPushesBefore pushmap (fromIntegral halfhour)
unless (null topush) $ do
debug thisThread
[ "retrying"
, show (length topush)
, "failed pushes"
]
now <- getCurrentTime
void $ alertWhile dstatus (pushRetryAlert topush) $
pushToRemotes thisThread now st (Just pushmap) topush
2012-06-25 20:38:12 +00:00
where
halfhour = 1800
2012-06-22 17:39:44 +00:00
2012-06-25 20:38:12 +00:00
{- This thread pushes git commits out to remotes soon after they are made. -}
pushThread :: ThreadState -> DaemonStatusHandle -> CommitChan -> FailedPushMap -> IO ()
pushThread st dstatus commitchan pushmap = do
2012-06-25 20:38:12 +00:00
runEvery (Seconds 2) $ do
-- We already waited two seconds as a simple rate limiter.
-- Next, wait until at least one commit has been made
commits <- getCommits commitchan
-- Now see if now's a good time to push.
2012-06-25 20:38:12 +00:00
now <- getCurrentTime
if shouldPush now commits
then do
remotes <- knownRemotes <$> getDaemonStatus dstatus
void $ alertWhile dstatus (pushAlert remotes) $
pushToRemotes thisThread now st (Just pushmap) remotes
else do
debug thisThread
[ "delaying push of"
, show (length commits)
, "commits"
]
refillCommits commitchan commits
2012-06-22 17:39:44 +00:00
{- Decide if now is a good time to push to remotes.
-
- Current strategy: Immediately push all commits. The commit machinery
- already determines batches of changes, so we can't easily determine
- batches better.
-}
2012-06-25 20:38:12 +00:00
shouldPush :: UTCTime -> [Commit] -> Bool
shouldPush _now commits
| not (null commits) = True
| otherwise = False
2012-06-22 17:39:44 +00:00
{- Updates the local sync branch, then pushes it to all remotes, in
- parallel.
-
- Avoids running possibly long-duration commands in the Annex monad, so
- as not to block other threads. -}
pushToRemotes :: ThreadName -> UTCTime -> ThreadState -> (Maybe FailedPushMap) -> [Remote] -> IO Bool
pushToRemotes threadname now st mpushmap remotes = do
(g, branch) <- runThreadState st $
(,) <$> fromRepo id <*> Command.Sync.currentBranch
2012-06-26 00:16:30 +00:00
go True branch g remotes
where
2012-06-26 00:16:30 +00:00
go shouldretry branch g rs = do
debug threadname
[ "pushing to"
, show rs
]
2012-06-26 00:16:30 +00:00
Command.Sync.updateBranch (Command.Sync.syncBranch branch) g
(succeeded, failed) <- inParallel (push g branch) rs
let ok = null failed
case mpushmap of
Nothing -> noop
Just pushmap ->
changeFailedPushMap pushmap $ \m ->
M.union (makemap failed) $
M.difference m (makemap succeeded)
unless (ok) $
debug threadname
[ "failed to push to"
, show failed
]
if (ok || not shouldretry)
then return ok
else retry branch g failed
makemap l = M.fromList $ zip l (repeat now)
push g branch remote = Command.Sync.pushBranch remote branch g
2012-06-26 00:16:30 +00:00
retry branch g rs = do
debug threadname [ "trying manual pull to resolve failed pushes" ]
2012-06-26 00:16:30 +00:00
runThreadState st $ manualPull branch rs
go False branch g rs