git-annex/Annex.hs

117 lines
2.8 KiB
Haskell
Raw Normal View History

2010-10-27 20:53:54 +00:00
{- git-annex monad
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
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(..),
queue,
queueGet
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
import qualified GitQueue
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
{- 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,
Internals.repoqueue = GitQueue.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 -}
2010-10-14 07:18:11 +00:00
run state action = runStateT (action) state
{- Returns the git repository being acted on -}
2010-10-14 07:18:11 +00:00
gitRepo :: Annex Git.Repo
gitRepo = do
state <- get
2010-10-18 06:06:27 +00:00
return (Internals.repo state)
{- Changes the git repository being acted on. -}
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 }
{- Returns the backends being used. -}
2010-10-14 07:18:11 +00:00
backends :: Annex [Backend]
backends = do
state <- get
2010-10-18 06:06:27 +00:00
return (Internals.backends state)
{- Sets the backends to use. -}
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 }
{- Returns the full list of supported backends. -}
supportedBackends :: Annex [Backend]
supportedBackends = do
state <- get
2010-10-18 06:06:27 +00:00
return (Internals.supportedBackends state)
{- Return True if a Bool flag is set. -}
flagIsSet :: FlagName -> Annex Bool
flagIsSet name = do
state <- get
case (M.lookup name $ Internals.flags state) of
Just (FlagBool True) -> return True
_ -> return False
{- Sets the value of a flag. -}
flagChange :: FlagName -> Flag -> Annex ()
flagChange name val = do
state <- get
put state { Internals.flags = M.insert name val $ Internals.flags state }
{- Gets the value of a String flag (or "" if there is no such String flag) -}
flagGet :: FlagName -> Annex String
flagGet name = do
state <- get
case (M.lookup name $ Internals.flags state) of
Just (FlagString s) -> return s
_ -> return ""
{- Adds a git command to the queue. -}
queue :: String -> [String] -> FilePath -> Annex ()
queue subcommand params file = do
state <- get
let q = Internals.repoqueue state
put state { Internals.repoqueue = GitQueue.add q subcommand params file }
{- Returns the queue. -}
queueGet :: Annex GitQueue.Queue
queueGet = do
state <- get
return (Internals.repoqueue state)