Beispiel #1
0
        public static object ParseEnum <TValue>(string value, OptionBase option)
        {
            // Enum.TryParse is not available in all supported platforms, need to implement own parsing of enums.

            Type   thisType  = typeof(TValue);
            object enumValue = null;

            foreach (var entry in thisType.GetTypeInfo().GetEnumValues())
            {
                if (StringComparer.OrdinalIgnoreCase.Compare(entry.ToString(), value) == 0)
                {
                    enumValue = entry;
                    break;
                }
            }

            if (enumValue == null || enumValue.GetType() != thisType)
            {
                var invalidValueError = string.Format(CultureInfo.CurrentCulture, Shared.Resources.ErrorInvalidOptionValueFormat, value, option.Name);
                var supportedValues   = string.Format(CultureInfo.CurrentCulture, Shared.Resources.ErrorOnInvalidEnumSupportedValuesFormat, string.Join(", ", Enum.GetNames(typeof(TValue))));
                throw new ArgumentException(string.Concat(invalidValueError, " ", supportedValues));
            }

            return(enumValue);
        }
Beispiel #2
0
        public OptionBase Clone()
        {
            var other = new OptionBase((string)this.Name, this.Aliases.ToArray());

            CopyTo(other);
            return(other);
        }
        private static void SerializeOption(OptionBase option, JsonWriter writer, JsonSerializer serializer)
        {
            if (option.CanSerialize)
            {
                writer.WritePropertyName(option.SerializationName);

                // let the option serialize the value.
                option.Serialize(writer, serializer);
            }
        }
Beispiel #4
0
 public static void ThrowInvalidValueIf(bool condition, object value, OptionBase option)
 {
     if (option == null)
     {
         throw new ArgumentNullException(nameof(option));
     }
     if (condition)
     {
         throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, Shared.Resources.ErrorInvalidOptionValueFormat, value, option.Name));
     }
 }
        private object ParseNamespace(string stringValue, OptionBase option)
        {
            // format namespace as a mapping key/value pair:
            // "Namespace": "MyServiceReference1"
            var parts = stringValue.Split(',');

            OptionValueParser.ThrowInvalidValueIf(parts.Length > 2, stringValue, option);

            var valueKey = parts.Length == 1 ? "*" : parts[0];
            var valueVal = parts.Length == 1 ? parts[0] : parts[1];
            var value    = new KeyValuePair <string, string>(valueKey.Trim(), valueVal.Trim());

            return(value);
        }
Beispiel #6
0
        public static object GetTelemetryValue(OptionBase option)
        {
            // Avoid logging arbitrary strings input by the user!
            var value = option.Value;

            if (value == null)
            {
                value = "<null>";
            }
            else if (s_nonTelemetrySensitiveOptionIds.Any(id => option.HasSameId(id)))
            {
                var newValue = GetSerializationValue(value);
                if (newValue is List <object> list)
                {
                    value = list.Select(item => $"'{item}'").Aggregate((num, s) => num + ", " + s).ToString();
                }
            }
            else
            {
                var valueType = value.GetType();

                if (value is bool)
                {
                    value = value.ToString();
                }
                else if (valueType.GetTypeInfo().IsEnum)
                {
                    value = value.ToString();
                }
                else if (value is CultureInfo ci)
                {
                    value = ci.Name;
                }
                else if (value is FrameworkInfo fx)
                {
                    value = fx.FullName;
                }
                else if (value is ICollection collection)
                {
                    value = $"Count:{collection.Count}";
                }
                else
                {
                    value = $"<{valueType}>";
                }
            }

            return(value);
        }
Beispiel #7
0
        public virtual void CopyTo(OptionBase other)
        {
            // serialization name should not be copied as options may define different serialization names for their options.
            // other._serializationName = this._serializationName;

            // copy the canserialize field, not the property.  The field contains a hardcoded value while the property may be computed dynamically!
            other._canSerialize = _canSerialize;

            other.Value        = this.Value;
            other.DefaultValue = this.DefaultValue;

            other.ValueChanging = this.ValueChanging;
            other.ValueChanged  = this.ValueChanged;
            other.Serializing   = this.Serializing;
            other.Serialized    = this.Serialized;
            other.Deserializing = this.Deserializing;
            other.Deserialized  = this.Deserialized;
        }
