public CommandLineGenerator(Rule rule, Dictionary <string, object> parameterValues)
        {
            this.activeCommandLineToolSwitches = new Dictionary <string, CommandLineToolSwitch>(StringComparer.OrdinalIgnoreCase);
            this.additionalOptions             = string.Empty;
            Microsoft.Build.Shared.ErrorUtilities.VerifyThrowArgumentNull(rule, "rule");
            Microsoft.Build.Shared.ErrorUtilities.VerifyThrowArgumentNull(parameterValues, "parameterValues");
            TaskParser parser = new TaskParser();

            Microsoft.Build.Shared.ErrorUtilities.VerifyThrow(parser.ParseXamlDocument(rule), "Unable to parse specified file or contents.");
            this.switchOrderList = parser.SwitchOrderList;
            this.activeCommandLineToolSwitches = new Dictionary <string, CommandLineToolSwitch>(StringComparer.OrdinalIgnoreCase);
            foreach (Property property in parser.Properties)
            {
                object obj2 = null;
                if (parameterValues.TryGetValue(property.Name, out obj2))
                {
                    CommandLineToolSwitch switch2 = new CommandLineToolSwitch();
                    if (!string.IsNullOrEmpty(property.Reversible) && string.Equals(property.Reversible, "true", StringComparison.OrdinalIgnoreCase))
                    {
                        switch2.Reversible = true;
                    }
                    switch2.Separator   = property.Separator;
                    switch2.DisplayName = property.DisplayName;
                    switch2.Description = property.Description;
                    if (!string.IsNullOrEmpty(property.Required) && string.Equals(property.Required, "true", StringComparison.OrdinalIgnoreCase))
                    {
                        switch2.Required = true;
                    }
                    switch2.FallbackArgumentParameter = property.Fallback;
                    switch2.FalseSuffix = property.FalseSuffix;
                    switch2.TrueSuffix  = property.TrueSuffix;
                    if (!string.IsNullOrEmpty(property.SwitchName))
                    {
                        switch2.SwitchValue = property.Prefix + property.SwitchName;
                    }
                    switch2.IsValid = true;
                    switch (property.Type)
                    {
                    case PropertyType.Boolean:
                        switch2.Type         = CommandLineToolSwitchType.Boolean;
                        switch2.BooleanValue = (bool)obj2;
                        if (!string.IsNullOrEmpty(property.ReverseSwitchName))
                        {
                            switch2.ReverseSwitchValue = property.Prefix + property.ReverseSwitchName;
                        }
                        break;

                    case PropertyType.String:
                        switch2.Type = CommandLineToolSwitchType.String;
                        switch2.ReverseSwitchValue = property.Prefix + property.ReverseSwitchName;
                        if (property.Values.Count > 0)
                        {
                            string b = (string)obj2;
                            switch2.Value = (string)obj2;
                            switch2.AllowMultipleValues = true;
                            foreach (Value value2 in property.Values)
                            {
                                if (string.Equals(value2.Name, b, StringComparison.OrdinalIgnoreCase))
                                {
                                    if (!string.IsNullOrEmpty(value2.SwitchName))
                                    {
                                        switch2.SwitchValue = value2.Prefix + value2.SwitchName;
                                    }
                                    else
                                    {
                                        switch2 = null;
                                        break;
                                    }
                                }
                            }
                        }
                        else
                        {
                            switch2.Value = (string)obj2;
                        }
                        break;

                    case PropertyType.Integer:
                        switch2.Type   = CommandLineToolSwitchType.Integer;
                        switch2.Number = (int)obj2;
                        if (!string.IsNullOrEmpty(property.Min) && (switch2.Number < Convert.ToInt32(property.Min, Thread.CurrentThread.CurrentCulture)))
                        {
                            switch2.IsValid = false;
                        }
                        if (!string.IsNullOrEmpty(property.Max) && (switch2.Number > Convert.ToInt32(property.Max, Thread.CurrentThread.CurrentCulture)))
                        {
                            switch2.IsValid = false;
                        }
                        break;

                    case PropertyType.StringArray:
                        switch2.Type       = CommandLineToolSwitchType.StringArray;
                        switch2.StringList = (string[])obj2;
                        break;

                    case PropertyType.ItemArray:
                        switch2.Type          = CommandLineToolSwitchType.ITaskItemArray;
                        switch2.TaskItemArray = (ITaskItem[])obj2;
                        break;
                    }
                    if (switch2 != null)
                    {
                        this.activeCommandLineToolSwitches[property.Name] = switch2;
                    }
                }
            }
        }
