git-annex/Assistant/Threads/Pusher.hs

51 lines
1.7 KiB
Haskell
Raw Normal View History

{- git-annex assistant git pushing thread
2012-06-22 17:39:44 +00:00
-
- Copyright 2012 Joey Hess <id@joeyh.name>
2012-06-23 05:20:40 +00:00
-
- Licensed under the GNU AGPL 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
2012-10-30 18:34:48 +00:00
import Assistant.DaemonStatus
2012-08-22 18:32:17 +00:00
import Assistant.Sync
2012-06-22 17:39:44 +00:00
import Utility.ThreadScheduler
import qualified Remote
import qualified Types.Remote as Remote
2012-06-25 20:38:12 +00:00
{- This thread retries pushes that failed before. -}
2012-10-29 15:40:22 +00:00
pushRetryThread :: NamedThread
pushRetryThread = namedThread "PushRetrier" $ 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.
2012-10-29 21:52:43 +00:00
topush <- getFailedPushesBefore (fromIntegral halfhour)
=<< getAssistant failedPushMap
unless (null topush) $ do
2012-10-29 15:40:22 +00:00
debug ["retrying", show (length topush), "failed pushes"]
void $ pushToRemotes topush
2012-10-31 06:34:03 +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. -}
2012-10-29 15:40:22 +00:00
pushThread :: NamedThread
pushThread = namedThread "Pusher" $ runEvery (Seconds 2) <~> do
2012-09-13 04:57:52 +00:00
-- We already waited two seconds as a simple rate limiter.
-- Next, wait until at least one commit has been made
2013-04-24 21:16:04 +00:00
void getCommits
2012-09-13 04:57:52 +00:00
-- Now see if now's a good time to push.
void $ pushToRemotes =<< pushTargets
2012-06-22 17:39:44 +00:00
{- We want to avoid pushing to remotes that are marked readonly.
-
- Also, avoid pushing to local remotes we can easily tell are not available,
- to avoid ugly messages when a removable drive is not attached.
-}
pushTargets :: Assistant [Remote]
pushTargets = liftIO . filterM (Remote.checkAvailable True)
=<< candidates <$> getDaemonStatus
where
candidates = filter (not . Remote.readonly) . syncGitRemotes