2011-12-13 19:05:07 +00:00
|
|
|
{- git repository configuration handling
|
|
|
|
-
|
|
|
|
- Copyright 2010,2011 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Git.Config (
|
|
|
|
get,
|
|
|
|
read,
|
|
|
|
hRead,
|
|
|
|
store
|
|
|
|
) where
|
|
|
|
|
|
|
|
import Prelude hiding (read)
|
|
|
|
import System.Posix.Directory
|
|
|
|
import Control.Exception (bracket_)
|
|
|
|
import qualified Data.Map as M
|
|
|
|
|
|
|
|
import Common
|
|
|
|
import Git
|
|
|
|
import Git.Types
|
|
|
|
import qualified Git.Construct
|
|
|
|
|
|
|
|
{- Returns a single git config setting, or a default value if not set. -}
|
|
|
|
get :: String -> String -> Repo -> String
|
|
|
|
get key defaultValue repo = M.findWithDefault defaultValue key (config repo)
|
|
|
|
|
|
|
|
{- Runs git config and populates a repo with its config. -}
|
|
|
|
read :: Repo -> IO Repo
|
|
|
|
read repo@(Repo { location = Dir d }) = do
|
|
|
|
{- Cannot use pipeRead because it relies on the config having
|
|
|
|
been already read. Instead, chdir to the repo. -}
|
|
|
|
cwd <- getCurrentDirectory
|
|
|
|
bracket_ (changeWorkingDirectory d) (changeWorkingDirectory cwd) $
|
2011-12-15 16:46:04 +00:00
|
|
|
pOpen ReadFromPipe "git" ["config", "--null", "--list"] $
|
|
|
|
hRead repo
|
2011-12-13 19:05:07 +00:00
|
|
|
read r = assertLocal r $ error "internal"
|
|
|
|
|
|
|
|
{- Reads git config from a handle and populates a repo with it. -}
|
|
|
|
hRead :: Repo -> Handle -> IO Repo
|
|
|
|
hRead repo h = do
|
|
|
|
val <- hGetContentsStrict h
|
|
|
|
store val repo
|
|
|
|
|
|
|
|
{- Stores a git config into a repo, returning the new version of the repo.
|
|
|
|
- The git config may be multiple lines, or a single line. Config settings
|
|
|
|
- can be updated inrementally. -}
|
|
|
|
store :: String -> Repo -> IO Repo
|
|
|
|
store s repo = do
|
|
|
|
let repo' = repo { config = parse s `M.union` config repo }
|
|
|
|
rs <- Git.Construct.fromRemotes repo'
|
|
|
|
return $ repo' { remotes = rs }
|
|
|
|
|
2011-12-15 16:46:04 +00:00
|
|
|
{- Parses git config --list or git config --null --list output into a
|
|
|
|
- config map. -}
|
2011-12-13 19:05:07 +00:00
|
|
|
parse :: String -> M.Map String String
|
2011-12-15 16:46:04 +00:00
|
|
|
parse [] = M.empty
|
|
|
|
parse s
|
|
|
|
-- --list output will have an = in the first line
|
2011-12-15 17:05:47 +00:00
|
|
|
| '=' `elem` head ls = sep '=' ls
|
2011-12-15 16:46:04 +00:00
|
|
|
-- --null --list output separates keys from values with newlines
|
2011-12-15 17:05:47 +00:00
|
|
|
| otherwise = sep '\n' $ split "\0" s
|
2011-12-13 19:05:07 +00:00
|
|
|
where
|
2011-12-15 16:46:04 +00:00
|
|
|
ls = lines s
|
2011-12-15 17:05:47 +00:00
|
|
|
sep c = M.fromList . map (separate (== c))
|