git-annex/Annex/HashObject.hs

48 lines
1.3 KiB
Haskell
Raw Normal View History

2016-03-14 19:54:46 +00:00
{- git hash-object interface, with handle automatically stored in the Annex monad
-
- Copyright 2016 Joey Hess <id@joeyh.name>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Annex.HashObject (
hashFile,
hashBlob,
hashObjectHandle,
hashObjectStop,
) where
import Annex.Common
import qualified Git.HashObject
import qualified Annex
import Git.Types
hashObjectHandle :: Annex Git.HashObject.HashObjectHandle
hashObjectHandle = maybe startup return =<< Annex.getState Annex.hashobjecthandle
where
startup = do
h <- inRepo $ Git.HashObject.hashObjectStart
2016-03-14 19:54:46 +00:00
Annex.changeState $ \s -> s { Annex.hashobjecthandle = Just h }
return h
hashObjectStop :: Annex ()
hashObjectStop = maybe noop stop =<< Annex.getState Annex.hashobjecthandle
2016-03-14 19:54:46 +00:00
where
stop h = do
liftIO $ Git.HashObject.hashObjectStop h
2016-03-14 19:54:46 +00:00
Annex.changeState $ \s -> s { Annex.hashobjecthandle = Nothing }
return ()
2016-03-14 19:54:46 +00:00
hashFile :: FilePath -> Annex Sha
hashFile f = do
h <- hashObjectHandle
liftIO $ Git.HashObject.hashFile h f
2016-03-14 19:54:46 +00:00
{- Note that the content will be written to a temp file.
- So it may be faster to use Git.HashObject.hashObject for large
- blob contents. -}
hashBlob :: Git.HashObject.HashableBlob b => b -> Annex Sha
2016-03-14 19:54:46 +00:00
hashBlob content = do
h <- hashObjectHandle
liftIO $ Git.HashObject.hashBlob h content