git-annex/Command/Lock.hs

38 lines
942 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 AnnexQueue
import Utility.SafeCommand
command :: [Command]
2011-09-15 18:33:37 +00:00
command = [repoCommand "lock" paramPaths seek "undo unlock command"]
2010-11-09 19:59:49 +00:00
seek :: [CommandSeek]
seek = [withFilesUnlocked start, withFilesUnlockedToBeCommitted start]
2010-11-11 22:54:52 +00:00
2010-11-09 19:59:49 +00:00
{- Undo unlock -}
start :: BackendFile -> CommandStart
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
-- Checkout from HEAD to get rid of any changes that might be
-- staged in the index, and get back to the previous symlink to
-- the content.
AnnexQueue.add "checkout" [Param "HEAD", Param "--"] [file]
2011-05-15 06:02:46 +00:00
next $ return True -- no cleanup needed