git-annex/Assistant/Pushes.hs

38 lines
1.1 KiB
Haskell
Raw Normal View History

2012-06-25 20:38:12 +00:00
{- git-annex assistant push tracking
-
- Copyright 2012 Joey Hess <id@joeyh.name>
2012-06-25 20:38:12 +00:00
-
- Licensed under the GNU GPL version 3 or higher.
-}
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
import Control.Concurrent.STM
2012-06-25 20:38:12 +00:00
import Data.Time.Clock
import qualified Data.Map as M
2012-06-25 20:38:12 +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.) -}
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
{- Modifies the map. -}
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 -}
store m
2012-10-31 06:34:03 +00:00
| m == M.empty = noop
| otherwise = putTMVar v $! m