2011-09-15 20:57:02 +00:00
|
|
|
{- git-annex command infrastructure
|
2010-11-02 23:04:24 +00:00
|
|
|
-
|
2019-06-12 18:11:23 +00:00
|
|
|
- Copyright 2010-2019 Joey Hess <id@joeyh.name>
|
2010-11-02 23:04:24 +00:00
|
|
|
-
|
2019-03-13 19:48:14 +00:00
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2010-11-02 23:04:24 +00:00
|
|
|
-}
|
|
|
|
|
2011-10-30 03:48:46 +00:00
|
|
|
module Command (
|
2016-01-21 17:14:38 +00:00
|
|
|
module Command,
|
2011-11-11 05:52:58 +00:00
|
|
|
module ReExported
|
2011-10-30 03:48:46 +00:00
|
|
|
) where
|
2010-11-02 23:04:24 +00:00
|
|
|
|
2016-01-20 20:36:33 +00:00
|
|
|
import Annex.Common as ReExported
|
2011-11-11 05:52:58 +00:00
|
|
|
import Types.Command as ReExported
|
2015-07-09 20:20:30 +00:00
|
|
|
import Types.DeferredParse as ReExported
|
2016-01-20 20:36:33 +00:00
|
|
|
import CmdLine.Seek as ReExported
|
2014-01-26 20:25:55 +00:00
|
|
|
import CmdLine.Usage as ReExported
|
2014-01-29 17:44:53 +00:00
|
|
|
import CmdLine.Action as ReExported
|
2014-01-26 20:25:55 +00:00
|
|
|
import CmdLine.Option as ReExported
|
2022-06-29 17:28:08 +00:00
|
|
|
import CmdLine.AnnexSetter as ReExported
|
2014-01-26 20:25:55 +00:00
|
|
|
import CmdLine.GitAnnex.Options as ReExported
|
2016-01-20 20:36:33 +00:00
|
|
|
import CmdLine.Batch as ReExported
|
2015-07-09 19:23:14 +00:00
|
|
|
import Options.Applicative as ReExported hiding (command)
|
2016-01-21 17:14:38 +00:00
|
|
|
import qualified Git
|
|
|
|
import Annex.Init
|
|
|
|
import Utility.Daemon
|
2016-08-03 16:37:12 +00:00
|
|
|
import Types.Transfer
|
2023-04-08 19:48:32 +00:00
|
|
|
import Types.ActionItem as ReExported
|
2019-06-19 16:35:08 +00:00
|
|
|
import Types.WorkerPool as ReExported
|
2022-09-09 18:43:43 +00:00
|
|
|
import Remote.List
|
2015-07-08 19:39:05 +00:00
|
|
|
|
2015-07-08 16:33:27 +00:00
|
|
|
{- Generates a normal Command -}
|
2015-07-08 20:58:54 +00:00
|
|
|
command :: String -> CommandSection -> String -> CmdParamsDesc -> (CmdParamsDesc -> CommandParser) -> Command
|
2015-07-08 19:08:02 +00:00
|
|
|
command name section desc paramdesc mkparser =
|
2015-07-10 17:49:46 +00:00
|
|
|
Command commonChecks False False name paramdesc
|
addon commands
Seems only fair, that, like git runs git-annex, git-annex runs
git-annex-foo.
Implementation relies on O.forwardOptions, so that any options are passed
through to the addon program. Note that this includes options before the
subcommand, eg: git-annex -cx=y foo
Unfortunately, git-annex eats the --help/-h options.
This is because it uses O.hsubparser, which injects that option into each
subcommand. Seems like this should be possible to avoid somehow, to let
commands display their own --help, instead of the dummy one git-annex
displays.
The two step searching mirrors how git works, it makes finding
git-annex-foo fast when "git annex foo" is run, but will also support fuzzy
matching, once findAllAddonCommands gets implemented.
This commit was sponsored by Dr. Land Raider on Patreon.
2021-02-02 20:32:25 +00:00
|
|
|
section desc (mkparser paramdesc) mempty [] Nothing
|
2015-07-08 19:39:05 +00:00
|
|
|
|
2015-07-08 20:58:54 +00:00
|
|
|
{- Simple option parser that takes all non-option params as-is. -}
|
2016-01-21 17:14:38 +00:00
|
|
|
withParams :: (CmdParams -> v) -> CmdParamsDesc -> Parser v
|
2015-07-08 20:58:54 +00:00
|
|
|
withParams mkseek paramdesc = mkseek <$> cmdParams paramdesc
|
|
|
|
|
2015-07-09 20:05:45 +00:00
|
|
|
{- Uses the supplied option parser, which yields a deferred parse,
|
|
|
|
- and calls finishParse on the result before passing it to the
|
|
|
|
- CommandSeek constructor. -}
|
|
|
|
(<--<) :: DeferredParseClass a
|
|
|
|
=> (a -> CommandSeek)
|
|
|
|
-> (CmdParamsDesc -> Parser a)
|
|
|
|
-> CmdParamsDesc
|
|
|
|
-> Parser CommandSeek
|
|
|
|
(<--<) mkseek optparser paramsdesc =
|
|
|
|
(mkseek <=< finishParse) <$> optparser paramsdesc
|
|
|
|
|
2012-09-16 00:46:38 +00:00
|
|
|
{- Indicates that a command doesn't need to commit any changes to
|
|
|
|
- the git-annex branch. -}
|
|
|
|
noCommit :: Command -> Command
|
|
|
|
noCommit c = c { cmdnocommit = True }
|
2011-11-16 04:49:09 +00:00
|
|
|
|
2016-01-20 18:07:13 +00:00
|
|
|
{- Indicates that a command should not output the usual messages when
|
|
|
|
- starting or stopping processing a file or other item. Unless --json mode
|
|
|
|
- is enabled, this also enables quiet output mode, so only things
|
|
|
|
- explicitly output by the command are shown and not progress messages
|
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
|
|
|
- etc.
|
|
|
|
-}
|
2013-07-31 00:24:27 +00:00
|
|
|
noMessages :: Command -> Command
|
|
|
|
noMessages c = c { cmdnomessages = True }
|
|
|
|
|
2011-11-16 04:49:09 +00:00
|
|
|
{- Adds a fallback action to a command, that will be run if it's used
|
|
|
|
- outside a git repository. -}
|
2023-02-07 22:09:10 +00:00
|
|
|
noRepo :: (CmdParamsDesc -> Parser (IO ())) -> Command -> Command
|
2015-07-08 19:39:05 +00:00
|
|
|
noRepo a c = c { cmdnorepo = Just (a (cmdparamdesc c)) }
|
2010-11-04 17:28:49 +00:00
|
|
|
|
2022-06-29 17:28:08 +00:00
|
|
|
{- Adds Annex options to a command. -}
|
|
|
|
withAnnexOptions :: [[AnnexOption]] -> Command -> Command
|
|
|
|
withAnnexOptions os c = c { cmdannexoptions = cmdannexoptions c ++ concat os }
|
2015-07-10 16:47:35 +00:00
|
|
|
|
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
|
|
|
{- For start stage to indicate what will be done. -}
|
2020-09-14 20:49:33 +00:00
|
|
|
starting:: MkActionItem actionitem => String -> actionitem -> SeekInput -> CommandPerform -> CommandStart
|
|
|
|
starting msg ai si a = next
|
|
|
|
(StartMessage msg (mkActionItem ai) si, a)
|
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
|
|
|
|
|
|
|
{- Use when noMessages was used but the command is going to output
|
|
|
|
- usual messages after all. -}
|
2020-09-14 20:49:33 +00:00
|
|
|
startingUsualMessages :: MkActionItem t => String -> t -> SeekInput -> CommandPerform -> CommandStart
|
|
|
|
startingUsualMessages msg t si a = next
|
|
|
|
(StartUsualMessages msg (mkActionItem t) si, a)
|
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
|
|
|
|
2019-06-12 18:11:23 +00:00
|
|
|
{- When no message should be displayed at start/end, but messages can still
|
|
|
|
- be displayed when using eg includeCommandAction. -}
|
|
|
|
startingNoMessage :: MkActionItem t => t -> CommandPerform -> CommandStart
|
|
|
|
startingNoMessage t a = next (StartNoMessage (mkActionItem t), a)
|
|
|
|
|
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
|
|
|
{- For commands that do not display usual start or end messages,
|
|
|
|
- but have some other custom output. -}
|
finish CommandStart transition
The hoped for optimisation of CommandStart with -J did not materialize.
In fact, not runnign CommandStart in parallel is slower than -J3.
So, CommandStart are still run in parallel.
(The actual bad performance I've been seeing with -J in my big repo
has to do with building the remoteList.)
But, this is still progress toward making -J faster, because it gets rid
of the onlyActionOn roadblock in the way of making CommandCleanup jobs
run separate from CommandPerform jobs.
Added OnlyActionOn constructor for ActionItem which fixes the
onlyActionOn breakage in the last commit.
Made CustomOutput include an ActionItem, so even things using it can
specify OnlyActionOn.
In Command.Move and Command.Sync, there were CommandStarts that used
includeCommandAction, so output messages, which is no longer allowed.
Fixed by using startingCustomOutput, but that's still not quite right,
since it prevents message display for the includeCommandAction run
inside it too.
2019-06-12 13:23:26 +00:00
|
|
|
startingCustomOutput :: MkActionItem t => t -> CommandPerform -> CommandStart
|
|
|
|
startingCustomOutput t a = next (CustomOutput (mkActionItem t), a)
|
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
|
|
|
|
|
|
|
{- For perform stage to indicate what step to run next. -}
|
2011-05-15 06:02:46 +00:00
|
|
|
next :: a -> Annex (Maybe a)
|
|
|
|
next a = return $ Just a
|
|
|
|
|
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
|
|
|
{- For start and perform stage to indicate nothing needs to be done. -}
|
2011-05-15 06:02:46 +00:00
|
|
|
stop :: Annex (Maybe a)
|
|
|
|
stop = return Nothing
|
|
|
|
|
2011-12-09 16:23:45 +00:00
|
|
|
{- Stops unless a condition is met. -}
|
|
|
|
stopUnless :: Annex Bool -> Annex (Maybe a) -> Annex (Maybe a)
|
2012-03-14 21:43:34 +00:00
|
|
|
stopUnless c a = ifM c ( a , stop )
|
2011-12-09 16:23:45 +00:00
|
|
|
|
2022-08-03 15:16:04 +00:00
|
|
|
{- When doing a dry run, avoid actually performing the action, but pretend
|
|
|
|
- that it succeeded. -}
|
|
|
|
skipWhenDryRun :: DryRun -> CommandPerform -> CommandPerform
|
|
|
|
skipWhenDryRun (DryRun False) a = a
|
|
|
|
skipWhenDryRun (DryRun True) _ = next $ return True
|
|
|
|
|
2016-08-03 16:37:12 +00:00
|
|
|
{- When acting on a failed transfer, stops unless it was in the specified
|
|
|
|
- direction. -}
|
|
|
|
checkFailedTransferDirection :: ActionItem -> Direction -> Annex (Maybe a) -> Annex (Maybe a)
|
|
|
|
checkFailedTransferDirection ai d = stopUnless (pure check)
|
|
|
|
where
|
|
|
|
check = case actionItemTransferDirection ai of
|
|
|
|
Nothing -> True
|
|
|
|
Just d' -> d' == d
|
|
|
|
|
2016-01-21 17:14:38 +00:00
|
|
|
commonChecks :: [CommandCheck]
|
|
|
|
commonChecks = [repoExists]
|
|
|
|
|
|
|
|
repoExists :: CommandCheck
|
2022-09-09 18:43:43 +00:00
|
|
|
repoExists = CommandCheck 0 (ensureInitialized remoteList)
|
2016-01-21 17:14:38 +00:00
|
|
|
|
|
|
|
notBareRepo :: Command -> Command
|
2022-07-29 16:52:12 +00:00
|
|
|
notBareRepo = addCheck checkNotBareRepo
|
|
|
|
|
|
|
|
checkNotBareRepo :: Annex ()
|
|
|
|
checkNotBareRepo = whenM (fromRepo Git.repoIsLocalBare) $
|
2016-11-16 01:29:54 +00:00
|
|
|
giveup "You cannot run this command in a bare repository."
|
2016-01-21 17:14:38 +00:00
|
|
|
|
|
|
|
noDaemonRunning :: Command -> Command
|
|
|
|
noDaemonRunning = addCheck $ whenM (isJust <$> daemonpid) $
|
2016-11-16 01:29:54 +00:00
|
|
|
giveup "You cannot run this command while git-annex watch or git-annex assistant is running."
|
2016-01-21 17:14:38 +00:00
|
|
|
where
|
2020-10-30 19:55:59 +00:00
|
|
|
daemonpid = liftIO . checkDaemon . fromRawFilePath
|
|
|
|
=<< fromRepo gitAnnexPidFile
|
2016-01-21 17:14:38 +00:00
|
|
|
|
|
|
|
dontCheck :: CommandCheck -> Command -> Command
|
|
|
|
dontCheck check cmd = mutateCheck cmd $ \c -> filter (/= check) c
|
|
|
|
|
|
|
|
addCheck :: Annex () -> Command -> Command
|
|
|
|
addCheck check cmd = mutateCheck cmd $ \c ->
|
|
|
|
CommandCheck (length c + 100) check : c
|
|
|
|
|
|
|
|
mutateCheck :: Command -> ([CommandCheck] -> [CommandCheck]) -> Command
|
|
|
|
mutateCheck cmd@(Command { cmdcheck = c }) a = cmd { cmdcheck = a c }
|