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
|
2012-08-02 04:42:33 +00:00
|
|
|
import qualified Option
|
2012-06-22 17:04:03 +00:00
|
|
|
import qualified Command.Watch
|
2012-08-02 04:42:33 +00:00
|
|
|
import Init
|
|
|
|
import Locations.UserConfig
|
|
|
|
|
|
|
|
import System.Environment
|
|
|
|
import System.Posix.Directory
|
2012-06-22 17:04:03 +00:00
|
|
|
|
|
|
|
def :: [Command]
|
2012-08-02 04:42:33 +00:00
|
|
|
def = [noRepo checkAutoStart $ dontCheck repoExists $
|
|
|
|
withOptions [Command.Watch.foregroundOption, Command.Watch.stopOption, autoStartOption] $
|
2012-06-22 17:04:03 +00:00
|
|
|
command "assistant" paramNothing seek "automatically handle changes"]
|
|
|
|
|
2012-08-02 04:42:33 +00:00
|
|
|
autoStartOption :: Option
|
|
|
|
autoStartOption = Option.flag [] "autostart" "start in known repositories"
|
|
|
|
|
2012-06-22 17:04:03 +00:00
|
|
|
seek :: [CommandSeek]
|
2012-08-02 04:42:33 +00:00
|
|
|
seek = [withFlag Command.Watch.stopOption $ \stopdaemon ->
|
|
|
|
withFlag Command.Watch.foregroundOption $ \foreground ->
|
|
|
|
withFlag autoStartOption $ \autostart ->
|
|
|
|
withNothing $ start foreground stopdaemon autostart]
|
|
|
|
|
|
|
|
start :: Bool -> Bool -> Bool -> CommandStart
|
|
|
|
start foreground stopdaemon autostart
|
|
|
|
| autostart = do
|
2012-09-13 04:57:52 +00:00
|
|
|
liftIO autoStart
|
2012-08-02 04:42:33 +00:00
|
|
|
stop
|
|
|
|
| otherwise = do
|
|
|
|
ensureInitialized
|
|
|
|
Command.Watch.start True foreground stopdaemon
|
|
|
|
|
|
|
|
{- Run outside a git repository. Check to see if any parameter is
|
|
|
|
- --autostart and enter autostart mode. -}
|
|
|
|
checkAutoStart :: IO ()
|
2012-09-13 04:57:52 +00:00
|
|
|
checkAutoStart = ifM (elem "--autostart" <$> getArgs)
|
2012-08-02 04:42:33 +00:00
|
|
|
( autoStart
|
|
|
|
, error "Not in a git repository."
|
|
|
|
)
|
|
|
|
|
|
|
|
autoStart :: IO ()
|
|
|
|
autoStart = do
|
|
|
|
autostartfile <- autoStartFile
|
|
|
|
let nothing = error $ "Nothing listed in " ++ autostartfile
|
|
|
|
ifM (doesFileExist autostartfile)
|
|
|
|
( do
|
|
|
|
dirs <- lines <$> readFile autostartfile
|
2012-08-27 17:43:03 +00:00
|
|
|
program <- readProgramFile
|
2012-08-02 04:42:33 +00:00
|
|
|
when (null dirs) nothing
|
|
|
|
forM_ dirs $ \d -> do
|
|
|
|
putStrLn $ "git-annex autostart in " ++ d
|
|
|
|
ifM (catchBoolIO $ go program d)
|
|
|
|
( putStrLn "ok"
|
|
|
|
, putStrLn "failed"
|
|
|
|
)
|
|
|
|
, nothing
|
|
|
|
)
|
|
|
|
where
|
|
|
|
go program dir = do
|
|
|
|
changeWorkingDirectory dir
|
|
|
|
boolSystem program [Param "assistant"]
|