summaryrefslogtreecommitdiff
path: root/Command
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-10-13 15:40:38 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-10-13 15:40:38 -0400
commitd6bf4460d8b7ff91ba553958240054ca8a2a91d6 (patch)
treebc23043851e98c771a3b451456a0103332b20444 /Command
parentf0cf034faa674921dae63d7a54270861bbe86e29 (diff)
add schedule command
Mostly because it gives me an excuse and a hook to document the schedule expression format.
Diffstat (limited to 'Command')
-rw-r--r--Command/Schedule.hs50
-rw-r--r--Command/Vicfg.hs16
2 files changed, 56 insertions, 10 deletions
diff --git a/Command/Schedule.hs b/Command/Schedule.hs
new file mode 100644
index 000000000..35f144c75
--- /dev/null
+++ b/Command/Schedule.hs
@@ -0,0 +1,50 @@
+{- git-annex command
+ -
+ - Copyright 2013 Joey Hess <joey@kitenet.net>
+ -
+ - Licensed under the GNU GPL version 3 or higher.
+ -}
+
+module Command.Schedule where
+
+import Common.Annex
+import Command
+import qualified Remote
+import Logs.Schedule
+import Types.ScheduledActivity
+
+import qualified Data.Set as S
+
+def :: [Command]
+def = [command "schedule" (paramPair paramRemote (paramOptional paramExpression)) seek
+ SectionSetup "get or set scheduled jobs"]
+
+seek :: [CommandSeek]
+seek = [withWords start]
+
+start :: [String] -> CommandStart
+start = parse
+ where
+ parse (name:[]) = go name performGet
+ parse (name:expr:[]) = go name $ \uuid -> do
+ showStart "schedile" name
+ performSet expr uuid
+ parse _ = error "Specify a repository."
+
+ go name a = do
+ u <- Remote.nameToUUID name
+ next $ a u
+
+performGet :: UUID -> CommandPerform
+performGet uuid = do
+ s <- scheduleGet uuid
+ liftIO $ putStrLn $ intercalate "; " $
+ map fromScheduledActivity $ S.toList s
+ next $ return True
+
+performSet :: String -> UUID -> CommandPerform
+performSet expr uuid = case parseScheduledActivities expr of
+ Left e -> error $ "Parse error: " ++ e
+ Right l -> do
+ scheduleSet uuid l
+ next $ return True
diff --git a/Command/Vicfg.hs b/Command/Vicfg.hs
index c6fc5ffc9..22c641408 100644
--- a/Command/Vicfg.hs
+++ b/Command/Vicfg.hs
@@ -12,7 +12,6 @@ import qualified Data.Set as S
import System.Environment (getEnv)
import Data.Tuple (swap)
import Data.Char (isSpace)
-import Data.Either
import Common.Annex
import Command
@@ -132,7 +131,7 @@ genCfg cfg descs = unlines $ concat
, com "Scheduled activities"
, com "(Separate multiple activities with \"; \")"
]
- (\(l, u) -> line "schedule" u $ intercalate "; " $ map fromScheduledActivity l)
+ (\(l, u) -> line "schedule" u $ fromScheduledActivities l)
(\u -> line "schedule" u "")
settings field desc showvals showdefaults = concat
@@ -188,14 +187,11 @@ parseCfg curcfg = go [] curcfg . lines
Nothing ->
let m = M.insert u value (cfgPreferredContentMap cfg)
in Right $ cfg { cfgPreferredContentMap = m }
- | setting == "schedule" =
- let (bad, good) = partitionEithers $
- map parseScheduledActivity $ split "; " value
- in if null bad
- then
- let m = M.insert u good (cfgScheduleMap cfg)
- in Right $ cfg { cfgScheduleMap = m }
- else Left $ intercalate "; " bad
+ | setting == "schedule" = case parseScheduledActivities value of
+ Left e -> Left e
+ Right l ->
+ let m = M.insert u l (cfgScheduleMap cfg)
+ in Right $ cfg { cfgScheduleMap = m }
| otherwise = badval "setting" setting
showerr (Just msg, l) = [parseerr ++ msg, l]