2011-04-07 13:59:31 -04:00
|
|
|
{- git-annex command queue
|
|
|
|
-
|
2015-01-21 12:50:09 -04:00
|
|
|
- Copyright 2011, 2012 Joey Hess <id@joeyh.name>
|
2011-04-07 13:59:31 -04:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
2015-11-05 18:21:48 -04:00
|
|
|
{-# LANGUAGE BangPatterns #-}
|
|
|
|
|
2011-10-04 00:40:47 -04:00
|
|
|
module Annex.Queue (
|
2012-06-07 15:19:44 -04:00
|
|
|
addCommand,
|
2012-06-07 15:40:44 -04:00
|
|
|
addUpdateIndex,
|
2011-04-07 13:59:31 -04:00
|
|
|
flush,
|
2012-06-10 13:56:04 -04:00
|
|
|
flushWhenFull,
|
2015-11-05 18:21:48 -04:00
|
|
|
size,
|
|
|
|
mergeFrom,
|
2011-04-07 13:59:31 -04:00
|
|
|
) where
|
|
|
|
|
2016-01-20 16:36:33 -04:00
|
|
|
import Annex.Common
|
2012-02-15 11:13:13 -04:00
|
|
|
import Annex hiding (new)
|
2011-06-30 13:25:37 -04:00
|
|
|
import qualified Git.Queue
|
2012-06-07 15:40:44 -04:00
|
|
|
import qualified Git.UpdateIndex
|
2011-04-07 13:59:31 -04:00
|
|
|
|
2011-08-21 12:59:49 -04:00
|
|
|
{- Adds a git command to the queue. -}
|
2012-06-07 15:19:44 -04:00
|
|
|
addCommand :: String -> [CommandParam] -> [FilePath] -> Annex ()
|
|
|
|
addCommand command params files = do
|
2012-02-15 11:13:13 -04:00
|
|
|
q <- get
|
2016-01-13 14:55:01 -04:00
|
|
|
store <=< flushWhenFull <=< inRepo $
|
|
|
|
Git.Queue.addCommand command params files q
|
2011-04-07 13:59:31 -04:00
|
|
|
|
2012-06-07 15:40:44 -04:00
|
|
|
{- Adds an update-index stream to the queue. -}
|
|
|
|
addUpdateIndex :: Git.UpdateIndex.Streamer -> Annex ()
|
|
|
|
addUpdateIndex streamer = do
|
|
|
|
q <- get
|
2016-01-13 14:55:01 -04:00
|
|
|
store <=< flushWhenFull <=< inRepo $
|
|
|
|
Git.Queue.addUpdateIndex streamer q
|
2012-06-07 15:40:44 -04:00
|
|
|
|
2016-01-13 14:55:01 -04:00
|
|
|
{- Runs the queue if it is full. -}
|
|
|
|
flushWhenFull :: Git.Queue.Queue -> Annex Git.Queue.Queue
|
|
|
|
flushWhenFull q
|
|
|
|
| Git.Queue.full q = flush' q
|
|
|
|
| otherwise = return q
|
2011-04-07 13:59:31 -04:00
|
|
|
|
|
|
|
{- Runs (and empties) the queue. -}
|
2012-04-27 13:23:52 -04:00
|
|
|
flush :: Annex ()
|
|
|
|
flush = do
|
2012-02-15 11:13:13 -04:00
|
|
|
q <- get
|
2011-06-30 13:25:37 -04:00
|
|
|
unless (0 == Git.Queue.size q) $ do
|
2016-01-13 14:55:01 -04:00
|
|
|
store =<< flush' q
|
|
|
|
|
|
|
|
flush' :: Git.Queue.Queue -> Annex Git.Queue.Queue
|
|
|
|
flush' q = do
|
|
|
|
showStoringStateAction
|
|
|
|
inRepo $ Git.Queue.flush q
|
2011-04-07 13:59:31 -04:00
|
|
|
|
2012-06-10 13:56:04 -04:00
|
|
|
{- Gets the size of the queue. -}
|
|
|
|
size :: Annex Int
|
|
|
|
size = Git.Queue.size <$> get
|
|
|
|
|
2012-02-15 11:13:13 -04:00
|
|
|
get :: Annex Git.Queue.Queue
|
|
|
|
get = maybe new return =<< getState repoqueue
|
|
|
|
|
|
|
|
new :: Annex Git.Queue.Queue
|
|
|
|
new = do
|
2013-01-01 13:52:47 -04:00
|
|
|
q <- Git.Queue.new . annexQueueSize <$> getGitConfig
|
2012-02-15 11:13:13 -04:00
|
|
|
store q
|
|
|
|
return q
|
|
|
|
|
2011-06-30 13:25:37 -04:00
|
|
|
store :: Git.Queue.Queue -> Annex ()
|
2012-02-15 11:13:13 -04:00
|
|
|
store q = changeState $ \s -> s { repoqueue = Just q }
|
2015-11-05 18:21:48 -04:00
|
|
|
|
|
|
|
mergeFrom :: AnnexState -> Annex ()
|
|
|
|
mergeFrom st = case repoqueue st of
|
|
|
|
Nothing -> noop
|
|
|
|
Just newq -> do
|
|
|
|
q <- get
|
|
|
|
let !q' = Git.Queue.merge q newq
|
2016-01-13 14:55:01 -04:00
|
|
|
store =<< flushWhenFull q'
|