2012-06-25 20:38:12 +00:00
|
|
|
{- git-annex assistant push tracking
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2012 Joey Hess <id@joeyh.name>
|
2012-06-25 20:38:12 +00:00
|
|
|
-
|
2019-03-13 19:48:14 +00:00
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2012-06-25 20:38:12 +00:00
|
|
|
-}
|
|
|
|
|
|
|
|
module Assistant.Pushes where
|
|
|
|
|
2012-10-29 21:52:43 +00:00
|
|
|
import Assistant.Common
|
|
|
|
import Assistant.Types.Pushes
|
2012-06-25 20:38:12 +00:00
|
|
|
|
2012-06-26 21:33:34 +00:00
|
|
|
import Control.Concurrent.STM
|
2012-06-25 20:38:12 +00:00
|
|
|
import Data.Time.Clock
|
2012-06-26 16:36:42 +00:00
|
|
|
import qualified Data.Map as M
|
2012-06-25 20:38:12 +00:00
|
|
|
|
2012-06-26 21:33:34 +00:00
|
|
|
{- Blocks until there are failed pushes.
|
|
|
|
- Returns Remotes whose pushes failed a given time duration or more ago.
|
|
|
|
- (This may be an empty list.) -}
|
2017-09-20 18:37:20 +00:00
|
|
|
getFailedPushesBefore :: NominalDiffTime -> FailedPushMap -> Assistant [Remote]
|
|
|
|
getFailedPushesBefore duration v = liftIO $ do
|
|
|
|
m <- atomically $ readTMVar v
|
|
|
|
now <- getCurrentTime
|
|
|
|
return $ M.keys $ M.filter (not . toorecent now) m
|
2012-10-31 06:34:03 +00:00
|
|
|
where
|
|
|
|
toorecent now time = now `diffUTCTime` time < duration
|
2012-06-26 21:33:34 +00:00
|
|
|
|
|
|
|
{- Modifies the map. -}
|
2017-09-20 18:37:20 +00:00
|
|
|
changeFailedPushMap :: FailedPushMap -> (PushMap -> PushMap) -> Assistant ()
|
|
|
|
changeFailedPushMap v f = liftIO $ atomically $
|
|
|
|
store . f . fromMaybe M.empty =<< tryTakeTMVar v
|
2012-10-31 06:34:03 +00:00
|
|
|
where
|
2012-12-13 04:45:27 +00:00
|
|
|
{- tryTakeTMVar empties the TMVar; refill it only if
|
2012-10-31 06:34:03 +00:00
|
|
|
- the modified map is not itself empty -}
|
2017-09-20 18:37:20 +00:00
|
|
|
store m
|
2012-10-31 06:34:03 +00:00
|
|
|
| m == M.empty = noop
|
|
|
|
| otherwise = putTMVar v $! m
|