summaryrefslogtreecommitdiff
path: root/Checks.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-01-06 03:06:25 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-01-06 03:16:42 -0400
commit0a36f92a31196451c2d838fd0ae15527e8bbce18 (patch)
tree54e2a90339ad3d24dbc3d0599a580db63b25ed32 /Checks.hs
parent2051d804625be0c19e277764ab9820b428a5d2b3 (diff)
more command-specific options
Made --from and --to command-specific options. Added generic storage for values of command-specific options, which allows removing some of the special case fields in AnnexState. (Also added generic storage for command-specific flags, although there are not yet any.) Note that this storage uses a Map, so repeatedly looking up the same value is slightly more expensive than looking up an AnnexState field. But, the value can be looked up once in the seek stage, transformed as necessary, and passed in a closure to the start stage, and this avoids that overhead. Still, I'm hesitant to use this for things like force or fast flags. It's probably best to reserve it for flags that are only used by a few commands, or options like --from and --to that it's important only be allowed to be used with commands that implement them, to avoid user confusion.
Diffstat (limited to 'Checks.hs')
-rw-r--r--Checks.hs13
1 files changed, 1 insertions, 12 deletions
diff --git a/Checks.hs b/Checks.hs
index e443811cd..9d846842d 100644
--- a/Checks.hs
+++ b/Checks.hs
@@ -13,24 +13,13 @@ module Checks where
import Common.Annex
import Types.Command
import Init
-import qualified Annex
commonChecks :: [CommandCheck]
-commonChecks = [fromOpt, toOpt, repoExists]
+commonChecks = [repoExists]
repoExists :: CommandCheck
repoExists = CommandCheck 0 ensureInitialized
-fromOpt :: CommandCheck
-fromOpt = CommandCheck 1 $ do
- v <- Annex.getState Annex.fromremote
- unless (isNothing v) $ error "cannot use --from with this command"
-
-toOpt :: CommandCheck
-toOpt = CommandCheck 2 $ do
- v <- Annex.getState Annex.toremote
- unless (isNothing v) $ error "cannot use --to with this command"
-
dontCheck :: CommandCheck -> Command -> Command
dontCheck check cmd = mutateCheck cmd $ \c -> filter (/= check) c