2011-09-28 19:15:42 +00:00
|
|
|
{- git cat-file interface
|
|
|
|
-
|
|
|
|
- Copyright 2011 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Git.CatFile (
|
|
|
|
CatFileHandle,
|
|
|
|
catFileStart,
|
|
|
|
catFileStop,
|
2011-11-12 21:45:12 +00:00
|
|
|
catFile,
|
|
|
|
catObject
|
2011-09-28 19:15:42 +00:00
|
|
|
) where
|
|
|
|
|
|
|
|
import Control.Monad.State
|
|
|
|
import System.Cmd.Utils
|
|
|
|
import System.IO
|
2011-11-12 21:45:12 +00:00
|
|
|
import qualified Data.ByteString.Char8 as S
|
|
|
|
import qualified Data.ByteString.Lazy.Char8 as L
|
2011-09-28 19:15:42 +00:00
|
|
|
|
|
|
|
import Git
|
2011-12-14 19:30:14 +00:00
|
|
|
import Git.Sha
|
2011-09-28 19:15:42 +00:00
|
|
|
import Utility.SafeCommand
|
|
|
|
|
|
|
|
type CatFileHandle = (PipeHandle, Handle, Handle)
|
|
|
|
|
|
|
|
{- Starts git cat-file running in batch mode in a repo and returns a handle. -}
|
|
|
|
catFileStart :: Repo -> IO CatFileHandle
|
|
|
|
catFileStart repo = hPipeBoth "git" $ toCommand $
|
2011-12-14 19:30:14 +00:00
|
|
|
gitCommandLine [Param "cat-file", Param "--batch"] repo
|
2011-09-28 19:15:42 +00:00
|
|
|
|
|
|
|
{- Stops git cat-file. -}
|
|
|
|
catFileStop :: CatFileHandle -> IO ()
|
|
|
|
catFileStop (pid, from, to) = do
|
|
|
|
hClose to
|
|
|
|
hClose from
|
|
|
|
forceSuccess pid
|
|
|
|
|
2011-11-12 21:45:12 +00:00
|
|
|
{- Reads a file from a specified branch. -}
|
improve type signatures with a Ref newtype
In git, a Ref can be a Sha, or a Branch, or a Tag. I added type aliases for
those. Note that this does not prevent mixing up of eg, refs and branches
at the type level. Since git really doesn't care, except rare cases like
git update-ref, or git tag -d, that seems ok for now.
There's also a tree-ish, but let's just use Ref for it. A given Sha or Ref
may or may not be a tree-ish, depending on the object type, so there seems
no point in trying to represent it at the type level.
2011-11-16 06:23:34 +00:00
|
|
|
catFile :: CatFileHandle -> Branch -> FilePath -> IO L.ByteString
|
|
|
|
catFile h branch file = catObject h $ Ref $ show branch ++ ":" ++ file
|
2011-11-12 21:45:12 +00:00
|
|
|
|
|
|
|
{- Uses a running git cat-file read the content of an object.
|
|
|
|
- Objects that do not exist will have "" returned. -}
|
improve type signatures with a Ref newtype
In git, a Ref can be a Sha, or a Branch, or a Tag. I added type aliases for
those. Note that this does not prevent mixing up of eg, refs and branches
at the type level. Since git really doesn't care, except rare cases like
git update-ref, or git tag -d, that seems ok for now.
There's also a tree-ish, but let's just use Ref for it. A given Sha or Ref
may or may not be a tree-ish, depending on the object type, so there seems
no point in trying to represent it at the type level.
2011-11-16 06:23:34 +00:00
|
|
|
catObject :: CatFileHandle -> Ref -> IO L.ByteString
|
2011-11-12 21:45:12 +00:00
|
|
|
catObject (_, from, to) object = do
|
improve type signatures with a Ref newtype
In git, a Ref can be a Sha, or a Branch, or a Tag. I added type aliases for
those. Note that this does not prevent mixing up of eg, refs and branches
at the type level. Since git really doesn't care, except rare cases like
git update-ref, or git tag -d, that seems ok for now.
There's also a tree-ish, but let's just use Ref for it. A given Sha or Ref
may or may not be a tree-ish, depending on the object type, so there seems
no point in trying to represent it at the type level.
2011-11-16 06:23:34 +00:00
|
|
|
hPutStrLn to $ show object
|
2011-09-28 19:15:42 +00:00
|
|
|
hFlush to
|
|
|
|
header <- hGetLine from
|
|
|
|
case words header of
|
2011-11-12 21:45:12 +00:00
|
|
|
[sha, objtype, size]
|
2011-12-14 19:30:14 +00:00
|
|
|
| length sha == shaSize &&
|
2011-11-12 21:45:12 +00:00
|
|
|
validobjtype objtype -> handle size
|
2011-09-28 19:15:42 +00:00
|
|
|
| otherwise -> empty
|
|
|
|
_
|
improve type signatures with a Ref newtype
In git, a Ref can be a Sha, or a Branch, or a Tag. I added type aliases for
those. Note that this does not prevent mixing up of eg, refs and branches
at the type level. Since git really doesn't care, except rare cases like
git update-ref, or git tag -d, that seems ok for now.
There's also a tree-ish, but let's just use Ref for it. A given Sha or Ref
may or may not be a tree-ish, depending on the object type, so there seems
no point in trying to represent it at the type level.
2011-11-16 06:23:34 +00:00
|
|
|
| header == show object ++ " missing" -> empty
|
2011-09-28 19:15:42 +00:00
|
|
|
| otherwise -> error $ "unknown response from git cat-file " ++ header
|
|
|
|
where
|
|
|
|
handle size = case reads size of
|
|
|
|
[(bytes, "")] -> readcontent bytes
|
|
|
|
_ -> empty
|
|
|
|
readcontent bytes = do
|
2011-11-12 21:45:12 +00:00
|
|
|
content <- S.hGet from bytes
|
2011-09-28 19:15:42 +00:00
|
|
|
c <- hGetChar from
|
|
|
|
when (c /= '\n') $
|
|
|
|
error "missing newline from git cat-file"
|
2011-11-12 21:45:12 +00:00
|
|
|
return $ L.fromChunks [content]
|
|
|
|
empty = return L.empty
|
|
|
|
validobjtype t
|
|
|
|
| t == "blob" = True
|
|
|
|
| t == "commit" = True
|
|
|
|
| t == "tree" = True
|
|
|
|
| otherwise = False
|