git-annex/Annex.hs

85 lines
2 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,
flagGet,
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
import qualified Data.Map as M
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 = M.empty
}
(_,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 :: FlagName -> Annex Bool
flagIsSet name = do
state <- get
case (M.lookup name $ Internals.flags state) of
Just (FlagBool True) -> return True
_ -> return False
flagChange :: FlagName -> Flag -> Annex ()
flagChange name val = do
state <- get
put state { Internals.flags = M.insert name val $ Internals.flags state }
return ()
flagGet :: FlagName -> Annex String
flagGet name = do
state <- get
case (M.lookup name $ Internals.flags state) of
Just (FlagString s) -> return s
_ -> return ""