Parse() protected method

protected Parse ( string option, OptionContext c ) : bool
option string
c OptionContext
return bool
Ejemplo n.º 1
0
        /// <summary>
        /// Parses the options for all subcommands and executes the corresponding code for each option.
        /// </summary>
        /// <param name="args">Specifies the string from the options to the end of the command line.</param>
        /// <returns>Returns the arguments remaining after the options on the command line. Often, these are directories or paths.</returns>
        public List <String> ParseOptions(string[] args)
        {
            List <String> remainingArguments = new List <string>();

            try
            {
                options.Parse(args, out remainingArguments);
            }
            catch (OptionException err)
            {
                throw die("fatal: " + err.Message);
            }
            return(remainingArguments);
        }
Ejemplo n.º 2
0
        public override void Run(string[] args)
        {
            options = new CmdParserOptionSet
                          {
                              {"bare", "Create a bare repository", v => bare = true}
                          };

            arguments = options.Parse(args);

            create();
        }
Ejemplo n.º 3
0
        /// <summary>
        /// Parses the options for all subcommands and executes the corresponding code for each option.
        /// </summary>
        /// <param name="args">Specifies the string from the options to the end of the command line.</param>
        /// <returns>Returns the arguments remaining after the options on the command line. Often, these are directories or paths.</returns>
        public List <String> ParseOptions(string[] args)
        {
            try
            {
                arguments = options.Parse(args);
            }
            catch (OptionException err)
            {
                throw die("fatal: " + err.Message);
            }

            return(arguments);
        }
Ejemplo n.º 4
0
        /// <summary>
        /// Execute the command line
        /// </summary>
        /// <param name="argv"></param>
        private static void execute(string[] argv)
        {
            if (argv.Count() == 0)
            {
                ShowHelp();
            }
            else if (!argv[0].StartsWith("--") && !argv[0].StartsWith("-"))
            {
                CommandCatalog catalog    = new CommandCatalog();
                CommandRef     subcommand = catalog.Get(argv[0]);
                string         gitdir     = null;

                if (subcommand != null)
                {
                    TextBuiltin         cmd  = subcommand.Create();
                    List <String>       args = argv.ToList();
                    GitSharp.Repository repo = null;

                    try
                    {
                        for (int x = 0; x < args.Count; x++)
                        {
                            if (args[x].IndexOf("--git-dir=") > -1)
                            {
                                if (args[x].Length > 10)
                                {
                                    gitdir = args[x].Substring(10);
                                    args.RemoveAt(x);
                                    break;
                                }
                            }
                        }
                    }
                    catch (ArgumentException)
                    {
                        if (Git.DefaultOutputStream != null)
                        {
                            Git.DefaultOutputStream.WriteLine("error: can't find git directory");
                            Git.DefaultOutputStream.Flush();
                        }
                        Exit(1);
                    }

                    if (cmd.RequiresRepository)
                    {
                        if (gitdir == null)
                        {
                            gitdir = Commands.AbstractCommand.FindGitDirectory(null, true, false);
                            if (gitdir == null)
                            {
                                Console.Error.WriteLine("fatal: Not a git repository (or any of the parent directories): .git");
                                Exit(0);
                            }
                        }

                        repo = new GitSharp.Repository(gitdir);
                        cmd.Init(repo, gitdir);
                    }
                    else
                    {
                        cmd.Init(null, gitdir);
                    }

                    try
                    {
                        // Remove the subcommand from the command line
                        args.RemoveAt(0);
                        cmd.Execute(args.ToArray());
                    }
                    finally
                    {
                        if (Git.DefaultOutputStream != null)
                        {
                            Git.DefaultOutputStream.Flush();
                        }

                        if (repo != null)
                        {
                            repo.Close();
                        }
                    }
                }
                else
                {
                    // List all available commands starting with argv[0] if the command
                    // specified does not exist.
                    // If no commands exist starting with argv[0], show the help screen.
                    if (!ShowCommandMatches(argv[0]))
                    {
                        ShowHelp();
                    }
                }
            }
            else
            {
                // If the first argument in the command line is an option (denoted by starting with - or --),
                // no subcommand has been specified in the command line.
                try
                {
                    options.Parse(argv, out arguments);
                }
                catch (OptionException err)
                {
                    if (arguments.Count > 0)
                    {
                        Console.Error.WriteLine("fatal: " + err.Message);
                        Exit(1);
                    }
                }
            }
            Exit(0);
        }