Beispiel #8
0
        public static object CreateValue <TValue>(Func <object> GetValueFunc, OptionBase option, object originalValue)
        {
            object value = null;

            try
            {
                value = GetValueFunc();
            }
            catch (Exception ex)
            {
                if (Utils.IsFatalOrUnexpected(ex))
                {
                    throw;
                }
                ThrowInvalidValue(originalValue, option, ex);
            }

            ThrowInvalidValueIf(value.GetType() != typeof(TValue), value, option);
            return(value);
        }
 private static void ReadOption(OptionBase option, JToken jToken)
 {
     // let the option deserialize the value.
     option.Deserialize(jToken);
 }
Beispiel #10
0
 public static void ThrowInvalidValue(object value, OptionBase option, Exception innerException)
 {
     throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, Shared.Resources.ErrorInvalidOptionValueFormat, value, option.Name), innerException);
 }
Beispiel #11
0
        public static TValue ParseValue <TValue>(object value, OptionBase option)
        {
            ThrowInvalidValueIf(value == null, value, option);

            var valueType = typeof(TValue);

            if (value.GetType() != typeof(TValue))
            {
                // parsing is needed, the passed in value must be a string.

                var stringValue = value as string;
                ThrowInvalidValueIf(stringValue == null, value, option);

                if (valueType == typeof(bool))
                {
                    // Special-case boolean values as it is common to specify them as strings in the json file.
                    // { "myFlag" : "True" } will be resolved to {  "MyFlag" : true }
                    ThrowInvalidValueIf(!bool.TryParse(stringValue, out var boolValue), stringValue, option);
                    value = boolValue;
                }
                else if (valueType.GetTypeInfo().IsEnum)
                {
                    value = ParseEnum <TValue>(stringValue, option);
                }
                else if (valueType == typeof(CultureInfo))
                {
                    value = CreateValue <CultureInfo>(() => new CultureInfo(stringValue), option, stringValue);
                }
                else if (valueType == typeof(Uri))
                {
                    value = CreateValue <Uri>(() => new Uri(stringValue, UriKind.RelativeOrAbsolute), option, stringValue);
                }
                else if (valueType == typeof(DirectoryInfo))
                {
                    value = CreateValue <DirectoryInfo>(() => new DirectoryInfo(stringValue), option, stringValue);
                }
                else if (valueType == typeof(FileInfo))
                {
                    value = CreateValue <FileInfo>(() => new FileInfo(stringValue), option, stringValue);
                }
                else if (valueType == typeof(MSBuildProj))
                {
                    value = CreateValue <MSBuildProj>(() => MSBuildProj.FromPathAsync(stringValue, null, System.Threading.CancellationToken.None).Result, option, stringValue);
                }
                else if (valueType == typeof(FrameworkInfo))
                {
                    value = CreateValue <FrameworkInfo>(() => TargetFrameworkHelper.GetValidFrameworkInfo(stringValue), option, stringValue);
                }
                else if (valueType == typeof(ProjectDependency))
                {
                    value = CreateValue <ProjectDependency>(() => ProjectDependency.Parse(stringValue), option, stringValue);
                }
                else if (valueType == typeof(KeyValuePair <string, string>))
                {
                    value = ParseKeyValuePair(stringValue, option);
                }
                else
                {
                    ThrowInvalidValueIf(true, stringValue, option);
                }
            }

            return((TValue)value);
        }
Beispiel #12
0
        private static KeyValuePair <string, string> ParseKeyValuePair(string stringValue, OptionBase option)
        {
            // format namespace as a mapping key/value pair:
            // "Namespace": "MyServiceReference1"
            var parts = stringValue.Split(',');

            ThrowInvalidValueIf(parts.Length != 2, stringValue, option);

            var value = new KeyValuePair <string, string>(parts[0].Trim(), parts[1].Trim());

            return(value);
        }
 public bool TryGetOption(string optionId, out OptionBase option)
 {
     option = GetOption(optionId, throwOnMissing: false);
     return(option != null);
 }