2011-09-28 19:15:42 +00:00
|
|
|
{- git cat-file interface
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2011, 2013 Joey Hess <id@joeyh.name>
|
2011-09-28 19:15:42 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Git.CatFile (
|
|
|
|
CatFileHandle,
|
|
|
|
catFileStart,
|
2013-10-20 21:50:51 +00:00
|
|
|
catFileStart',
|
2011-09-28 19:15:42 +00:00
|
|
|
catFileStop,
|
2011-11-12 21:45:12 +00:00
|
|
|
catFile,
|
2014-03-03 18:57:16 +00:00
|
|
|
catFileDetails,
|
2013-09-19 19:58:35 +00:00
|
|
|
catTree,
|
2012-06-10 23:58:34 +00:00
|
|
|
catObject,
|
|
|
|
catObjectDetails,
|
2011-09-28 19:15:42 +00:00
|
|
|
) where
|
|
|
|
|
|
|
|
import System.IO
|
2012-06-20 17:13:40 +00:00
|
|
|
import qualified Data.ByteString as S
|
|
|
|
import qualified Data.ByteString.Lazy as L
|
2013-10-20 21:50:51 +00:00
|
|
|
import Data.Tuple.Utils
|
2013-09-19 19:58:35 +00:00
|
|
|
import Numeric
|
|
|
|
import System.Posix.Types
|
2011-09-28 19:15:42 +00:00
|
|
|
|
2011-12-20 18:37:53 +00:00
|
|
|
import Common
|
2011-09-28 19:15:42 +00:00
|
|
|
import Git
|
2011-12-14 19:30:14 +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
|
2013-05-12 22:18:48 +00:00
|
|
|
import Git.FilePath
|
2012-02-20 19:20:36 +00:00
|
|
|
import qualified Utility.CoProcess as CoProcess
|
2011-09-28 19:15:42 +00:00
|
|
|
|
2013-08-01 21:30:47 +00:00
|
|
|
data CatFileHandle = CatFileHandle CoProcess.CoProcessHandle Repo
|
2011-09-28 19:15:42 +00:00
|
|
|
|
|
|
|
catFileStart :: Repo -> IO CatFileHandle
|
2013-10-20 21:50:51 +00:00
|
|
|
catFileStart = catFileStart' True
|
|
|
|
|
|
|
|
catFileStart' :: Bool -> Repo -> IO CatFileHandle
|
|
|
|
catFileStart' restartable repo = do
|
|
|
|
coprocess <- CoProcess.rawMode =<< gitCoProcessStart restartable
|
2013-08-01 21:30:47 +00:00
|
|
|
[ Param "cat-file"
|
|
|
|
, Param "--batch"
|
|
|
|
] repo
|
|
|
|
return $ CatFileHandle coprocess repo
|
2011-09-28 19:15:42 +00:00
|
|
|
|
|
|
|
catFileStop :: CatFileHandle -> IO ()
|
2013-08-01 21:30:47 +00:00
|
|
|
catFileStop (CatFileHandle p _) = CoProcess.stop p
|
2011-09-28 19:15:42 +00:00
|
|
|
|
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
|
2013-05-12 22:18:48 +00:00
|
|
|
catFile h branch file = catObject h $ Ref $
|
2014-02-19 05:09:17 +00:00
|
|
|
fromRef branch ++ ":" ++ toInternalGitPath file
|
2011-11-12 21:45:12 +00:00
|
|
|
|
2014-03-03 18:57:16 +00:00
|
|
|
catFileDetails :: CatFileHandle -> Branch -> FilePath -> IO (Maybe (L.ByteString, Sha, ObjectType))
|
|
|
|
catFileDetails h branch file = catObjectDetails h $ Ref $
|
|
|
|
fromRef branch ++ ":" ++ toInternalGitPath 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
|
2013-10-20 21:50:51 +00:00
|
|
|
catObject h object = maybe L.empty fst3 <$> catObjectDetails h object
|
2012-06-10 23:58:34 +00:00
|
|
|
|
2013-10-20 21:50:51 +00:00
|
|
|
catObjectDetails :: CatFileHandle -> Ref -> IO (Maybe (L.ByteString, Sha, ObjectType))
|
|
|
|
catObjectDetails (CatFileHandle hdl _) object = CoProcess.query hdl send receive
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
2014-02-19 05:09:17 +00:00
|
|
|
query = fromRef object
|
2013-08-01 21:30:47 +00:00
|
|
|
send to = hPutStrLn to query
|
2012-12-13 04:24:19 +00:00
|
|
|
receive from = do
|
|
|
|
header <- hGetLine from
|
|
|
|
case words header of
|
|
|
|
[sha, objtype, size]
|
2013-10-20 21:50:51 +00:00
|
|
|
| length sha == shaSize ->
|
|
|
|
case (readObjectType objtype, reads size) of
|
|
|
|
(Just t, [(bytes, "")]) -> readcontent t bytes from sha
|
2012-12-13 04:24:19 +00:00
|
|
|
_ -> dne
|
|
|
|
| otherwise -> dne
|
|
|
|
_
|
2014-02-19 05:09:17 +00:00
|
|
|
| header == fromRef object ++ " missing" -> dne
|
|
|
|
| otherwise -> error $ "unknown response from git cat-file " ++ show (header, query)
|
2013-10-20 21:50:51 +00:00
|
|
|
readcontent objtype bytes from sha = do
|
2012-12-13 04:24:19 +00:00
|
|
|
content <- S.hGet from bytes
|
2013-05-11 20:32:34 +00:00
|
|
|
eatchar '\n' from
|
2013-10-20 21:50:51 +00:00
|
|
|
return $ Just (L.fromChunks [content], Ref sha, objtype)
|
2012-12-13 04:24:19 +00:00
|
|
|
dne = return Nothing
|
2013-05-11 20:32:34 +00:00
|
|
|
eatchar expected from = do
|
|
|
|
c <- hGetChar from
|
|
|
|
when (c /= expected) $
|
2013-05-11 21:02:35 +00:00
|
|
|
error $ "missing " ++ (show expected) ++ " from git cat-file"
|
2013-08-01 21:30:47 +00:00
|
|
|
|
2013-09-19 19:58:35 +00:00
|
|
|
{- Gets a list of files and directories in a tree. (Not recursive.) -}
|
|
|
|
catTree :: CatFileHandle -> Ref -> IO [(FilePath, FileMode)]
|
|
|
|
catTree h treeref = go <$> catObjectDetails h treeref
|
|
|
|
where
|
2013-10-20 21:50:51 +00:00
|
|
|
go (Just (b, _, TreeObject)) = parsetree [] b
|
2014-10-09 18:53:13 +00:00
|
|
|
go _ = []
|
2013-09-19 19:58:35 +00:00
|
|
|
|
|
|
|
parsetree c b = case L.break (== 0) b of
|
|
|
|
(modefile, rest)
|
|
|
|
| L.null modefile -> c
|
|
|
|
| otherwise -> parsetree
|
|
|
|
(parsemodefile modefile:c)
|
|
|
|
(dropsha rest)
|
|
|
|
|
|
|
|
-- these 20 bytes after the NUL hold the file's sha
|
|
|
|
dropsha = L.drop 21
|
|
|
|
|
|
|
|
parsemodefile b =
|
2014-03-19 18:49:01 +00:00
|
|
|
let (modestr, file) = separate (== ' ') (decodeBS b)
|
2013-09-19 19:58:35 +00:00
|
|
|
in (file, readmode modestr)
|
2015-04-19 04:38:29 +00:00
|
|
|
readmode = fromMaybe 0 . fmap fst . headMaybe . readOct
|