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
|
|
|
|
|
2011-08-19 18:28:07 +00:00
|
|
|
|
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
|
|
|
|
|
|
2010-10-11 21:52:46 +00:00
|
|
|
|
module Annex (
|
2011-01-26 01:49:04 +00:00
|
|
|
|
Annex,
|
|
|
|
|
AnnexState(..),
|
2011-09-01 17:35:07 +00:00
|
|
|
|
OutputType(..),
|
2010-10-14 07:18:11 +00:00
|
|
|
|
new,
|
|
|
|
|
run,
|
2010-11-01 03:24:16 +00:00
|
|
|
|
eval,
|
2011-01-26 04:17:38 +00:00
|
|
|
|
getState,
|
|
|
|
|
changeState,
|
2011-04-07 17:59:31 +00:00
|
|
|
|
gitRepo
|
2010-10-11 21:52:46 +00:00
|
|
|
|
) where
|
2010-10-10 19:04:07 +00:00
|
|
|
|
|
2011-04-26 23:42:40 +00:00
|
|
|
|
import Control.Monad.State
|
2011-08-19 18:28:07 +00:00
|
|
|
|
import Control.Monad.IO.Control
|
2011-08-25 04:28:55 +00:00
|
|
|
|
import Control.Applicative hiding (empty)
|
2010-10-16 20:20:49 +00:00
|
|
|
|
|
2011-06-30 17:16:57 +00:00
|
|
|
|
import qualified Git
|
2011-06-30 17:25:37 +00:00
|
|
|
|
import Git.Queue
|
2011-06-02 01:56:04 +00:00
|
|
|
|
import Types.Backend
|
2011-09-19 00:11:39 +00:00
|
|
|
|
import qualified Types.Remote
|
2011-06-02 01:56:04 +00:00
|
|
|
|
import Types.Crypto
|
2011-06-22 19:58:30 +00:00
|
|
|
|
import Types.BranchState
|
2011-06-24 01:25:39 +00:00
|
|
|
|
import Types.TrustLevel
|
2011-06-02 01:56:04 +00:00
|
|
|
|
import Types.UUID
|
2011-09-18 21:47:49 +00:00
|
|
|
|
import qualified Utility.Matcher
|
2011-01-26 01:49:04 +00:00
|
|
|
|
|
|
|
|
|
-- git-annex's monad
|
2011-08-19 18:28:07 +00:00
|
|
|
|
newtype Annex a = Annex { runAnnex :: StateT AnnexState IO a }
|
|
|
|
|
deriving (
|
|
|
|
|
Monad,
|
|
|
|
|
MonadIO,
|
|
|
|
|
MonadControlIO,
|
2011-08-25 04:28:55 +00:00
|
|
|
|
MonadState AnnexState,
|
|
|
|
|
Functor,
|
|
|
|
|
Applicative
|
2011-08-19 18:28:07 +00:00
|
|
|
|
)
|
2011-01-26 01:49:04 +00:00
|
|
|
|
|
|
|
|
|
-- internal state storage
|
2011-01-26 04:17:38 +00:00
|
|
|
|
data AnnexState = AnnexState
|
|
|
|
|
{ repo :: Git.Repo
|
2011-06-01 23:10:38 +00:00
|
|
|
|
, backends :: [Backend Annex]
|
2011-09-19 00:11:39 +00:00
|
|
|
|
, remotes :: [Types.Remote.Remote Annex]
|
2011-06-01 23:10:38 +00:00
|
|
|
|
, repoqueue :: Queue
|
2011-09-01 17:35:07 +00:00
|
|
|
|
, output :: OutputType
|
2011-01-26 04:17:38 +00:00
|
|
|
|
, force :: Bool
|
2011-03-22 21:41:06 +00:00
|
|
|
|
, fast :: Bool
|
2011-09-15 17:30:04 +00:00
|
|
|
|
, auto :: Bool
|
2011-06-22 19:58:30 +00:00
|
|
|
|
, branchstate :: BranchState
|
2011-05-18 23:34:46 +00:00
|
|
|
|
, forcebackend :: Maybe String
|
2011-06-01 20:49:17 +00:00
|
|
|
|
, forcenumcopies :: Maybe Int
|
2011-01-26 04:17:38 +00:00
|
|
|
|
, defaultkey :: Maybe String
|
|
|
|
|
, toremote :: Maybe String
|
|
|
|
|
, fromremote :: Maybe String
|
2011-09-18 21:47:49 +00:00
|
|
|
|
, limit :: Either [Utility.Matcher.Token (FilePath -> Annex Bool)] (Utility.Matcher.Matcher (FilePath -> Annex Bool))
|
2011-06-01 23:10:38 +00:00
|
|
|
|
, forcetrust :: [(UUID, TrustLevel)]
|
2011-06-24 01:25:39 +00:00
|
|
|
|
, trustmap :: Maybe TrustMap
|
2011-06-01 23:10:38 +00:00
|
|
|
|
, cipher :: Maybe Cipher
|
2011-04-16 20:41:46 +00:00
|
|
|
|
}
|
2011-01-26 04:17:38 +00:00
|
|
|
|
|
2011-09-01 19:16:31 +00:00
|
|
|
|
data OutputType = NormalOutput | QuietOutput | JSONOutput
|
2011-09-01 17:35:07 +00:00
|
|
|
|
|
2011-07-05 22:31:46 +00:00
|
|
|
|
newState :: Git.Repo -> AnnexState
|
|
|
|
|
newState gitrepo = AnnexState
|
2011-01-26 04:17:38 +00:00
|
|
|
|
{ repo = gitrepo
|
|
|
|
|
, backends = []
|
2011-03-27 20:17:56 +00:00
|
|
|
|
, remotes = []
|
2011-06-01 23:10:38 +00:00
|
|
|
|
, repoqueue = empty
|
2011-09-01 17:35:07 +00:00
|
|
|
|
, output = NormalOutput
|
2011-01-26 04:17:38 +00:00
|
|
|
|
, force = False
|
2011-03-22 21:41:06 +00:00
|
|
|
|
, fast = False
|
2011-09-15 17:30:04 +00:00
|
|
|
|
, auto = False
|
2011-06-22 19:58:30 +00:00
|
|
|
|
, branchstate = startBranchState
|
2011-05-18 23:34:46 +00:00
|
|
|
|
, forcebackend = Nothing
|
2011-06-01 20:49:17 +00:00
|
|
|
|
, forcenumcopies = Nothing
|
2011-01-26 04:17:38 +00:00
|
|
|
|
, defaultkey = Nothing
|
|
|
|
|
, toremote = Nothing
|
|
|
|
|
, fromremote = Nothing
|
2011-09-18 21:47:49 +00:00
|
|
|
|
, limit = Left []
|
2011-06-01 21:49:37 +00:00
|
|
|
|
, forcetrust = []
|
2011-06-24 01:25:39 +00:00
|
|
|
|
, trustmap = Nothing
|
2011-04-16 20:41:46 +00:00
|
|
|
|
, cipher = Nothing
|
2011-01-26 04:17:38 +00:00
|
|
|
|
}
|
2010-10-14 07:18:11 +00:00
|
|
|
|
|
2010-10-26 19:59:50 +00:00
|
|
|
|
{- Create and returns an Annex state object for the specified git repo. -}
|
2011-07-05 22:31:46 +00:00
|
|
|
|
new :: Git.Repo -> IO AnnexState
|
2011-08-25 04:28:55 +00:00
|
|
|
|
new gitrepo = newState <$> Git.configRead gitrepo
|
2010-10-14 07:18:11 +00:00
|
|
|
|
|
2010-10-26 19:59:50 +00:00
|
|
|
|
{- performs an action in the Annex monad -}
|
2011-01-11 22:13:26 +00:00
|
|
|
|
run :: AnnexState -> Annex a -> IO (a, AnnexState)
|
2011-08-19 18:28:07 +00:00
|
|
|
|
run s a = runStateT (runAnnex a) s
|
2011-01-11 22:13:26 +00:00
|
|
|
|
eval :: AnnexState -> Annex a -> IO a
|
2011-08-19 18:28:07 +00:00
|
|
|
|
eval s a = evalStateT (runAnnex a) s
|
2010-10-14 07:18:11 +00:00
|
|
|
|
|
2011-01-26 04:17:38 +00:00
|
|
|
|
{- Gets a value from the internal state, selected by the passed value
|
|
|
|
|
- constructor. -}
|
2011-01-26 01:49:04 +00:00
|
|
|
|
getState :: (AnnexState -> a) -> Annex a
|
2011-06-16 22:27:01 +00:00
|
|
|
|
getState = gets
|
2011-01-26 04:17:38 +00:00
|
|
|
|
|
|
|
|
|
{- Applies a state mutation function to change the internal state.
|
|
|
|
|
-
|
2011-06-16 22:27:01 +00:00
|
|
|
|
- Example: changeState $ \s -> s { quiet = True }
|
2011-01-26 04:17:38 +00:00
|
|
|
|
-}
|
|
|
|
|
changeState :: (AnnexState -> AnnexState) -> Annex ()
|
2011-06-16 22:27:01 +00:00
|
|
|
|
changeState = modify
|
2011-01-26 01:49:04 +00:00
|
|
|
|
|
2010-10-26 19:59:50 +00:00
|
|
|
|
{- Returns the git repository being acted on -}
|
2010-10-14 07:18:11 +00:00
|
|
|
|
gitRepo :: Annex Git.Repo
|
2011-01-26 01:49:04 +00:00
|
|
|
|
gitRepo = getState repo
|