2012-01-06 02:48:59 +00:00
|
|
|
{- git-annex usage messages
|
|
|
|
-
|
2015-07-08 19:08:02 +00:00
|
|
|
- Copyright 2010-2015 Joey Hess <id@joeyh.name>
|
2012-01-06 02:48:59 +00:00
|
|
|
-
|
2019-03-13 19:48:14 +00:00
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2012-01-06 02:48:59 +00:00
|
|
|
-}
|
|
|
|
|
2014-01-26 20:25:55 +00:00
|
|
|
module CmdLine.Usage where
|
2012-01-06 02:48:59 +00:00
|
|
|
|
2016-01-20 20:36:33 +00:00
|
|
|
import Annex.Common
|
2012-01-06 02:48:59 +00:00
|
|
|
import Types.Command
|
|
|
|
|
2013-03-27 17:51:24 +00:00
|
|
|
usageMessage :: String -> String
|
|
|
|
usageMessage s = "Usage: " ++ s
|
|
|
|
|
2013-03-25 16:41:57 +00:00
|
|
|
usage :: String -> [Command] -> String
|
2015-07-09 15:49:52 +00:00
|
|
|
usage header cmds = unlines $ usageMessage header : commandList cmds
|
|
|
|
|
|
|
|
{- Commands listed by section, with breif usage and description. -}
|
|
|
|
commandList :: [Command] -> [String]
|
|
|
|
commandList cmds = concatMap go [minBound..]
|
2012-10-29 02:09:09 +00:00
|
|
|
where
|
2013-03-25 16:41:57 +00:00
|
|
|
go section
|
|
|
|
| null cs = []
|
|
|
|
| otherwise =
|
|
|
|
[ ""
|
|
|
|
, descSection section ++ ":"
|
|
|
|
, ""
|
|
|
|
] ++ map cmdline cs
|
2012-10-29 02:09:09 +00:00
|
|
|
where
|
2013-03-25 16:41:57 +00:00
|
|
|
cs = filter (\c -> cmdsection c == section) scmds
|
|
|
|
cmdline c = concat
|
|
|
|
[ cmdname c
|
|
|
|
, namepad (cmdname c)
|
|
|
|
, cmdparamdesc c
|
|
|
|
, descpad (cmdparamdesc c)
|
|
|
|
, cmddesc c
|
|
|
|
]
|
2012-10-29 02:09:09 +00:00
|
|
|
pad n s = replicate (n - length s) ' '
|
|
|
|
namepad = pad $ longest cmdname + 1
|
|
|
|
descpad = pad $ longest cmdparamdesc + 2
|
|
|
|
longest f = foldl max 0 $ map (length . f) cmds
|
|
|
|
scmds = sort cmds
|
2012-01-06 02:48:59 +00:00
|
|
|
|
2015-07-09 15:49:52 +00:00
|
|
|
|
2012-01-06 02:48:59 +00:00
|
|
|
{- Descriptions of params used in usage messages. -}
|
|
|
|
paramPaths :: String
|
2015-07-08 17:39:11 +00:00
|
|
|
paramPaths = paramRepeating paramPath -- most often used
|
2012-01-06 02:48:59 +00:00
|
|
|
paramPath :: String
|
|
|
|
paramPath = "PATH"
|
|
|
|
paramKey :: String
|
|
|
|
paramKey = "KEY"
|
|
|
|
paramDesc :: String
|
|
|
|
paramDesc = "DESC"
|
|
|
|
paramUrl :: String
|
|
|
|
paramUrl = "URL"
|
|
|
|
paramNumber :: String
|
|
|
|
paramNumber = "NUMBER"
|
2012-05-02 18:59:05 +00:00
|
|
|
paramNumRange :: String
|
|
|
|
paramNumRange = "NUM|RANGE"
|
2012-01-06 02:48:59 +00:00
|
|
|
paramRemote :: String
|
|
|
|
paramRemote = "REMOTE"
|
2014-03-15 21:29:40 +00:00
|
|
|
paramField :: String
|
|
|
|
paramField = "FIELD"
|
2012-01-06 02:48:59 +00:00
|
|
|
paramGlob :: String
|
|
|
|
paramGlob = "GLOB"
|
|
|
|
paramName :: String
|
|
|
|
paramName = "NAME"
|
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.
2012-01-06 07:06:25 +00:00
|
|
|
paramValue :: String
|
|
|
|
paramValue = "VALUE"
|
2012-01-06 02:48:59 +00:00
|
|
|
paramUUID :: String
|
|
|
|
paramUUID = "UUID"
|
|
|
|
paramType :: String
|
|
|
|
paramType = "TYPE"
|
2012-01-06 21:24:03 +00:00
|
|
|
paramDate :: String
|
2012-01-07 01:27:42 +00:00
|
|
|
paramDate = "DATE"
|
2012-09-25 20:48:24 +00:00
|
|
|
paramTime :: String
|
|
|
|
paramTime = "TIME"
|
2012-01-06 02:48:59 +00:00
|
|
|
paramFormat :: String
|
|
|
|
paramFormat = "FORMAT"
|
2012-02-08 19:35:18 +00:00
|
|
|
paramFile :: String
|
|
|
|
paramFile = "FILE"
|
2014-04-17 22:41:24 +00:00
|
|
|
paramRef :: String
|
|
|
|
paramRef = "REF"
|
2015-05-14 19:31:38 +00:00
|
|
|
paramRefSpec :: String
|
|
|
|
paramRefSpec = "REFSPEC"
|
2012-10-01 19:12:04 +00:00
|
|
|
paramGroup :: String
|
|
|
|
paramGroup = "GROUP"
|
2013-05-25 16:44:58 +00:00
|
|
|
paramExpression :: String
|
|
|
|
paramExpression = "EXPR"
|
2012-10-08 19:18:58 +00:00
|
|
|
paramSize :: String
|
|
|
|
paramSize = "SIZE"
|
2013-04-08 19:04:35 +00:00
|
|
|
paramAddress :: String
|
|
|
|
paramAddress = "ADDRESS"
|
2014-10-21 17:44:17 +00:00
|
|
|
paramItem :: String
|
|
|
|
paramItem = "ITEM"
|
2017-08-29 18:58:38 +00:00
|
|
|
paramTreeish :: String
|
|
|
|
paramTreeish = "TREEISH"
|
2012-01-06 02:48:59 +00:00
|
|
|
paramKeyValue :: String
|
|
|
|
paramKeyValue = "K=V"
|
|
|
|
paramNothing :: String
|
|
|
|
paramNothing = ""
|
|
|
|
paramRepeating :: String -> String
|
|
|
|
paramRepeating s = s ++ " ..."
|
|
|
|
paramOptional :: String -> String
|
2015-07-08 17:39:11 +00:00
|
|
|
paramOptional s = s
|
2012-01-06 02:48:59 +00:00
|
|
|
paramPair :: String -> String -> String
|
|
|
|
paramPair a b = a ++ " " ++ b
|
2016-04-22 17:49:32 +00:00
|
|
|
paramOr :: String -> String -> String
|
|
|
|
paramOr a b = a ++ " | " ++ b
|