2011-10-30 03:48:46 +00:00
|
|
|
{- git-annex command data types
|
|
|
|
-
|
2015-07-08 16:33:27 +00:00
|
|
|
- Copyright 2010-2015 Joey Hess <id@joeyh.name>
|
2011-10-30 03:48:46 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Types.Command where
|
|
|
|
|
2012-02-16 20:53:44 +00:00
|
|
|
import Data.Ord
|
2015-07-08 16:33:27 +00:00
|
|
|
import Options.Applicative.Types (Parser)
|
2012-02-16 20:53:44 +00:00
|
|
|
|
2011-10-30 03:48:46 +00:00
|
|
|
import Types
|
|
|
|
|
|
|
|
{- A command runs in these stages.
|
|
|
|
-
|
2015-07-08 16:33:27 +00:00
|
|
|
- a. The parser stage parses the command line and generates a CommandSeek
|
|
|
|
- action. -}
|
|
|
|
type CommandParser = Parser CommandSeek
|
|
|
|
{- b. The check stage runs checks, that error out if
|
2011-10-30 03:48:46 +00:00
|
|
|
- anything prevents the command from running. -}
|
|
|
|
data CommandCheck = CommandCheck { idCheck :: Int, runCheck :: Annex () }
|
2015-07-08 16:33:27 +00:00
|
|
|
{- c. The seek stage is passed input from the parser, looks through
|
|
|
|
- the repo to find things to act on (ie, new files to add), and
|
|
|
|
- runs commandAction to handle all necessary actions. -}
|
|
|
|
type CommandSeek = Annex ()
|
|
|
|
{- d. The start stage is run before anything is printed about the
|
2012-12-13 04:45:27 +00:00
|
|
|
- command, is passed some input, and can early abort it
|
|
|
|
- if the input does not make sense. It should run quickly and
|
|
|
|
- should not modify Annex state. -}
|
2011-10-30 03:48:46 +00:00
|
|
|
type CommandStart = Annex (Maybe CommandPerform)
|
2015-07-08 16:33:27 +00:00
|
|
|
{- e. The perform stage is run after a message is printed about the command
|
2011-10-30 03:48:46 +00:00
|
|
|
- being run, and it should be where the bulk of the work happens. -}
|
|
|
|
type CommandPerform = Annex (Maybe CommandCleanup)
|
2015-07-08 16:33:27 +00:00
|
|
|
{- f. The cleanup stage is run only if the perform stage succeeds, and it
|
2011-10-30 03:48:46 +00:00
|
|
|
- returns the overall success/fail of the command. -}
|
|
|
|
type CommandCleanup = Annex Bool
|
|
|
|
|
|
|
|
{- A command is defined by specifying these things. -}
|
2012-01-06 02:48:59 +00:00
|
|
|
data Command = Command
|
2015-07-10 17:49:46 +00:00
|
|
|
{ cmdcheck :: [CommandCheck] -- check stage
|
2012-09-16 00:46:38 +00:00
|
|
|
, cmdnocommit :: Bool -- don't commit journalled state changes
|
2013-07-31 00:24:27 +00:00
|
|
|
, cmdnomessages :: Bool -- don't output normal messages
|
2012-01-06 02:48:59 +00:00
|
|
|
, cmdname :: String
|
2015-07-08 20:58:54 +00:00
|
|
|
, cmdparamdesc :: CmdParamsDesc -- description of params for usage
|
2013-03-24 22:28:21 +00:00
|
|
|
, cmdsection :: CommandSection
|
2012-01-06 02:48:59 +00:00
|
|
|
, cmddesc :: String -- description of command for usage
|
2015-07-08 16:33:27 +00:00
|
|
|
, cmdparser :: CommandParser -- command line parser
|
2015-07-08 19:39:05 +00:00
|
|
|
, cmdnorepo :: Maybe (Parser (IO ())) -- used when not in a repo
|
2012-01-06 02:48:59 +00:00
|
|
|
}
|
2011-10-30 03:48:46 +00:00
|
|
|
|
2015-07-08 16:33:27 +00:00
|
|
|
{- Command-line parameters, after the command is selected and options
|
|
|
|
- are parsed. -}
|
2013-11-30 19:18:40 +00:00
|
|
|
type CmdParams = [String]
|
|
|
|
|
2015-07-08 20:58:54 +00:00
|
|
|
type CmdParamsDesc = String
|
|
|
|
|
2011-10-30 03:48:46 +00:00
|
|
|
{- CommandCheck functions can be compared using their unique id. -}
|
|
|
|
instance Eq CommandCheck where
|
|
|
|
a == b = idCheck a == idCheck b
|
2012-02-16 20:53:44 +00:00
|
|
|
|
|
|
|
instance Eq Command where
|
|
|
|
a == b = cmdname a == cmdname b
|
|
|
|
|
2013-03-25 16:41:57 +00:00
|
|
|
{- Order commands by name. -}
|
2012-02-16 20:53:44 +00:00
|
|
|
instance Ord Command where
|
2013-03-25 16:41:57 +00:00
|
|
|
compare = comparing cmdname
|
2013-03-24 22:28:21 +00:00
|
|
|
|
|
|
|
{- The same sections are listed in doc/git-annex.mdwn -}
|
|
|
|
data CommandSection
|
|
|
|
= SectionCommon
|
|
|
|
| SectionSetup
|
|
|
|
| SectionMaintenance
|
|
|
|
| SectionQuery
|
2014-02-19 18:55:34 +00:00
|
|
|
| SectionMetaData
|
2013-03-24 22:28:21 +00:00
|
|
|
| SectionUtility
|
|
|
|
| SectionPlumbing
|
2014-08-01 16:49:26 +00:00
|
|
|
| SectionTesting
|
2013-03-24 22:28:21 +00:00
|
|
|
deriving (Eq, Ord, Enum, Bounded)
|
2013-03-25 14:23:05 +00:00
|
|
|
|
|
|
|
descSection :: CommandSection -> String
|
|
|
|
descSection SectionCommon = "Commonly used commands"
|
|
|
|
descSection SectionSetup = "Repository setup commands"
|
|
|
|
descSection SectionMaintenance = "Repository maintenance commands"
|
|
|
|
descSection SectionQuery = "Query commands"
|
2014-02-19 18:55:34 +00:00
|
|
|
descSection SectionMetaData = "Metadata commands"
|
2013-03-25 14:23:05 +00:00
|
|
|
descSection SectionUtility = "Utility commands"
|
|
|
|
descSection SectionPlumbing = "Plumbing commands"
|
2014-08-01 16:49:26 +00:00
|
|
|
descSection SectionTesting = "Testing commands"
|