Exemple #2
0
        public CommandLineGenerator(Rule rule, Dictionary <string, Object> parameterValues)
        {
            ErrorUtilities.VerifyThrowArgumentNull(rule, nameof(rule));
            ErrorUtilities.VerifyThrowArgumentNull(parameterValues, nameof(parameterValues));

            // Parse the Xaml file
            var  parser  = new TaskParser();
            bool success = parser.ParseXamlDocument(rule);

            ErrorUtilities.VerifyThrow(success, "Unable to parse specified file or contents.");

            // Generate the switch order list
            _switchOrderList = parser.SwitchOrderList;

            foreach (Property property in parser.Properties)
            {
                if (parameterValues.TryGetValue(property.Name, out object value))
                {
                    var switchToAdd = new CommandLineToolSwitch();
                    if (!String.IsNullOrEmpty(property.Reversible) && String.Equals(property.Reversible, "true", StringComparison.OrdinalIgnoreCase))
                    {
                        switchToAdd.Reversible = true;
                    }

                    switchToAdd.IncludeInCommandLine = property.IncludeInCommandLine;
                    switchToAdd.Separator            = property.Separator;
                    switchToAdd.DisplayName          = property.DisplayName;
                    switchToAdd.Description          = property.Description;
                    if (!String.IsNullOrEmpty(property.Required) && String.Equals(property.Required, "true", StringComparison.OrdinalIgnoreCase))
                    {
                        switchToAdd.Required = true;
                    }

                    switchToAdd.FallbackArgumentParameter = property.Fallback;
                    switchToAdd.FalseSuffix = property.FalseSuffix;
                    switchToAdd.TrueSuffix  = property.TrueSuffix;
                    if (!String.IsNullOrEmpty(property.SwitchName))
                    {
                        switchToAdd.SwitchValue = property.Prefix + property.SwitchName;
                    }

                    switchToAdd.IsValid = true;

                    // Based on the switch type, cast the value and set as appropriate
                    switch (property.Type)
                    {
                    case PropertyType.Boolean:
                        switchToAdd.Type         = CommandLineToolSwitchType.Boolean;
                        switchToAdd.BooleanValue = (bool)value;
                        if (!String.IsNullOrEmpty(property.ReverseSwitchName))
                        {
                            switchToAdd.ReverseSwitchValue = property.Prefix + property.ReverseSwitchName;
                        }

                        break;

                    case PropertyType.Integer:
                        switchToAdd.Type   = CommandLineToolSwitchType.Integer;
                        switchToAdd.Number = (int)value;
                        if (!String.IsNullOrEmpty(property.Min))
                        {
                            if (switchToAdd.Number < Convert.ToInt32(property.Min, System.Threading.Thread.CurrentThread.CurrentCulture))
                            {
                                switchToAdd.IsValid = false;
                            }
                        }

                        if (!String.IsNullOrEmpty(property.Max))
                        {
                            if (switchToAdd.Number > Convert.ToInt32(property.Max, System.Threading.Thread.CurrentThread.CurrentCulture))
                            {
                                switchToAdd.IsValid = false;
                            }
                        }

                        break;

                    case PropertyType.ItemArray:
                        switchToAdd.Type          = CommandLineToolSwitchType.ITaskItemArray;
                        switchToAdd.TaskItemArray = (ITaskItem[])value;
                        break;

                    case PropertyType.None:
                        break;

                    case PropertyType.String:
                        switchToAdd.Type = CommandLineToolSwitchType.String;
                        switchToAdd.ReverseSwitchValue = property.Prefix + property.ReverseSwitchName;
                        if (property.Values.Count > 0)
                        {
                            string enumValueToSelect = (string)value;

                            switchToAdd.Value = (string)value;
                            switchToAdd.AllowMultipleValues = true;

                            // Find the matching value in the enum
                            foreach (Value enumValue in property.Values)
                            {
                                if (String.Equals(enumValue.Name, enumValueToSelect, StringComparison.OrdinalIgnoreCase))
                                {
                                    if (!String.IsNullOrEmpty(enumValue.SwitchName))
                                    {
                                        switchToAdd.SwitchValue = enumValue.Prefix + enumValue.SwitchName;
                                    }
                                    else
                                    {
                                        switchToAdd = null;
                                        break;
                                    }
                                }
                            }
                        }
                        else
                        {
                            switchToAdd.Value = (string)value;
                        }

                        break;

                    case PropertyType.StringArray:
                        switchToAdd.Type       = CommandLineToolSwitchType.StringArray;
                        switchToAdd.StringList = (string[])value;
                        break;
                    }

                    if (switchToAdd != null)
                    {
                        _activeCommandLineToolSwitches[property.Name] = switchToAdd;
                    }
                }
            }
        }
        /// <summary>
        /// Creates a generator that generates a command-line based on the specified Xaml file and parameters.
        /// </summary>
        public CommandLineGenerator(Rule rule, Dictionary<string, Object> parameterValues)
        {
            ErrorUtilities.VerifyThrowArgumentNull(rule, "rule");
            ErrorUtilities.VerifyThrowArgumentNull(parameterValues, "parameterValues");

            // Parse the Xaml file
            TaskParser parser = new TaskParser();
            bool success = parser.ParseXamlDocument(rule);
            ErrorUtilities.VerifyThrow(success, "Unable to parse specified file or contents.");

            // Generate the switch order list
            _switchOrderList = parser.SwitchOrderList;

            _activeCommandLineToolSwitches = new Dictionary<string, CommandLineToolSwitch>(StringComparer.OrdinalIgnoreCase);
            foreach (Property property in parser.Properties)
            {
                Object value = null;
                if (parameterValues.TryGetValue(property.Name, out value))
                {
                    CommandLineToolSwitch switchToAdd = new CommandLineToolSwitch();
                    if (!String.IsNullOrEmpty(property.Reversible) && String.Equals(property.Reversible, "true", StringComparison.OrdinalIgnoreCase))
                    {
                        switchToAdd.Reversible = true;
                    }

                    switchToAdd.IncludeInCommandLine = property.IncludeInCommandLine;
                    switchToAdd.Separator = property.Separator;
                    switchToAdd.DisplayName = property.DisplayName;
                    switchToAdd.Description = property.Description;
                    if (!String.IsNullOrEmpty(property.Required) && String.Equals(property.Required, "true", StringComparison.OrdinalIgnoreCase))
                    {
                        switchToAdd.Required = true;
                    }

                    switchToAdd.FallbackArgumentParameter = property.Fallback;
                    switchToAdd.FalseSuffix = property.FalseSuffix;
                    switchToAdd.TrueSuffix = property.TrueSuffix;
                    if (!String.IsNullOrEmpty(property.SwitchName))
                    {
                        switchToAdd.SwitchValue = property.Prefix + property.SwitchName;
                    }

                    switchToAdd.IsValid = true;

                    // Based on the switch type, cast the value and set as appropriate
                    switch (property.Type)
                    {
                        case PropertyType.Boolean:
                            switchToAdd.Type = CommandLineToolSwitchType.Boolean;
                            switchToAdd.BooleanValue = (bool)value;
                            if (!String.IsNullOrEmpty(property.ReverseSwitchName))
                            {
                                switchToAdd.ReverseSwitchValue = property.Prefix + property.ReverseSwitchName;
                            }

                            break;

                        case PropertyType.Integer:
                            switchToAdd.Type = CommandLineToolSwitchType.Integer;
                            switchToAdd.Number = (int)value;
                            if (!String.IsNullOrEmpty(property.Min))
                            {
                                if (switchToAdd.Number < Convert.ToInt32(property.Min, System.Threading.Thread.CurrentThread.CurrentCulture))
                                {
                                    switchToAdd.IsValid = false;
                                }
                            }

                            if (!String.IsNullOrEmpty(property.Max))
                            {
                                if (switchToAdd.Number > Convert.ToInt32(property.Max, System.Threading.Thread.CurrentThread.CurrentCulture))
                                {
                                    switchToAdd.IsValid = false;
                                }
                            }

                            break;

                        case PropertyType.ItemArray:
                            switchToAdd.Type = CommandLineToolSwitchType.ITaskItemArray;
                            switchToAdd.TaskItemArray = (ITaskItem[])value;
                            break;

                        case PropertyType.None:
                            break;

                        case PropertyType.String:
                            switchToAdd.Type = CommandLineToolSwitchType.String;
                            switchToAdd.ReverseSwitchValue = property.Prefix + property.ReverseSwitchName;
                            if (property.Values.Count > 0)
                            {
                                string enumValueToSelect = (string)value;

                                switchToAdd.Value = (string)value;
                                switchToAdd.AllowMultipleValues = true;

                                // Find the matching value in the enum
                                foreach (Value enumValue in property.Values)
                                {
                                    if (String.Equals(enumValue.Name, enumValueToSelect, StringComparison.OrdinalIgnoreCase))
                                    {
                                        if (!String.IsNullOrEmpty(enumValue.SwitchName))
                                        {
                                            switchToAdd.SwitchValue = enumValue.Prefix + enumValue.SwitchName;
                                        }
                                        else
                                        {
                                            switchToAdd = null;
                                            break;
                                        }
                                    }
                                }
                            }
                            else
                            {
                                switchToAdd.Value = (string)value;
                            }

                            break;

                        case PropertyType.StringArray:
                            switchToAdd.Type = CommandLineToolSwitchType.StringArray;
                            switchToAdd.StringList = (string[])value;
                            break;
                    }

                    if (switchToAdd != null)
                    {
                        _activeCommandLineToolSwitches[property.Name] = switchToAdd;
                    }
                }
            }
        }