Esempio n. 1
0
        /// <summary>
        /// Parses the arguments and checks for named arguments and non-named arguments.
        /// </summary>
        /// <param name="args">e.g. "-config:prod.xml", "-date:T-1", "BloombergFutOpt"</param>
        /// <param name="prefix">Character used to identifiy the name
        /// of a named parameter. e.g. "-" as in "-config:prod.xml"
        /// Leave null or string.emtpy to indicate there is no prefix.
        /// In which case, only the <paramref name="separator"/> is used to distinguish
        /// namevalue pairs.</param>
        /// <param name="separator">Character used to separate the named
        /// argument with it's value in a named argument. e.g. ":" as in "-config:prod.xml"
        /// If this is null or string.empty, in addition to the <paramref name="prefix"/></param>
        /// <param name="argumentsStore">Object to store the named arguments.</param>
        /// <returns></returns>
        public static BoolMessageItem <Args> Parse(string[] args, string prefix, string separator, object argReciever)
        {
            // Parse the args first.
            BoolMessageItem <Args> parseResult = Parse(args, prefix, separator);

            if (!parseResult.Success)
            {
                return(parseResult);
            }

            Args          resultArgs = parseResult.Item;
            List <string> errors     = new List <string>();

            // Set the named argument values on the object's properties.
            if (argReciever != null)
            {
                ArgsHelper.CheckAndApplyArgs(resultArgs, argReciever, errors);
            }
            string singleMessage = string.Empty;

            foreach (string error in errors)
            {
                singleMessage += error + Environment.NewLine;
            }

            return(new BoolMessageItem <Args>(resultArgs, errors.Count == 0, singleMessage));
        }
Esempio n. 2
0
        /// <summary>
        /// Parses the arguments and checks for named arguments and non-named arguments.
        /// </summary>
        /// <param name="args">e.g. "-env:prod", "-config:prod.xml", "-date:T-1", "20"</param>
        /// <param name="prefix">Prefix used for named arguments. E.g. "-" as in "-env:prod"</param>
        /// <param name="separator">Separator used between name and value of named arguments. E.g. ":" as in "-env:prod"</param>
        /// <param name="argReciever">The object to apply the argument values to. This must have ArgAttributes on it's properties.</param>
        /// <returns></returns>
        public static BoolMessageItem <Args> Parse(string[] args, string prefix, string separator, object argReciever)
        {
            // Parse the args first.
            BoolMessageItem <Args> parseResult = Parse(args, prefix, separator);

            if (!parseResult.Success)
            {
                return(parseResult);
            }

            Args resultArgs = parseResult.Item;

            // 1. Set the schema.
            List <ArgAttribute> schemaItems = ArgsHelper.GetArgsFromReciever(argReciever);

            resultArgs.Schema.Items = schemaItems;

            // 2. Parse interpreted values like ${today}.
            ArgsHelper.InterpretValues(resultArgs);

            // 3. Apply the values to the reciever and store any errors.
            var errors = new List <string>();

            // Set the named argument values on the object's properties.
            if (argReciever != null)
            {
                ArgsHelper.CheckAndApplyArgs(resultArgs, argReciever, errors);
            }
            string singleMessage = string.Empty;

            foreach (string error in errors)
            {
                singleMessage += error + Environment.NewLine;
            }

            return(new BoolMessageItem <Args>(resultArgs, errors.Count == 0, singleMessage));
        }