2012-06-22 17:04:03 +00:00
|
|
|
{- git-annex assistant
|
|
|
|
-
|
|
|
|
- Copyright 2012 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.Assistant where
|
|
|
|
|
2012-08-02 04:42:33 +00:00
|
|
|
import Common.Annex
|
2012-06-22 17:04:03 +00:00
|
|
|
import Command
|
|
|
|
import qualified Command.Watch
|
2014-01-26 20:36:31 +00:00
|
|
|
import Annex.Init
|
2013-04-23 15:38:52 +00:00
|
|
|
import Config.Files
|
2013-06-21 17:43:04 +00:00
|
|
|
import qualified Build.SysConfig
|
2013-10-26 16:42:58 +00:00
|
|
|
import Utility.HumanTime
|
2014-06-30 21:13:08 +00:00
|
|
|
import Assistant.Install
|
2012-08-02 04:42:33 +00:00
|
|
|
|
|
|
|
import System.Environment
|
2012-06-22 17:04:03 +00:00
|
|
|
|
|
|
|
def :: [Command]
|
2013-10-26 16:42:58 +00:00
|
|
|
def = [noRepo checkAutoStart $ dontCheck repoExists $ withOptions options $
|
2014-02-28 23:47:05 +00:00
|
|
|
notBareRepo $ command "assistant" paramNothing seek SectionCommon
|
2013-03-24 22:28:21 +00:00
|
|
|
"automatically handle changes"]
|
2012-06-22 17:04:03 +00:00
|
|
|
|
2013-10-26 16:42:58 +00:00
|
|
|
options :: [Option]
|
|
|
|
options =
|
|
|
|
[ Command.Watch.foregroundOption
|
|
|
|
, Command.Watch.stopOption
|
|
|
|
, autoStartOption
|
|
|
|
, startDelayOption
|
|
|
|
]
|
|
|
|
|
2012-08-02 04:42:33 +00:00
|
|
|
autoStartOption :: Option
|
2014-01-26 20:25:55 +00:00
|
|
|
autoStartOption = flagOption [] "autostart" "start in known repositories"
|
2012-08-02 04:42:33 +00:00
|
|
|
|
2013-10-26 16:42:58 +00:00
|
|
|
startDelayOption :: Option
|
2014-01-26 20:25:55 +00:00
|
|
|
startDelayOption = fieldOption [] "startdelay" paramNumber "delay before running startup scan"
|
2013-10-26 16:42:58 +00:00
|
|
|
|
fix inversion of control in CommandSeek (no behavior changes)
I've been disliking how the command seek actions were written for some
time, with their inversion of control and ugly workarounds.
The last straw to fix it was sync --content, which didn't fit the
Annex [CommandStart] interface well at all. I have not yet made it take
advantage of the changed interface though.
The crucial change, and probably why I didn't do it this way from the
beginning, is to make each CommandStart action be run with exceptions
caught, and if it fails, increment a failure counter in annex state.
So I finally remove the very first code I wrote for git-annex, which
was before I had exception handling in the Annex monad, and so ran outside
that monad, passing state explicitly as it ran each CommandStart action.
This was a real slog from 1 to 5 am.
Test suite passes.
Memory usage is lower than before, sometimes by a couple of megabytes, and
remains constant, even when running in a large repo, and even when
repeatedly failing and incrementing the error counter. So no accidental
laziness space leaks.
Wall clock speed is identical, even in large repos.
This commit was sponsored by an anonymous bitcoiner.
2014-01-20 08:11:42 +00:00
|
|
|
seek :: CommandSeek
|
|
|
|
seek ps = do
|
|
|
|
stopdaemon <- getOptionFlag Command.Watch.stopOption
|
|
|
|
foreground <- getOptionFlag Command.Watch.foregroundOption
|
|
|
|
autostart <- getOptionFlag autoStartOption
|
|
|
|
startdelay <- getOptionField startDelayOption (pure . maybe Nothing parseDuration)
|
|
|
|
withNothing (start foreground stopdaemon autostart startdelay) ps
|
2012-08-02 04:42:33 +00:00
|
|
|
|
2013-10-26 16:42:58 +00:00
|
|
|
start :: Bool -> Bool -> Bool -> Maybe Duration -> CommandStart
|
|
|
|
start foreground stopdaemon autostart startdelay
|
2012-08-02 04:42:33 +00:00
|
|
|
| autostart = do
|
2013-10-26 16:42:58 +00:00
|
|
|
liftIO $ autoStart startdelay
|
2012-08-02 04:42:33 +00:00
|
|
|
stop
|
|
|
|
| otherwise = do
|
2014-06-30 21:13:08 +00:00
|
|
|
liftIO ensureInstalled
|
2012-08-02 04:42:33 +00:00
|
|
|
ensureInitialized
|
2013-10-26 16:42:58 +00:00
|
|
|
Command.Watch.start True foreground stopdaemon startdelay
|
2012-08-02 04:42:33 +00:00
|
|
|
|
|
|
|
{- Run outside a git repository. Check to see if any parameter is
|
|
|
|
- --autostart and enter autostart mode. -}
|
2013-11-30 19:18:40 +00:00
|
|
|
checkAutoStart :: CmdParams -> IO ()
|
|
|
|
checkAutoStart _ = ifM (elem "--autostart" <$> getArgs)
|
2013-10-26 16:42:58 +00:00
|
|
|
( autoStart Nothing
|
2012-08-02 04:42:33 +00:00
|
|
|
, error "Not in a git repository."
|
|
|
|
)
|
|
|
|
|
2013-10-26 16:42:58 +00:00
|
|
|
autoStart :: Maybe Duration -> IO ()
|
|
|
|
autoStart startdelay = do
|
2013-03-03 21:07:27 +00:00
|
|
|
dirs <- liftIO readAutoStartFile
|
|
|
|
when (null dirs) $ do
|
|
|
|
f <- autoStartFile
|
|
|
|
error $ "Nothing listed in " ++ f
|
|
|
|
program <- readProgramFile
|
2013-06-21 17:43:04 +00:00
|
|
|
haveionice <- pure Build.SysConfig.ionice <&&> inPath "ionice"
|
2013-03-03 21:07:27 +00:00
|
|
|
forM_ dirs $ \d -> do
|
|
|
|
putStrLn $ "git-annex autostart in " ++ d
|
2013-06-21 17:23:20 +00:00
|
|
|
ifM (catchBoolIO $ go haveionice program d)
|
2013-03-03 21:07:27 +00:00
|
|
|
( putStrLn "ok"
|
|
|
|
, putStrLn "failed"
|
|
|
|
)
|
2012-11-12 05:05:04 +00:00
|
|
|
where
|
2013-06-21 17:23:20 +00:00
|
|
|
go haveionice program dir = do
|
2013-05-11 23:14:30 +00:00
|
|
|
setCurrentDirectory dir
|
2013-06-21 17:23:20 +00:00
|
|
|
if haveionice
|
2013-10-26 16:42:58 +00:00
|
|
|
then boolSystem "ionice" (Param "-c3" : Param program : baseparams)
|
|
|
|
else boolSystem program baseparams
|
|
|
|
where
|
|
|
|
baseparams =
|
|
|
|
[ Param "assistant"
|
|
|
|
, Param $ "--startdelay=" ++ fromDuration (fromMaybe (Duration 5) startdelay)
|
|
|
|
]
|