2011-12-13 01:24:55 +00:00
|
|
|
{- git hash-object interface
|
|
|
|
-
|
2014-02-18 21:38:23 +00:00
|
|
|
- Copyright 2011-2014 Joey Hess <joey@kitenet.net>
|
2011-12-13 01:24:55 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Git.HashObject where
|
|
|
|
|
|
|
|
import Common
|
|
|
|
import Git
|
2012-06-06 06:31:31 +00:00
|
|
|
import Git.Sha
|
2011-12-14 19:56:11 +00:00
|
|
|
import Git.Command
|
2012-06-06 06:31:31 +00:00
|
|
|
import Git.Types
|
2012-02-20 19:20:36 +00:00
|
|
|
import qualified Utility.CoProcess as CoProcess
|
2014-02-18 21:38:23 +00:00
|
|
|
import Utility.Tmp
|
2011-12-13 01:24:55 +00:00
|
|
|
|
2012-02-20 19:20:36 +00:00
|
|
|
type HashObjectHandle = CoProcess.CoProcessHandle
|
2012-02-14 18:35:52 +00:00
|
|
|
|
|
|
|
hashObjectStart :: Repo -> IO HashObjectHandle
|
2013-05-31 16:20:17 +00:00
|
|
|
hashObjectStart = CoProcess.rawMode <=< gitCoProcessStart True
|
2012-02-21 04:16:24 +00:00
|
|
|
[ Param "hash-object"
|
|
|
|
, Param "-w"
|
|
|
|
, Param "--stdin-paths"
|
2013-06-18 17:42:16 +00:00
|
|
|
, Param "--no-filters"
|
2012-02-21 04:16:24 +00:00
|
|
|
]
|
2012-02-14 18:35:52 +00:00
|
|
|
|
|
|
|
hashObjectStop :: HashObjectHandle -> IO ()
|
2012-02-20 19:20:36 +00:00
|
|
|
hashObjectStop = CoProcess.stop
|
2012-02-14 18:35:52 +00:00
|
|
|
|
2012-06-06 06:31:31 +00:00
|
|
|
{- Injects a file into git, returning the Sha of the object. -}
|
2012-02-14 18:35:52 +00:00
|
|
|
hashFile :: HashObjectHandle -> FilePath -> IO Sha
|
2012-02-20 19:20:36 +00:00
|
|
|
hashFile h file = CoProcess.query h send receive
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
2013-05-12 03:11:56 +00:00
|
|
|
send to = hPutStrLn to file
|
|
|
|
receive from = getSha "hash-object" $ hGetLine from
|
2012-06-06 06:31:31 +00:00
|
|
|
|
2014-02-18 21:38:23 +00:00
|
|
|
{- Injects a blob into git. Unfortunately, the current git-hash-object
|
|
|
|
- interface does not allow batch hashing without using temp files. -}
|
|
|
|
hashBlob :: HashObjectHandle -> String -> IO Sha
|
|
|
|
hashBlob h s = withTmpFile "hash" $ \tmp tmph -> do
|
|
|
|
hPutStr tmph s
|
|
|
|
hClose tmph
|
|
|
|
hashFile h tmp
|
|
|
|
|
|
|
|
{- Injects some content into git, returning its Sha.
|
|
|
|
-
|
|
|
|
- Avoids using a tmp file, but runs a new hash-object command each
|
|
|
|
- time called. -}
|
2012-06-07 19:40:44 +00:00
|
|
|
hashObject :: ObjectType -> String -> Repo -> IO Sha
|
2013-10-20 21:50:51 +00:00
|
|
|
hashObject objtype content = hashObject' objtype (flip hPutStr content)
|
|
|
|
|
|
|
|
hashObject' :: ObjectType -> (Handle -> IO ()) -> Repo -> IO Sha
|
|
|
|
hashObject' objtype writer repo = getSha subcmd $
|
|
|
|
pipeWriteRead (map Param params) (Just writer) repo
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
subcmd = "hash-object"
|
2013-06-18 18:48:15 +00:00
|
|
|
params = [subcmd, "-t", show objtype, "-w", "--stdin", "--no-filters"]
|