Exemple #1
0
        public static List <string> Parse(Action <CmdArgConfigurator> configAction)
        {
            var config       = new CmdArgConfiguration();
            var configurator = new CmdArgConfigurator(config);

            try
            {
                configAction(configurator);
            }
            catch (Exception e)
            {
                throw new ArgumentException("Exception thrown in config action passed to CmdArgParser. Parse method. See inner exception for more details", e);
            }
            var args      = Environment.GetCommandLineArgs();
            var extraArgs = new List <string>();

            if (args.Length > 0)
            {
                var argsWithoutLocation = args.Skip(1).ToList();

                argsWithoutLocation.ForEach(argument =>
                {
                    var argumentLC = argument.ToLower();
                    var argParsed  = false;
                    config
                    .parameters
                    .ForEach(parameter =>
                    {
                        foreach (var key in parameter.GetKeys())
                        {
                            if (argumentLC.StartsWith(key))
                            {
                                TakeValuesFromArgument(ref parameter, argument, key, argParsed);
                            }
                        }
                    });

                    if (!argParsed)
                    {
                        extraArgs.Add(argument);
                    }
                });
            }
            if (extraArgs.Count > 0 && config.ShowHelpOnExtraArguments)
            {
                Console.WriteLine("Unrecognized arguments: ");
                extraArgs.ForEach(extraArg => Console.WriteLine("Key: {0}", extraArg));
            }
            return(extraArgs);
        }
 public CmdArgConfigurator(CmdArgConfiguration config) => this.config = config;