git-annex/Assistant/Changes.hs

48 lines
1.5 KiB
Haskell
Raw Normal View History

2012-06-19 06:40:21 +00:00
{- git-annex assistant change tracking
-
- Copyright 2012-2013 Joey Hess <id@joeyh.name>
2012-06-23 05:20:40 +00:00
-
- Licensed under the GNU GPL version 3 or higher.
2012-06-19 06:40:21 +00:00
-}
module Assistant.Changes where
2012-10-29 23:30:23 +00:00
import Assistant.Common
import Assistant.Types.Changes
2013-04-24 20:13:22 +00:00
import Utility.TList
2012-06-19 06:40:21 +00:00
import Data.Time.Clock
import Control.Concurrent.STM
2012-06-19 06:40:21 +00:00
{- Handlers call this when they made a change that needs to get committed. -}
madeChange :: FilePath -> ChangeInfo -> Assistant (Maybe Change)
2012-10-29 23:30:23 +00:00
madeChange f t = Just <$> (Change <$> liftIO getCurrentTime <*> pure f <*> pure t)
2012-06-19 06:40:21 +00:00
2012-10-29 23:30:23 +00:00
noChange :: Assistant (Maybe Change)
2012-06-19 06:40:21 +00:00
noChange = return Nothing
{- Indicates an add needs to be done, but has not started yet. -}
2012-10-29 23:30:23 +00:00
pendingAddChange :: FilePath -> Assistant (Maybe Change)
pendingAddChange f = Just <$> (PendingAddChange <$> liftIO getCurrentTime <*> pure f)
2012-06-19 06:40:21 +00:00
{- Gets all unhandled changes.
- Blocks until at least one change is made. -}
2012-10-29 23:30:23 +00:00
getChanges :: Assistant [Change]
2013-04-24 20:13:22 +00:00
getChanges = (atomically . getTList) <<~ changePool
{- Gets all unhandled changes, without blocking. -}
getAnyChanges :: Assistant [Change]
getAnyChanges = (atomically . takeTList) <<~ changePool
2012-06-19 06:40:21 +00:00
2013-04-24 20:13:22 +00:00
{- Puts unhandled changes back into the pool.
2012-06-19 06:40:21 +00:00
- Note: Original order is not preserved. -}
2012-10-29 23:30:23 +00:00
refillChanges :: [Change] -> Assistant ()
2013-04-24 20:13:22 +00:00
refillChanges cs = (atomically . flip appendTList cs) <<~ changePool
2012-06-22 17:39:44 +00:00
2013-04-24 20:13:22 +00:00
{- Records a change to the pool. -}
2012-10-29 23:30:23 +00:00
recordChange :: Change -> Assistant ()
2013-04-24 20:13:22 +00:00
recordChange c = (atomically . flip snocTList c) <<~ changePool
recordChanges :: [Change] -> Assistant ()
recordChanges = refillChanges