git-annex/Annex.hs

78 lines
1.7 KiB
Haskell
Raw Normal View History

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,
supportedBackends,
flagIsSet,
2010-10-15 03:52:45 +00:00
flagChange,
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.
-}
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 = []
}
(_,s') <- Annex.run s (prep gitrepo)
2010-10-14 20:13:43 +00:00
return s'
where
prep gitrepo = do
2010-10-14 20:13:43 +00:00
-- read git config and update state
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 ()
supportedBackends :: Annex [Backend]
supportedBackends = do
state <- get
2010-10-18 06:06:27 +00:00
return (Internals.supportedBackends state)
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
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 }
return ()