2010-10-14 07:18:11 +00:00
|
|
|
{- git-annex monad -}
|
2010-10-10 19:04:07 +00:00
|
|
|
|
2010-10-11 21:52:46 +00:00
|
|
|
module Annex (
|
2010-10-14 07:18:11 +00:00
|
|
|
new,
|
|
|
|
run,
|
|
|
|
gitRepo,
|
|
|
|
gitRepoChange,
|
|
|
|
backends,
|
|
|
|
backendsChange,
|
2010-10-17 15:47:36 +00:00
|
|
|
supportedBackends,
|
2010-10-15 01:10:59 +00:00
|
|
|
flagIsSet,
|
2010-10-15 03:52:45 +00:00
|
|
|
flagChange,
|
2010-10-15 01:10:59 +00:00
|
|
|
Flag(..)
|
2010-10-11 21:52:46 +00:00
|
|
|
) where
|
2010-10-10 19:04:07 +00:00
|
|
|
|
2010-10-14 07:18:11 +00:00
|
|
|
import Control.Monad.State
|
2010-10-16 20:20:49 +00:00
|
|
|
|
2010-10-14 06:36:41 +00:00
|
|
|
import qualified GitRepo as Git
|
2010-10-14 07:18:11 +00:00
|
|
|
import Types
|
2010-10-18 06:06:27 +00:00
|
|
|
import qualified TypeInternals as Internals
|
2010-10-14 07:18:11 +00:00
|
|
|
|
2010-10-14 20:13:43 +00:00
|
|
|
{- Create and returns an Annex state object for the specified git repo.
|
|
|
|
-}
|
2010-10-17 15:47:36 +00:00
|
|
|
new :: Git.Repo -> [Backend] -> IO AnnexState
|
|
|
|
new gitrepo allbackends = do
|
2010-10-18 06:06:27 +00:00
|
|
|
let s = Internals.AnnexState {
|
|
|
|
Internals.repo = gitrepo,
|
|
|
|
Internals.backends = [],
|
|
|
|
Internals.supportedBackends = allbackends,
|
|
|
|
Internals.flags = []
|
2010-10-15 01:10:59 +00:00
|
|
|
}
|
2010-10-17 15:47:36 +00:00
|
|
|
(_,s') <- Annex.run s (prep gitrepo)
|
2010-10-14 20:13:43 +00:00
|
|
|
return s'
|
|
|
|
where
|
2010-10-17 15:47:36 +00:00
|
|
|
prep gitrepo = do
|
2010-10-14 20:13:43 +00:00
|
|
|
-- read git config and update state
|
2010-10-17 15:47:36 +00:00
|
|
|
gitrepo' <- liftIO $ Git.configRead gitrepo
|
|
|
|
Annex.gitRepoChange gitrepo'
|
2010-10-14 07:18:11 +00:00
|
|
|
|
|
|
|
-- performs an action in the Annex monad
|
|
|
|
run state action = runStateT (action) state
|
|
|
|
|
|
|
|
-- Annex monad state accessors
|
|
|
|
gitRepo :: Annex Git.Repo
|
|
|
|
gitRepo = do
|
|
|
|
state <- get
|
2010-10-18 06:06:27 +00:00
|
|
|
return (Internals.repo state)
|
2010-10-14 07:18:11 +00:00
|
|
|
gitRepoChange :: Git.Repo -> Annex ()
|
|
|
|
gitRepoChange r = do
|
|
|
|
state <- get
|
2010-10-18 06:06:27 +00:00
|
|
|
put state { Internals.repo = r }
|
2010-10-14 07:18:11 +00:00
|
|
|
return ()
|
|
|
|
backends :: Annex [Backend]
|
|
|
|
backends = do
|
|
|
|
state <- get
|
2010-10-18 06:06:27 +00:00
|
|
|
return (Internals.backends state)
|
2010-10-14 07:18:11 +00:00
|
|
|
backendsChange :: [Backend] -> Annex ()
|
|
|
|
backendsChange b = do
|
|
|
|
state <- get
|
2010-10-18 06:06:27 +00:00
|
|
|
put state { Internals.backends = b }
|
2010-10-14 07:18:11 +00:00
|
|
|
return ()
|
2010-10-17 15:47:36 +00:00
|
|
|
supportedBackends :: Annex [Backend]
|
|
|
|
supportedBackends = do
|
|
|
|
state <- get
|
2010-10-18 06:06:27 +00:00
|
|
|
return (Internals.supportedBackends state)
|
2010-10-15 01:10:59 +00:00
|
|
|
flagIsSet :: Flag -> Annex Bool
|
|
|
|
flagIsSet flag = do
|
|
|
|
state <- get
|
2010-10-18 06:06:27 +00:00
|
|
|
return $ elem flag $ Internals.flags state
|
2010-10-15 03:52:45 +00:00
|
|
|
flagChange :: Flag -> Bool -> Annex ()
|
|
|
|
flagChange flag set = do
|
2010-10-15 01:10:59 +00:00
|
|
|
state <- get
|
2010-10-18 06:06:27 +00:00
|
|
|
let f = filter (/= flag) $ Internals.flags state
|
2010-10-15 03:52:45 +00:00
|
|
|
if (set)
|
2010-10-18 06:06:27 +00:00
|
|
|
then put state { Internals.flags = (flag:f) }
|
|
|
|
else put state { Internals.flags = f }
|
2010-10-15 01:10:59 +00:00
|
|
|
return ()
|