2011-12-13 01:24:55 +00:00
|
|
|
{- git hash-object interface
|
|
|
|
-
|
2012-02-14 18:35:52 +00:00
|
|
|
- Copyright 2011-2012 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
|
2011-12-14 19:56:11 +00:00
|
|
|
import Git.Command
|
2012-02-20 19:20:36 +00:00
|
|
|
import qualified Utility.CoProcess as CoProcess
|
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
|
2012-02-21 04:16:24 +00:00
|
|
|
hashObjectStart = CoProcess.start "git" . toCommand . gitCommandLine
|
|
|
|
[ Param "hash-object"
|
|
|
|
, Param "-w"
|
|
|
|
, Param "--stdin-paths"
|
|
|
|
]
|
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
|
|
|
|
|
|
|
{- Injects a file into git, returning the shas of the objects. -}
|
|
|
|
hashFile :: HashObjectHandle -> FilePath -> IO Sha
|
2012-02-20 19:20:36 +00:00
|
|
|
hashFile h file = CoProcess.query h send receive
|
|
|
|
where
|
2012-02-21 04:16:24 +00:00
|
|
|
send to = do
|
|
|
|
fileEncoding to
|
|
|
|
hPutStrLn to file
|
2012-02-20 19:20:36 +00:00
|
|
|
receive from = Ref <$> hGetLine from
|