summaryrefslogtreecommitdiff
path: root/Annex.hs
blob: 9be86c94817695f7d540f49332c05c3f606b40e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{- git-annex monad -}

module Annex (
	new,
	run,
	gitRepo,
	gitRepoChange,
	backends,
	backendsChange,
) where

import Control.Monad.State
import qualified GitRepo as Git
import Types
import qualified BackendTypes as Backend

{- Create and returns an Annex state object for the specified git repo.
 -}
new :: Git.Repo -> IO AnnexState
new g = do
	let s = Backend.AnnexState { Backend.repo = g, Backend.backends = [] }
	(_,s') <- Annex.run s (prep g)
	return s'
	where
		prep g = do
			-- read git config and update state
			g' <- liftIO $ Git.configRead g
			Annex.gitRepoChange g'

-- 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
	return (Backend.repo state)
gitRepoChange :: Git.Repo -> Annex ()
gitRepoChange r = do
	state <- get
	put state { Backend.repo = r }
	return ()
backends :: Annex [Backend]
backends = do
	state <- get
	return (Backend.backends state)
backendsChange :: [Backend] -> Annex ()
backendsChange b = do
	state <- get
	put state { Backend.backends = b }
	return ()