2011-12-12 21:38:46 +00:00
|
|
|
{- git-annex branch state management
|
|
|
|
-
|
2012-10-19 18:25:15 +00:00
|
|
|
- Runtime state about the git-annex branch.
|
2011-12-12 21:38:46 +00:00
|
|
|
-
|
2020-04-09 17:54:43 +00:00
|
|
|
- Copyright 2011-2020 Joey Hess <id@joeyh.name>
|
2011-12-12 21:38:46 +00:00
|
|
|
-
|
2019-03-13 19:48:14 +00:00
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2011-12-12 21:38:46 +00:00
|
|
|
-}
|
|
|
|
|
|
|
|
module Annex.BranchState where
|
|
|
|
|
2016-01-20 20:36:33 +00:00
|
|
|
import Annex.Common
|
2011-12-12 21:38:46 +00:00
|
|
|
import Types.BranchState
|
|
|
|
import qualified Annex
|
|
|
|
|
|
|
|
getState :: Annex BranchState
|
|
|
|
getState = Annex.getState Annex.branchstate
|
|
|
|
|
2012-01-14 18:31:16 +00:00
|
|
|
changeState :: (BranchState -> BranchState) -> Annex ()
|
2015-04-10 19:16:17 +00:00
|
|
|
changeState changer = Annex.changeState $ \s ->
|
|
|
|
s { Annex.branchstate = changer (Annex.branchstate s) }
|
2012-01-14 18:31:16 +00:00
|
|
|
|
2012-01-14 16:07:36 +00:00
|
|
|
{- Runs an action to check that the index file exists, if it's not been
|
|
|
|
- checked before in this run of git-annex. -}
|
|
|
|
checkIndexOnce :: Annex () -> Annex ()
|
|
|
|
checkIndexOnce a = unlessM (indexChecked <$> getState) $ do
|
|
|
|
a
|
2012-01-14 18:31:16 +00:00
|
|
|
changeState $ \s -> s { indexChecked = True }
|
2012-01-14 16:07:36 +00:00
|
|
|
|
2011-12-12 21:38:46 +00:00
|
|
|
{- Runs an action to update the branch, if it's not been updated before
|
2020-04-15 17:04:34 +00:00
|
|
|
- in this run of git-annex.
|
|
|
|
-
|
|
|
|
- The action should return True if anything that was in the journal
|
|
|
|
- before got staged (or if the journal was empty). That lets an opmisation
|
|
|
|
- be done: The journal then does not need to be checked going forward,
|
|
|
|
- until new information gets written to it.
|
|
|
|
-}
|
|
|
|
runUpdateOnce :: Annex Bool -> Annex BranchState
|
2020-04-09 17:54:43 +00:00
|
|
|
runUpdateOnce a = do
|
|
|
|
st <- getState
|
|
|
|
if branchUpdated st
|
|
|
|
then return st
|
|
|
|
else do
|
2020-04-15 17:04:34 +00:00
|
|
|
journalstaged <- a
|
2020-04-09 17:54:43 +00:00
|
|
|
let stf = \st' -> st'
|
|
|
|
{ branchUpdated = True
|
2020-04-15 17:04:34 +00:00
|
|
|
, journalIgnorable = journalstaged
|
|
|
|
&& not (journalNeverIgnorable st')
|
2020-04-09 17:54:43 +00:00
|
|
|
}
|
|
|
|
changeState stf
|
|
|
|
return (stf st)
|
2011-12-12 21:38:46 +00:00
|
|
|
|
|
|
|
{- Avoids updating the branch. A useful optimisation when the branch
|
|
|
|
- is known to have not changed, or git-annex won't be relying on info
|
|
|
|
- from it. -}
|
|
|
|
disableUpdate :: Annex ()
|
2012-01-14 18:31:16 +00:00
|
|
|
disableUpdate = changeState $ \s -> s { branchUpdated = True }
|
2020-04-09 17:54:43 +00:00
|
|
|
|
|
|
|
{- Called when a change is made to the journal. -}
|
|
|
|
journalChanged :: Annex ()
|
|
|
|
journalChanged = do
|
|
|
|
-- Optimisation: Typically journalIgnorable will already be True
|
|
|
|
-- (when one thing gets journalled, often other things do to),
|
|
|
|
-- so avoid an unnecessary write to the MVar that changeState
|
|
|
|
-- would do.
|
|
|
|
--
|
|
|
|
-- This assumes that another thread is not changing journalIgnorable
|
|
|
|
-- at the same time, but since runUpdateOnce is the only
|
|
|
|
-- thing that changes it, and it only runs once, that
|
|
|
|
-- should not happen.
|
|
|
|
st <- getState
|
|
|
|
when (journalIgnorable st) $
|
|
|
|
changeState $ \st' -> st' { journalIgnorable = False }
|
|
|
|
|
|
|
|
{- When git-annex is somehow interactive, eg in --batch mode,
|
|
|
|
- and needs to always notice changes made to the journal by other
|
|
|
|
- processes, this disables optimisations that avoid normally reading the
|
|
|
|
- journal.
|
|
|
|
-}
|
|
|
|
enableInteractiveJournalAccess :: Annex ()
|
|
|
|
enableInteractiveJournalAccess = changeState $
|
|
|
|
\s -> s { journalNeverIgnorable = True }
|