git-annex/CmdLine.hs

45 lines
1.4 KiB
Haskell
Raw Normal View History

2010-10-10 22:05:37 +00:00
{- git-annex command line
-
- TODO: This is very rough and stupid; I would like to use
- System.Console.CmdArgs.Implicit but it is not yet packaged in Debian.
-}
module CmdLine where
import System.Console.GetOpt
import Types
import Annex
data Mode = Add | Push | Pull | Want | Get | Drop | Unannex
2010-10-10 22:05:37 +00:00
deriving Show
options :: [OptDescr Mode]
2010-10-10 22:05:37 +00:00
options =
[ Option ['a'] ["add"] (NoArg Add) "add files to annex"
, Option ['p'] ["push"] (NoArg Push) "push annex to repos"
, Option ['P'] ["pull"] (NoArg Pull) "pull annex from repos"
, Option ['w'] ["want"] (NoArg Want) "request file contents"
, Option ['g'] ["get"] (NoArg Get) "transfer file contents"
, Option ['d'] ["drop"] (NoArg Drop) "indicate file contents not needed"
, Option ['u'] ["unannex"] (NoArg Unannex) "undo --add"
2010-10-10 22:05:37 +00:00
]
argvToMode argv = do
2010-10-10 22:05:37 +00:00
case getOpt Permute options argv of
-- default mode is Add
([],files,[]) -> return (Add, files)
-- one mode is normal case
(m:[],files,[]) -> return (m, files)
-- multiple modes is an error
(ms,files,[]) -> ioError (userError ("only one mode should be specified\n" ++ usageInfo header options))
2010-10-10 22:05:37 +00:00
-- error case
(_,files,errs) -> ioError (userError (concat errs ++ usageInfo header options))
where header = "Usage: git-annex [mode] file"
2010-10-10 22:05:37 +00:00
dispatch :: State -> Mode -> FilePath -> IO ()
dispatch state mode file = do
case (mode) of
Add -> annexFile state file
Unannex -> unannexFile state file
2010-10-10 22:05:37 +00:00
_ -> error "not implemented"