git-annex/Command/Lock.hs

40 lines
931 B
Haskell
Raw Normal View History

2010-11-09 19:59:49 +00:00
{- git-annex command
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.Lock where
import Control.Monad.State (liftIO)
import System.Directory
import Command
import Messages
import qualified Annex
import qualified GitRepo as Git
import Utility
command :: [Command]
command = [repoCommand "lock" paramPath seek "undo unlock command"]
2010-11-09 19:59:49 +00:00
seek :: [CommandSeek]
2010-11-11 22:54:52 +00:00
seek = [withFilesUnlocked start]
2010-11-09 19:59:49 +00:00
{- Undo unlock -}
start :: CommandStartBackendFile
start (file, _) = do
showStart "lock" file
2011-05-15 06:02:46 +00:00
next $ perform file
2010-11-09 19:59:49 +00:00
perform :: FilePath -> CommandPerform
2010-11-09 19:59:49 +00:00
perform file = do
liftIO $ removeFile file
g <- Annex.gitRepo
2010-11-10 17:01:01 +00:00
-- first reset the file to drop any changes checked into the index
liftIO $ Git.run g "reset" [Params "-q --", File file]
2010-11-10 17:01:01 +00:00
-- checkout the symlink
liftIO $ Git.run g "checkout" [Param "--", File file]
2011-05-15 06:02:46 +00:00
next $ return True -- no cleanup needed