blob: 6961729970b842132c65bde581dc9e017178feed [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace Apache.Ignite.Core.Impl.Common
{
using System;
using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
/// <summary>
/// Object-string converter.
/// </summary>
internal class ObjectStringConverter : TypeConverter
{
/// <summary>
/// Default instance.
/// </summary>
public static readonly ObjectStringConverter Instance = new ObjectStringConverter();
/// <summary>
/// Returns whether this converter can convert an object of the given type to the type of this converter,
/// using the specified context.
/// </summary>
/// <param name="context">An <see cref="ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="sourceType">A <see cref="Type" /> that represents the type you want to convert from.</param>
/// <returns>
/// true if this converter can perform the conversion; otherwise, false.
/// </returns>
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
{
return sourceType == typeof(string);
}
/// <summary>
/// Returns whether this converter can convert the object to the specified type, using the specified context.
/// </summary>
/// <param name="context">An <see cref="ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="destinationType">
/// A <see cref="Type" /> that represents the type you want to convert to.
/// </param>
/// <returns>
/// true if this converter can perform the conversion; otherwise, false.
/// </returns>
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
{
return destinationType == typeof(string);
}
/// <summary>
/// Converts the given object to the type of this converter,
/// using the specified context and culture information.
/// </summary>
/// <param name="context">An <see cref="ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="culture">The <see cref="CultureInfo" /> to use as the current culture.</param>
/// <param name="value">The <see cref="Object" /> to convert.</param>
/// <returns>
/// An <see cref="Object" /> that represents the converted value.
/// </returns>
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
{
return value == null ? null : value.ToString();
}
/// <summary>
/// Converts the given value object to the specified type, using the specified context and culture information.
/// </summary>
/// <param name="context">An <see cref="ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="culture">
/// A <see cref="CultureInfo" />. If null is passed, the current culture is assumed.
/// </param>
/// <param name="value">The <see cref="object" /> to convert.</param>
/// <param name="destinationType">
/// The <see cref="Type" /> to convert the <paramref name="value" /> parameter to.
/// </param>
/// <returns>
/// An <see cref="object" /> that represents the converted value.
/// </returns>
[SuppressMessage("Microsoft.Globalization", "CA1308:NormalizeStringsToUppercase")]
[SuppressMessage("Microsoft.Design", "CA1062:Validate arguments of public methods", MessageId = "2")]
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value,
Type destinationType)
{
if (destinationType == typeof (string))
return value.ToString();
return base.ConvertTo(context, culture, value, destinationType);
}
}
}