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 13:39:44 -04:00
-
- Copyright 2012 Joey Hess <joey@kitenet.net>
2012-06-23 01:20:40 -04:00
-
- Licensed under the GNU GPL version 3 or higher.
2012-06-22 13:39:44 -04:00
-}
2012-06-25 16:10:10 -04:00
module Assistant.Threads.Pusher where
2012-06-22 13:39:44 -04:00
import Assistant.Common
2012-06-22 13:39:44 -04:00
import Assistant.Commits
2012-10-29 19:35:18 -04:00
import Assistant.Types.Commits
2012-06-25 16:38:12 -04:00
import Assistant.Pushes
import Assistant.Alert
2012-10-30 14:34:48 -04:00
import Assistant.DaemonStatus
2012-08-22 14:32:17 -04:00
import Assistant.Sync
2012-06-22 13:39:44 -04:00
import Utility.ThreadScheduler
import qualified Remote
import qualified Types.Remote as Remote
import Data.Time.Clock
thisThread :: ThreadName
thisThread = "Pusher"
2012-06-25 16:38:12 -04:00
{- This thread retries pushes that failed before. -}
2012-10-29 11:40:22 -04:00
pushRetryThread :: NamedThread
pushRetryThread = NamedThread "PushRetrier" $ runEvery (Seconds halfhour) <~> do
2012-06-25 16:38:12 -04:00
-- We already waited half an hour, now wait until there are failed
-- pushes to retry.
2012-10-29 17:52:43 -04:00
topush <- getFailedPushesBefore (fromIntegral halfhour)
unless (null topush) $ do
2012-10-29 11:40:22 -04:00
debug ["retrying", show (length topush), "failed pushes"]
2012-10-29 16:49:47 -04:00
void $ alertWhile (pushRetryAlert topush) $ do
now <- liftIO $ getCurrentTime
pushToRemotes now True topush
2012-10-31 02:34:03 -04:00
where
halfhour = 1800
2012-06-22 13:39:44 -04:00
2012-06-25 16:38:12 -04:00
{- This thread pushes git commits out to remotes soon after they are made. -}
2012-10-29 11:40:22 -04:00
pushThread :: NamedThread
pushThread = NamedThread "Pusher" $ runEvery (Seconds 2) <~> do
2012-09-13 00:57:52 -04:00
-- We already waited two seconds as a simple rate limiter.
-- Next, wait until at least one commit has been made
2012-10-29 19:35:18 -04:00
commits <- getCommits
2012-09-13 00:57:52 -04:00
-- Now see if now's a good time to push.
if shouldPush commits
2012-09-13 00:57:52 -04:00
then do
2012-10-30 14:44:18 -04:00
remotes <- filter pushable . syncRemotes <$> getDaemonStatus
2012-10-29 16:49:47 -04:00
unless (null remotes) $
void $ alertWhile (pushAlert remotes) $ do
now <- liftIO $ getCurrentTime
pushToRemotes now True remotes
2012-09-13 00:57:52 -04:00
else do
2012-10-29 11:40:22 -04:00
debug ["delaying push of", show (length commits), "commits"]
2012-10-29 19:35:18 -04:00
refillCommits commits
2012-10-29 11:40:22 -04:00
where
pushable r
| Remote.specialRemote r = False
| Remote.readonly r = False
| otherwise = True
2012-06-22 13:39:44 -04: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