* since this is a crippled filesystem anyway, git-annex doesn't use symlinks on it * so there's no reason to use the mixed case hash directories that we're stuck using to avoid breaking everyone's symlinks to the content * so we can do what is already done for all bare repos, and make non-bare repos on crippled filesystems use the all-lower case hash directories * which are, happily, all 3 letters long, so they cannot conflict with mixed case hash directories * so I was able to 100% fix this and even resuming `git annex add` in the test case will recover and it will all just work.
		
			
				
	
	
		
			39 lines
		
	
	
	
		
			1.1 KiB
			
		
	
	
	
		
			Haskell
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			1.1 KiB
			
		
	
	
	
		
			Haskell
		
	
	
	
	
	
{- git-annex command
 | 
						|
 -
 | 
						|
 - Copyright 2010 Joey Hess <joey@kitenet.net>
 | 
						|
 -
 | 
						|
 - Licensed under the GNU GPL version 3 or higher.
 | 
						|
 -}
 | 
						|
 | 
						|
module Command.Fix where
 | 
						|
 | 
						|
import Common.Annex
 | 
						|
import Command
 | 
						|
import qualified Annex.Queue
 | 
						|
 | 
						|
def :: [Command]
 | 
						|
def = [notDirect $ noCommit $ command "fix" paramPaths seek
 | 
						|
	SectionMaintenance "fix up symlinks to point to annexed content"]
 | 
						|
 | 
						|
seek :: [CommandSeek]
 | 
						|
seek = [withFilesInGit $ whenAnnexed start]
 | 
						|
 | 
						|
{- Fixes the symlink to an annexed file. -}
 | 
						|
start :: FilePath -> (Key, Backend) -> CommandStart
 | 
						|
start file (key, _) = do
 | 
						|
	link <- inRepo $ gitAnnexLink file key
 | 
						|
	stopUnless ((/=) (Just link) <$> liftIO (catchMaybeIO $ readSymbolicLink file)) $ do
 | 
						|
		showStart "fix" file
 | 
						|
		next $ perform file link
 | 
						|
 | 
						|
perform :: FilePath -> FilePath -> CommandPerform
 | 
						|
perform file link = do
 | 
						|
	liftIO $ createDirectoryIfMissing True (parentDir file)
 | 
						|
	liftIO $ removeFile file
 | 
						|
	liftIO $ createSymbolicLink link file
 | 
						|
	next $ cleanup file
 | 
						|
 | 
						|
cleanup :: FilePath -> CommandCleanup
 | 
						|
cleanup file = do
 | 
						|
	Annex.Queue.addCommand "add" [Param "--force", Param "--"] [file]
 | 
						|
	return True
 |