git-annex/Git/HashObject.hs

46 lines
1.1 KiB
Haskell
Raw Normal View History

2011-12-12 21:24:55 -04:00
{- git hash-object interface
-
- Copyright 2011-2012 Joey Hess <joey@kitenet.net>
2011-12-12 21:24:55 -04:00
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Git.HashObject where
import Common
import Git
import Git.Sha
2011-12-14 15:56:11 -04:00
import Git.Command
import Git.Types
2012-02-20 15:20:36 -04:00
import qualified Utility.CoProcess as CoProcess
2011-12-12 21:24:55 -04:00
2012-02-20 15:20:36 -04:00
type HashObjectHandle = CoProcess.CoProcessHandle
hashObjectStart :: Repo -> IO HashObjectHandle
2012-09-15 17:25:05 -04:00
hashObjectStart = gitCoProcessStart
2012-02-21 00:16:24 -04:00
[ Param "hash-object"
, Param "-w"
, Param "--stdin-paths"
]
hashObjectStop :: HashObjectHandle -> IO ()
2012-02-20 15:20:36 -04:00
hashObjectStop = CoProcess.stop
{- Injects a file into git, returning the Sha of the object. -}
hashFile :: HashObjectHandle -> FilePath -> IO Sha
2012-02-20 15:20:36 -04:00
hashFile h file = CoProcess.query h send receive
2012-12-13 00:24:19 -04:00
where
send to = do
fileEncoding to
hPutStrLn to file
receive from = getSha "hash-object" $ hGetLine from
{- Injects some content into git, returning its Sha. -}
hashObject :: ObjectType -> String -> Repo -> IO Sha
hashObject objtype content repo = getSha subcmd $ do
2012-07-17 14:40:05 -04:00
s <- pipeWriteRead (map Param params) content repo
return s
2012-12-13 00:24:19 -04:00
where
subcmd = "hash-object"
params = [subcmd, "-t", show objtype, "-w", "--stdin"]