git-annex/Annex/Queue.hs

54 lines
1.2 KiB
Haskell
Raw Normal View History

{- git-annex command queue
-
- Copyright 2011 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
2011-10-04 04:40:47 +00:00
module Annex.Queue (
add,
flush,
flushWhenFull
) where
2011-10-05 20:02:51 +00:00
import Common.Annex
import Annex hiding (new)
2011-06-30 17:25:37 +00:00
import qualified Git.Queue
2012-03-22 04:23:15 +00:00
import Config
2011-08-21 16:59:49 +00:00
{- Adds a git command to the queue. -}
add :: String -> [CommandParam] -> [FilePath] -> Annex ()
add command params files = do
q <- get
store $ Git.Queue.add q command params files
{- Runs the queue if it is full. Should be called periodically. -}
flushWhenFull :: Annex ()
flushWhenFull = do
q <- get
2011-06-30 17:25:37 +00:00
when (Git.Queue.full q) $ flush False
{- Runs (and empties) the queue. -}
flush :: Bool -> Annex ()
flush silent = do
q <- get
2011-06-30 17:25:37 +00:00
unless (0 == Git.Queue.size q) $ do
unless silent $
showSideAction "Recording state in git"
q' <- inRepo $ Git.Queue.flush q
store q'
get :: Annex Git.Queue.Queue
get = maybe new return =<< getState repoqueue
new :: Annex Git.Queue.Queue
new = do
2012-03-22 04:23:15 +00:00
q <- Git.Queue.new <$> queuesize
store q
return q
where
2012-03-22 04:23:15 +00:00
queuesize = readish <$> getConfig "annex.queuesize" ""
2011-06-30 17:25:37 +00:00
store :: Git.Queue.Queue -> Annex ()
store q = changeState $ \s -> s { repoqueue = Just q }