2012-02-14 03:42:44 +00:00
|
|
|
{- git check-attr interface, with handle automatically stored in the Annex monad
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2012 Joey Hess <id@joeyh.name>
|
2012-02-14 03:42:44 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Annex.CheckAttr (
|
|
|
|
checkAttr,
|
2015-04-10 21:53:58 +00:00
|
|
|
checkAttrHandle,
|
|
|
|
checkAttrStop,
|
2012-02-14 03:42:44 +00:00
|
|
|
) where
|
|
|
|
|
|
|
|
import Common.Annex
|
|
|
|
import qualified Git.CheckAttr as Git
|
|
|
|
import qualified Annex
|
|
|
|
|
|
|
|
{- All gitattributes used by git-annex. -}
|
|
|
|
annexAttrs :: [Git.Attr]
|
|
|
|
annexAttrs =
|
|
|
|
[ "annex.backend"
|
|
|
|
, "annex.numcopies"
|
|
|
|
]
|
|
|
|
|
|
|
|
checkAttr :: Git.Attr -> FilePath -> Annex String
|
|
|
|
checkAttr attr file = do
|
|
|
|
h <- checkAttrHandle
|
|
|
|
liftIO $ Git.checkAttr h attr file
|
|
|
|
|
|
|
|
checkAttrHandle :: Annex Git.CheckAttrHandle
|
|
|
|
checkAttrHandle = maybe startup return =<< Annex.getState Annex.checkattrhandle
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
startup = do
|
|
|
|
h <- inRepo $ Git.checkAttrStart annexAttrs
|
|
|
|
Annex.changeState $ \s -> s { Annex.checkattrhandle = Just h }
|
|
|
|
return h
|
2015-04-10 21:53:58 +00:00
|
|
|
|
|
|
|
checkAttrStop :: Annex ()
|
|
|
|
checkAttrStop = maybe noop stop =<< Annex.getState Annex.checkattrhandle
|
|
|
|
where
|
|
|
|
stop h = do
|
|
|
|
liftIO $ Git.checkAttrStop h
|
|
|
|
Annex.changeState $ \s -> s { Annex.checkattrhandle = Nothing }
|