git-annex/Assistant/Threads/Pusher.hs

73 lines
2.1 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-10-29 23:35:18 +00:00
import Assistant.Types.Commits
2012-06-25 20:38:12 +00:00
import Assistant.Pushes
import Assistant.Alert
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
import Data.Time.Clock
thisThread :: ThreadName
thisThread = "Pusher"
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)
unless (null topush) $ do
2012-10-29 15:40:22 +00:00
debug ["retrying", show (length topush), "failed pushes"]
2012-10-29 20:49:47 +00:00
void $ alertWhile (pushRetryAlert topush) $ do
now <- liftIO $ getCurrentTime
pushToRemotes now True 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
2012-10-29 23:35:18 +00:00
commits <- getCommits
2012-09-13 04:57:52 +00:00
-- Now see if now's a good time to push.
if shouldPush commits
2012-09-13 04:57:52 +00:00
then do
2012-10-30 18:44:18 +00:00
remotes <- filter pushable . syncRemotes <$> getDaemonStatus
2012-10-29 20:49:47 +00:00
unless (null remotes) $
void $ alertWhile (pushAlert remotes) $ do
now <- liftIO $ getCurrentTime
pushToRemotes now True remotes
2012-09-13 04:57:52 +00:00
else do
2012-10-29 15:40:22 +00:00
debug ["delaying push of", show (length commits), "commits"]
2012-10-29 23:35:18 +00:00
refillCommits commits
2012-10-29 15:40:22 +00:00
where
pushable r
| Remote.specialRemote r = False
| Remote.readonly r = False
| otherwise = True
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.
-}
shouldPush :: [Commit] -> Bool
shouldPush commits
| not (null commits) = True
| otherwise = False