2010-11-02 19:04:24 -04:00
|
|
|
{- git-annex command
|
|
|
|
-
|
|
|
|
- Copyright 2010 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
2013-07-11 11:39:42 -04:00
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
|
2010-11-02 19:04:24 -04:00
|
|
|
module Command.Fix where
|
|
|
|
|
2013-05-11 15:03:00 -05:00
|
|
|
import System.PosixCompat.Files
|
|
|
|
|
2011-10-05 16:02:51 -04:00
|
|
|
import Common.Annex
|
2010-11-02 19:04:24 -04:00
|
|
|
import Command
|
2011-10-04 00:40:47 -04:00
|
|
|
import qualified Annex.Queue
|
2013-07-11 11:39:42 -04:00
|
|
|
#ifndef __ANDROID__
|
|
|
|
import Utility.Touch
|
|
|
|
#endif
|
2010-11-02 19:04:24 -04:00
|
|
|
|
2011-10-29 15:19:05 -04:00
|
|
|
def :: [Command]
|
2012-12-29 14:28:19 -04:00
|
|
|
def = [notDirect $ noCommit $ command "fix" paramPaths seek
|
2013-03-24 18:28:21 -04:00
|
|
|
SectionMaintenance "fix up symlinks to point to annexed content"]
|
2010-12-30 15:06:26 -04:00
|
|
|
|
2010-12-30 14:19:16 -04:00
|
|
|
seek :: [CommandSeek]
|
2011-11-10 23:35:08 -04:00
|
|
|
seek = [withFilesInGit $ whenAnnexed start]
|
2010-11-11 18:54:52 -04:00
|
|
|
|
2010-11-02 19:04:24 -04:00
|
|
|
{- Fixes the symlink to an annexed file. -}
|
2011-12-31 04:11:39 -04:00
|
|
|
start :: FilePath -> (Key, Backend) -> CommandStart
|
2011-11-10 23:35:08 -04:00
|
|
|
start file (key, _) = do
|
2013-04-04 15:46:33 -04:00
|
|
|
link <- inRepo $ gitAnnexLink file key
|
2013-01-05 16:07:27 -04:00
|
|
|
stopUnless ((/=) (Just link) <$> liftIO (catchMaybeIO $ readSymbolicLink file)) $ do
|
2011-12-09 12:23:45 -04:00
|
|
|
showStart "fix" file
|
|
|
|
next $ perform file link
|
2010-11-02 19:04:24 -04:00
|
|
|
|
2010-12-30 14:19:16 -04:00
|
|
|
perform :: FilePath -> FilePath -> CommandPerform
|
2010-11-02 19:04:24 -04:00
|
|
|
perform file link = do
|
2013-07-11 11:39:42 -04:00
|
|
|
liftIO $ do
|
|
|
|
#ifndef __ANDROID__
|
|
|
|
-- preserve mtime of symlink
|
|
|
|
mtime <- catchMaybeIO $ TimeSpec . modificationTime
|
|
|
|
<$> getSymbolicLinkStatus file
|
|
|
|
#endif
|
|
|
|
createDirectoryIfMissing True (parentDir file)
|
|
|
|
removeFile file
|
|
|
|
createSymbolicLink link file
|
|
|
|
#ifndef __ANDROID__
|
|
|
|
maybe noop (\t -> touch file t False) mtime
|
|
|
|
#endif
|
2011-05-15 02:02:46 -04:00
|
|
|
next $ cleanup file
|
2010-11-02 19:04:24 -04:00
|
|
|
|
2010-12-30 14:19:16 -04:00
|
|
|
cleanup :: FilePath -> CommandCleanup
|
2010-11-02 19:04:24 -04:00
|
|
|
cleanup file = do
|
2012-06-07 15:19:44 -04:00
|
|
|
Annex.Queue.addCommand "add" [Param "--force", Param "--"] [file]
|
2010-11-02 19:04:24 -04:00
|
|
|
return True
|