git-annex/Git/HashObject.hs

77 lines
2.1 KiB
Haskell
Raw Normal View History

2011-12-13 01:24:55 +00:00
{- git hash-object interface
-
- Copyright 2011-2019 Joey Hess <id@joeyh.name>
2011-12-13 01:24:55 +00:00
-
- Licensed under the GNU AGPL version 3 or higher.
2011-12-13 01:24:55 +00:00
-}
{-# LANGUAGE CPP #-}
2011-12-13 01:24:55 +00:00
module Git.HashObject where
import Common
import Git
import Git.Sha
2011-12-14 19:56:11 +00:00
import Git.Command
import Git.Types
2012-02-20 19:20:36 +00:00
import qualified Utility.CoProcess as CoProcess
import Utility.Tmp
2011-12-13 01:24:55 +00:00
import qualified Data.ByteString as S
import qualified Data.ByteString.Lazy as L
import Data.ByteString.Builder
2012-02-20 19:20:36 +00:00
type HashObjectHandle = CoProcess.CoProcessHandle
hashObjectStart :: Repo -> IO HashObjectHandle
hashObjectStart = gitCoProcessStart True
2012-02-21 04:16:24 +00:00
[ Param "hash-object"
, Param "-w"
, Param "--stdin-paths"
, Param "--no-filters"
2012-02-21 04:16:24 +00:00
]
hashObjectStop :: HashObjectHandle -> IO ()
2012-02-20 19:20:36 +00:00
hashObjectStop = CoProcess.stop
{- Injects a file into git, returning the Sha of the object. -}
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
send to = hPutStrLn to =<< absPath file
2013-05-12 03:11:56 +00:00
receive from = getSha "hash-object" $ hGetLine from
class HashableBlob t where
hashableBlobToHandle :: Handle -> t -> IO ()
instance HashableBlob L.ByteString where
hashableBlobToHandle = L.hPut
instance HashableBlob S.ByteString where
hashableBlobToHandle = S.hPut
instance HashableBlob Builder where
hashableBlobToHandle = hPutBuilder
{- Injects a blob into git. Unfortunately, the current git-hash-object
- interface does not allow batch hashing without using temp files. -}
hashBlob :: HashableBlob b => HashObjectHandle -> b -> IO Sha
hashBlob h b = withTmpFile "hash" $ \tmp tmph -> do
hashableBlobToHandle tmph b
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. -}
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"
params = [subcmd, "-t", show objtype, "-w", "--stdin", "--no-filters"]