2012-07-23 03:16:56 +00:00
|
|
|
{- git-annex assistant git pushing thread
|
2012-06-22 17:39:44 +00:00
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2012 Joey Hess <id@joeyh.name>
|
2012-06-23 05:20:40 +00:00
|
|
|
-
|
2019-03-13 19:48:14 +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
|
|
|
|
2012-07-20 23:29:59 +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
|
2013-10-27 20:42:13 +00:00
|
|
|
import qualified Remote
|
2012-08-26 19:39:02 +00:00
|
|
|
import qualified Types.Remote as Remote
|
2012-06-22 19:46:21 +00:00
|
|
|
|
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
|
2013-01-26 06:09:33 +00:00
|
|
|
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)
|
2017-09-20 18:37:20 +00:00
|
|
|
=<< getAssistant failedPushMap
|
2012-06-26 21:33:34 +00:00
|
|
|
unless (null topush) $ do
|
2012-10-29 15:40:22 +00:00
|
|
|
debug ["retrying", show (length topush), "failed pushes"]
|
2016-11-14 18:26:20 +00:00
|
|
|
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
|
2013-01-26 06:09:33 +00:00
|
|
|
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.
|
2016-11-14 18:26:20 +00:00
|
|
|
void $ pushToRemotes =<< pushTargets
|
2012-06-22 17:39:44 +00:00
|
|
|
|
2013-03-10 22:42:28 +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]
|
2013-10-27 20:42:13 +00:00
|
|
|
pushTargets = liftIO . filterM (Remote.checkAvailable True)
|
|
|
|
=<< candidates <$> getDaemonStatus
|
2013-03-10 22:42:28 +00:00
|
|
|
where
|
|
|
|
candidates = filter (not . Remote.readonly) . syncGitRemotes
|