2013-10-23 16:21:59 +00:00
|
|
|
{- git-annex command
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2013 Joey Hess <id@joeyh.name>
|
2013-10-23 16:21:59 +00:00
|
|
|
-
|
2019-03-13 19:48:14 +00:00
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2013-10-23 16:21:59 +00:00
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.Repair where
|
|
|
|
|
|
|
|
import Command
|
|
|
|
import qualified Annex
|
2013-10-23 16:58:01 +00:00
|
|
|
import qualified Git.Repair
|
|
|
|
import qualified Annex.Branch
|
2014-01-13 20:47:18 +00:00
|
|
|
import qualified Git.Ref
|
2013-10-23 17:13:40 +00:00
|
|
|
import Git.Types
|
2013-10-23 19:07:55 +00:00
|
|
|
import Annex.Version
|
2013-10-23 16:21:59 +00:00
|
|
|
|
2015-07-08 16:33:27 +00:00
|
|
|
cmd :: Command
|
|
|
|
cmd = noCommit $ dontCheck repoExists $
|
2015-07-08 19:08:02 +00:00
|
|
|
command "repair" SectionMaintenance
|
|
|
|
"recover broken git repository"
|
|
|
|
paramNothing (withParams seek)
|
2013-10-23 16:21:59 +00:00
|
|
|
|
2015-07-08 19:08:02 +00:00
|
|
|
seek :: CmdParams -> CommandSeek
|
2018-10-01 18:12:06 +00:00
|
|
|
seek = withNothing (commandAction start)
|
2013-10-23 16:21:59 +00:00
|
|
|
|
|
|
|
start :: CommandStart
|
make CommandStart return a StartMessage
The goal is to be able to run CommandStart in the main thread when -J is
used, rather than unncessarily passing it off to a worker thread, which
incurs overhead that is signficant when the CommandStart is going to
quickly decide to stop.
To do that, the message it displays needs to be displayed in the worker
thread, after the CommandStart has run.
Also, the change will mean that CommandStart will no longer necessarily
run with the same Annex state as CommandPerform. While its docs already
said it should avoid modifying Annex state, I audited all the
CommandStart code as part of the conversion. (Note that CommandSeek
already sometimes runs with a different Annex state, and that has not been
a source of any problems, so I am not too worried that this change will
lead to breakage going forward.)
The only modification of Annex state I found was it calling
allowMessages in some Commands that default to noMessages. Dealt with
that by adding a startCustomOutput and a startingUsualMessages.
This lets a command start with noMessages and then select the output it
wants for each CommandStart.
One bit of breakage: onlyActionOn has been removed from commands that used it.
The plan is that, since a StartMessage contains an ActionItem,
when a Key can be extracted from that, the parallel job runner can
run onlyActionOn' automatically. Then commands won't need to worry about
this detail. Future work.
Otherwise, this was a fairly straightforward process of making each
CommandStart compile again. Hopefully other behavior changes were mostly
avoided.
In a few cases, a command had a CommandStart that called a CommandPerform
that then called showStart multiple times. I have collapsed those
down to a single start action. The main command to perhaps suffer from it
is Command.Direct, which used to show a start for each file, and no
longer does.
Another minor behavior change is that some commands used showStart
before, but had an associated file and a Key available, so were changed
to ShowStart with an ActionItemAssociatedFile. That will not change the
normal output or behavior, but --json output will now include the key.
This should not break it for anyone using a real json parser.
2019-06-06 19:42:30 +00:00
|
|
|
start = starting "repair" (ActionItemOther Nothing) $
|
|
|
|
next $ runRepair =<< Annex.getState Annex.force
|
2013-10-23 16:58:01 +00:00
|
|
|
|
|
|
|
runRepair :: Bool -> Annex Bool
|
|
|
|
runRepair forced = do
|
2013-12-10 19:40:01 +00:00
|
|
|
(ok, modifiedbranches) <- inRepo $
|
2013-12-10 20:17:49 +00:00
|
|
|
Git.Repair.runRepair isAnnexSyncBranch forced
|
2013-10-23 19:07:55 +00:00
|
|
|
-- This command can be run in git repos not using git-annex,
|
|
|
|
-- so avoid git annex branch stuff in that case.
|
|
|
|
whenM (isJust <$> getVersion) $
|
2013-12-10 19:40:01 +00:00
|
|
|
repairAnnexBranch modifiedbranches
|
2013-10-23 16:58:01 +00:00
|
|
|
return ok
|
|
|
|
|
|
|
|
{- After git repository repair, the .git/annex/index file could
|
|
|
|
- still be broken, by pointing to bad objects, or might just be corrupt on
|
|
|
|
- its own. Since this index file is not used to stage things
|
|
|
|
- for long durations of time, it can safely be deleted if it is broken.
|
|
|
|
-
|
2013-10-23 17:13:40 +00:00
|
|
|
- Otherwise, if the git-annex branch was modified by the repair,
|
|
|
|
- commit the index file to the git-annex branch.
|
2013-10-23 16:58:01 +00:00
|
|
|
- This way, if the git-annex branch got rewound to an old version by
|
|
|
|
- the repository repair, or was completely deleted, this will get it back
|
|
|
|
- to a good state. Note that in the unlikely case where the git-annex
|
2013-10-23 17:13:40 +00:00
|
|
|
- branch was rewound to a state that, had new changes from elsewhere not
|
|
|
|
- yet reflected in the index, this does properly merge those into the
|
|
|
|
- index before committing.
|
2013-10-23 16:58:01 +00:00
|
|
|
-}
|
2013-12-10 19:40:01 +00:00
|
|
|
repairAnnexBranch :: [Branch] -> Annex ()
|
|
|
|
repairAnnexBranch modifiedbranches
|
2013-10-23 17:13:40 +00:00
|
|
|
| Annex.Branch.fullname `elem` modifiedbranches = ifM okindex
|
|
|
|
( commitindex
|
|
|
|
, do
|
|
|
|
nukeindex
|
2014-01-13 20:47:18 +00:00
|
|
|
missingbranch
|
2013-10-23 17:13:40 +00:00
|
|
|
)
|
|
|
|
| otherwise = ifM okindex
|
|
|
|
( noop
|
2014-01-13 20:47:18 +00:00
|
|
|
, do
|
|
|
|
nukeindex
|
|
|
|
ifM (null <$> inRepo (Git.Ref.matching [Annex.Branch.fullname]))
|
|
|
|
( missingbranch
|
|
|
|
, liftIO $ putStrLn "No data was lost."
|
|
|
|
)
|
2013-10-23 17:13:40 +00:00
|
|
|
)
|
2013-10-23 16:58:01 +00:00
|
|
|
where
|
2014-10-09 19:35:19 +00:00
|
|
|
okindex = Annex.Branch.withIndex $ inRepo Git.Repair.checkIndex
|
2013-10-23 17:13:40 +00:00
|
|
|
commitindex = do
|
|
|
|
Annex.Branch.forceCommit "committing index after git repository repair"
|
|
|
|
liftIO $ putStrLn "Successfully recovered the git-annex branch using .git/annex/index"
|
2014-01-13 20:47:18 +00:00
|
|
|
nukeindex = do
|
|
|
|
inRepo $ nukeFile . gitAnnexIndex
|
|
|
|
liftIO $ putStrLn "Had to delete the .git/annex/index file as it was corrupt."
|
|
|
|
missingbranch = liftIO $ putStrLn "Since the git-annex branch is not up-to-date anymore. It would be a very good idea to run: git annex fsck --fast"
|
2013-12-10 20:17:49 +00:00
|
|
|
|
|
|
|
trackingOrSyncBranch :: Ref -> Bool
|
|
|
|
trackingOrSyncBranch b = Git.Repair.isTrackingBranch b || isAnnexSyncBranch b
|
|
|
|
|
|
|
|
isAnnexSyncBranch :: Ref -> Bool
|
2014-02-19 05:09:17 +00:00
|
|
|
isAnnexSyncBranch b = "refs/synced/" `isPrefixOf` fromRef b
|