{- Copyright © 2012, Vincent Elisha Lee Frey. All rights reserved. - This is open source software distributed under a MIT license. - See the file 'LICENSE' for further information. -} module System.Console.CmdTheLine.Term ( -- * Evaluating Terms -- ** Simple command line programs eval, exec, run -- ** Multi-command command line programs , evalChoice, execChoice, runChoice ) where import System.Console.CmdTheLine.Common import System.Console.CmdTheLine.CmdLine ( create ) import System.Console.CmdTheLine.Arg import System.Console.CmdTheLine.ArgVal import qualified System.Console.CmdTheLine.Err as E import qualified System.Console.CmdTheLine.Help as H import qualified System.Console.CmdTheLine.Trie as T import Control.Applicative hiding ( (<|>), empty ) import Control.Arrow ( second ) import Data.List ( find, sort ) import Data.Maybe ( fromJust ) import System.Environment ( getArgs ) import System.Exit ( exitFailure ) import System.IO import Text.PrettyPrint import Text.Parsec -- -- EvalErr -- data EvalFail = Help HelpFormat (Maybe String) | Usage Doc | Msg Doc | Version type EvalErr = Either EvalFail fromFail :: Fail -> EvalErr a fromFail (MsgFail d) = Left $ Msg d fromFail (UsageFail d) = Left $ Usage d fromFail (HelpFail fmt mName) = Left $ Help fmt mName fromErr :: Err a -> EvalErr a fromErr = either fromFail return printEvalErr :: EvalInfo -> EvalFail -> IO () printEvalErr ei fail = case fail of Usage doc -> do E.printUsage stderr ei doc exitFailure Msg doc -> do E.print stderr ei doc exitFailure Version -> H.printVersion stdout ei Help fmt mName -> either print (H.print fmt stdout) (eEi mName) where -- Either we are in the default term, or the commands name is in `mName`. eEi = maybe (Right ei { term = main ei }) process -- Either the command name exists, or else it does not and we're in trouble. process name = do cmd' <- case find (\ ( i, _ ) -> termName i == name) (choices ei) of Just x -> Right x Nothing -> Left $ E.errHelp (text name) return ei { term = cmd' } -- -- Terms as Applicative Functors -- instance Functor Term where fmap = yield . result . result . fmap where yield f (Term ais y) = Term ais (f y) result = (.) instance Applicative Term where pure v = Term [] (\ _ _ -> Right v) (Term args f) <*> (Term args' v) = Term (args ++ args') wrapped where wrapped ei cl = f ei cl <*> v ei cl -- -- Standard Options -- instance ArgVal HelpFormat where parser = enum [ ( "pager", Pager ) , ( "plain", Plain ) , ( "groff", Groff ) ] pp Pager = text "pager" pp Plain = text "plain" pp Groff = text "groff" instance ArgVal (Maybe HelpFormat) where parser = just pp = maybePP addStdOpts :: EvalInfo -> ( Yield (Maybe HelpFormat) , Maybe (Yield Bool) , EvalInfo ) addStdOpts ei = ( hLookup, vLookup, ei' ) where ( args, vLookup ) = case version . fst $ main ei of "" -> ( [], Nothing ) _ -> ( ais, Just lookup ) where Term ais lookup = flag (optInfo ["version"]) { argSection = section , argDoc = "Show version information." } ( args', hLookup ) = ( ais ++ args, lookup ) where Term ais lookup = defaultOpt (Just Pager) Nothing (optInfo ["help"]) { argSection = section , argName = "FMT" , argDoc = doc } section = stdOptSection . fst $ term ei doc = "Show this help in format $(argName) (pager, plain, or groff)." addArgs = second (args' ++) ei' = ei { term = addArgs $ term ei , main = addArgs $ main ei , choices = map addArgs $ choices ei } -- -- Evaluation of Terms -- evalTerm :: EvalInfo -> Yield a -> [String] -> IO a evalTerm ei yield args = either handleErr return $ do ( cl, mResult ) <- fromErr $ do cl <- create (snd $ term ei') args mResult <- helpArg ei' cl return ( cl, mResult ) let success = fromErr $ yield ei' cl case ( mResult, versionArg ) of ( Just fmt, _ ) -> Left $ Help fmt mName ( Nothing, Just vArg ) -> case vArg ei' cl of Left e -> fromFail e Right True -> Left Version Right False -> success _ -> success where ( helpArg, versionArg, ei' ) = addStdOpts ei mName = if defName == evalName then Nothing else Just evalName defName = termName . fst $ main ei' evalName = termName . fst $ term ei' handleErr e = do printEvalErr ei' e exitFailure chooseTerm :: TermInfo -> [( TermInfo, a )] -> [String] -> Err ( TermInfo, [String] ) chooseTerm ti _ [] = Right ( ti, [] ) chooseTerm ti choices args@( arg : rest ) | length arg > 1 && head arg == '-' = Right ( ti, args ) | otherwise = case T.lookup arg index of Right choice -> Right ( choice, rest ) Left T.NotFound -> Left . UsageFail $ E.unknown com arg Left T.Ambiguous -> Left . UsageFail $ E.ambiguous com arg ambs where index = foldl add T.empty choices add acc ( choice, _ ) = T.add acc (termName choice) choice com = "command" ambs = sort $ T.ambiguities index arg mkCommand :: ( Term a, TermInfo ) -> Command mkCommand ( Term ais _, ti ) = ( ti, ais ) -- Prep an EvalInfo suitable for catching errors raised by 'chooseTerm'. chooseTermEi :: ( Term a, TermInfo ) -> [( Term a, TermInfo )] -> EvalInfo chooseTermEi mainTerm choices = EvalInfo command command eiChoices where command = mkCommand mainTerm eiChoices = map mkCommand choices -- -- User-Facing Functionality -- -- | 'eval' @args ( term, termInfo )@ allows the user to pass @args@ directly to -- the evaluation mechanism. This is useful if some kind of pre-processing is -- required. If you do not need to pre-process command line arguments, use one -- of 'exec' or 'run'. On failure the program exits. eval :: [String] -> ( Term a, TermInfo ) -> IO a eval args termPair@( term, _ ) = evalTerm ei yield args where (Term _ yield) = term command = mkCommand termPair ei = EvalInfo command command [] -- | 'exec' @( term, termInfo )@ executes a command line program, directly -- grabbing the command line arguments from the environment and returning the -- result upon successful evaluation of @term@. On failure the program exits. exec :: ( Term a, TermInfo ) -> IO a exec term = do args <- getArgs eval args term -- | 'run' @( term, termInfo )@ runs a @term@ containing an 'IO' action, -- performs the action, and returns the result on success. On failure the -- program exits. run :: ( Term (IO a), TermInfo ) -> IO a run term = do action <- exec term action -- | 'evalChoice' @args mainTerm choices@ is analogous to 'eval', but for -- programs that provide a choice of commands. evalChoice :: [String] -> ( Term a, TermInfo ) -> [( Term a, TermInfo )] -> IO a evalChoice args mainTerm@( term, termInfo ) choices = do ( chosen, args' ) <- either handleErr return . fromErr $ chooseTerm termInfo eiChoices args let (Term ais yield) = fst . fromJust . find ((== chosen) . snd) $ mainTerm : choices ei = EvalInfo ( chosen, ais ) mainEi eiChoices evalTerm ei yield args' where mainEi = mkCommand mainTerm eiChoices = map mkCommand choices -- Only handles errors caused by chooseTerm. handleErr e = do printEvalErr (chooseTermEi mainTerm choices) e exitFailure -- | Analogous to 'exec', but for programs that provide a choice of commands. execChoice :: ( Term a, TermInfo ) -> [( Term a, TermInfo )] -> IO a execChoice main choices = do args <- getArgs evalChoice args main choices -- | Analogous to 'run', but for programs that provide a choice of commands. runChoice :: ( Term (IO a), TermInfo ) -> [( Term (IO a), TermInfo )] -> IO a runChoice main choices = do action <- execChoice main choices action