2011-09-28 19:15:42 +00:00
|
|
|
{- git cat-file interface
|
|
|
|
-
|
2016-02-25 18:59:35 +00:00
|
|
|
- Copyright 2011-2016 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,
|
2016-02-25 18:59:35 +00:00
|
|
|
catCommit,
|
2012-06-10 23:58:34 +00:00
|
|
|
catObject,
|
|
|
|
catObjectDetails,
|
2016-10-05 19:21:36 +00:00
|
|
|
catObjectMetaData,
|
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
|
2016-02-25 18:59:35 +00:00
|
|
|
import qualified Data.ByteString.Lazy.Char8 as L8
|
|
|
|
import qualified Data.Map as M
|
|
|
|
import Data.String
|
|
|
|
import Data.Char
|
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
|
2016-12-24 18:46:31 +00:00
|
|
|
import Utility.FileSystemEncoding
|
2011-09-28 19:15:42 +00:00
|
|
|
|
2016-10-05 19:21:36 +00:00
|
|
|
data CatFileHandle = CatFileHandle
|
|
|
|
{ catFileProcess :: CoProcess.CoProcessHandle
|
|
|
|
, checkFileProcess :: CoProcess.CoProcessHandle
|
|
|
|
}
|
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
|
2016-10-05 19:21:36 +00:00
|
|
|
catFileStart' restartable repo = CatFileHandle
|
|
|
|
<$> startp "--batch"
|
|
|
|
<*> startp "--batch-check=%(objectname) %(objecttype) %(objectsize)"
|
|
|
|
where
|
2016-11-01 18:03:55 +00:00
|
|
|
startp p = gitCoProcessStart restartable
|
2013-08-01 21:30:47 +00:00
|
|
|
[ Param "cat-file"
|
2016-10-05 19:21:36 +00:00
|
|
|
, Param p
|
2013-08-01 21:30:47 +00:00
|
|
|
] repo
|
2011-09-28 19:15:42 +00:00
|
|
|
|
|
|
|
catFileStop :: CatFileHandle -> IO ()
|
2016-10-05 19:21:36 +00:00
|
|
|
catFileStop h = do
|
|
|
|
CoProcess.stop (catFileProcess h)
|
|
|
|
CoProcess.stop (checkFileProcess h)
|
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))
|
2016-10-05 19:21:36 +00:00
|
|
|
catObjectDetails h object = query (catFileProcess h) object $ \from -> do
|
|
|
|
header <- hGetLine from
|
|
|
|
case parseResp object header of
|
|
|
|
Just (ParsedResp sha size objtype) -> do
|
|
|
|
content <- S.hGet from (fromIntegral size)
|
|
|
|
eatchar '\n' from
|
|
|
|
return $ Just (L.fromChunks [content], sha, objtype)
|
|
|
|
Just DNE -> return Nothing
|
|
|
|
Nothing -> error $ "unknown response from git cat-file " ++ show (header, object)
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
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
|
|
|
|
2016-10-05 19:21:36 +00:00
|
|
|
{- Gets the size and type of an object, without reading its content. -}
|
|
|
|
catObjectMetaData :: CatFileHandle -> Ref -> IO (Maybe (Integer, ObjectType))
|
|
|
|
catObjectMetaData h object = query (checkFileProcess h) object $ \from -> do
|
|
|
|
resp <- hGetLine from
|
|
|
|
case parseResp object resp of
|
|
|
|
Just (ParsedResp _ size objtype) ->
|
|
|
|
return $ Just (size, objtype)
|
|
|
|
Just DNE -> return Nothing
|
|
|
|
Nothing -> error $ "unknown response from git cat-file " ++ show (resp, object)
|
|
|
|
|
|
|
|
data ParsedResp = ParsedResp Sha Integer ObjectType | DNE
|
|
|
|
|
|
|
|
query :: CoProcess.CoProcessHandle -> Ref -> (Handle -> IO a) -> IO a
|
|
|
|
query hdl object receive = CoProcess.query hdl send receive
|
|
|
|
where
|
|
|
|
send to = hPutStrLn to (fromRef object)
|
|
|
|
|
|
|
|
parseResp :: Ref -> String -> Maybe ParsedResp
|
2016-10-31 22:35:38 +00:00
|
|
|
parseResp object l
|
|
|
|
| " missing" `isSuffixOf` l -- less expensive than full check
|
|
|
|
&& l == fromRef object ++ " missing" = Just DNE
|
|
|
|
| otherwise = case words l of
|
|
|
|
[sha, objtype, size]
|
|
|
|
| length sha == shaSize ->
|
|
|
|
case (readObjectType objtype, reads size) of
|
|
|
|
(Just t, [(bytes, "")]) ->
|
|
|
|
Just $ ParsedResp (Ref sha) bytes t
|
|
|
|
_ -> Nothing
|
|
|
|
| otherwise -> Nothing
|
|
|
|
_ -> Nothing
|
2016-10-05 19:21:36 +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
|
2016-02-25 18:59:35 +00:00
|
|
|
|
|
|
|
catCommit :: CatFileHandle -> Ref -> IO (Maybe Commit)
|
|
|
|
catCommit h commitref = go <$> catObjectDetails h commitref
|
|
|
|
where
|
|
|
|
go (Just (b, _, CommitObject)) = parseCommit b
|
|
|
|
go _ = Nothing
|
|
|
|
|
|
|
|
parseCommit :: L.ByteString -> Maybe Commit
|
|
|
|
parseCommit b = Commit
|
|
|
|
<$> (extractSha . L8.unpack =<< field "tree")
|
2016-03-31 21:12:01 +00:00
|
|
|
<*> Just (maybe [] (mapMaybe (extractSha . L8.unpack)) (fields "parent"))
|
2016-02-25 18:59:35 +00:00
|
|
|
<*> (parsemetadata <$> field "author")
|
|
|
|
<*> (parsemetadata <$> field "committer")
|
|
|
|
<*> Just (L8.unpack $ L.intercalate (L.singleton nl) message)
|
|
|
|
where
|
2016-03-11 16:47:14 +00:00
|
|
|
field n = headMaybe =<< fields n
|
|
|
|
fields n = M.lookup (fromString n) fieldmap
|
|
|
|
fieldmap = M.fromListWith (++) ((map breakfield) header)
|
2016-02-25 18:59:35 +00:00
|
|
|
breakfield l =
|
|
|
|
let (k, sp_v) = L.break (== sp) l
|
2016-03-11 16:47:14 +00:00
|
|
|
in (k, [L.drop 1 sp_v])
|
2016-02-25 18:59:35 +00:00
|
|
|
(header, message) = separate L.null ls
|
|
|
|
ls = L.split nl b
|
|
|
|
|
|
|
|
-- author and committer lines have the form: "name <email> date"
|
|
|
|
-- The email is always present, even if empty "<>"
|
|
|
|
parsemetadata l = CommitMetaData
|
|
|
|
{ commitName = whenset $ L.init name_sp
|
|
|
|
, commitEmail = whenset email
|
|
|
|
, commitDate = whenset $ L.drop 2 gt_sp_date
|
|
|
|
}
|
|
|
|
where
|
|
|
|
(name_sp, rest) = L.break (== lt) l
|
|
|
|
(email, gt_sp_date) = L.break (== gt) (L.drop 1 rest)
|
|
|
|
whenset v
|
|
|
|
| L.null v = Nothing
|
|
|
|
| otherwise = Just (L8.unpack v)
|
|
|
|
|
|
|
|
nl = fromIntegral (ord '\n')
|
|
|
|
sp = fromIntegral (ord ' ')
|
|
|
|
lt = fromIntegral (ord '<')
|
|
|
|
gt = fromIntegral (ord '>')
|