|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.ComponentModel.Design.Serialization;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.Reflection;
namespace System.ComponentModel
{
/// <summary>
/// Provides a type converter to convert <see cref='System.DateTime'/>
/// objects to and from various other representations.
/// </summary>
public class DateTimeConverter : TypeConverter
{
/// <summary>
/// Gets a value indicating whether this converter can convert an
/// object in the given source type to a <see cref='System.DateTime'/>
/// object using the specified context.
/// </summary>
public override bool CanConvertFrom(ITypeDescriptorContext? context, Type sourceType)
{
return sourceType == typeof(string) || base.CanConvertFrom(context, sourceType);
}
/// <summary>
/// Gets a value indicating whether this converter can convert an object
/// to the given destination type using the context.
/// </summary>
public override bool CanConvertTo(ITypeDescriptorContext? context, [NotNullWhen(true)] Type? destinationType)
{
return destinationType == typeof(InstanceDescriptor) || base.CanConvertTo(context, destinationType);
}
/// <summary>
/// Converts the given value object to a <see cref='System.DateTime'/> object.
/// </summary>
public override object? ConvertFrom(ITypeDescriptorContext? context, CultureInfo? culture, object value)
{
if (value is string text)
{
text = text.Trim();
if (text.Length == 0)
{
return DateTime.MinValue;
}
try
{
// See if we have a culture info to parse with. If so, then use it.
DateTimeFormatInfo? formatInfo = null;
if (culture != null)
{
formatInfo = (DateTimeFormatInfo?)culture.GetFormat(typeof(DateTimeFormatInfo));
}
if (formatInfo != null)
{
return DateTime.Parse(text, formatInfo);
}
else
{
return DateTime.Parse(text, culture);
}
}
catch (FormatException e)
{
throw new FormatException(SR.Format(SR.ConvertInvalidPrimitive, (string)value, nameof(DateTime)), e);
}
}
return base.ConvertFrom(context, culture, value);
}
/// <summary>
/// Converts the given value object to a <see cref='System.DateTime'/>
/// object using the arguments.
/// </summary>
public override object? ConvertTo(ITypeDescriptorContext? context, CultureInfo? culture, object? value, Type destinationType)
{
if (destinationType == typeof(string) && value is DateTime)
{
DateTime dt = (DateTime)value;
if (dt == DateTime.MinValue)
{
return string.Empty;
}
culture ??= CultureInfo.CurrentCulture;
DateTimeFormatInfo? formatInfo = (DateTimeFormatInfo?)culture.GetFormat(typeof(DateTimeFormatInfo));
if (culture == CultureInfo.InvariantCulture)
{
if (dt.TimeOfDay.TotalSeconds == 0)
{
return dt.ToString("yyyy-MM-dd", culture);
}
else
{
return dt.ToString(culture);
}
}
string format;
if (dt.TimeOfDay.TotalSeconds == 0)
{
format = formatInfo!.ShortDatePattern;
}
else
{
format = formatInfo!.ShortDatePattern + " " + formatInfo.ShortTimePattern;
}
return dt.ToString(format, culture);
}
if (destinationType == typeof(InstanceDescriptor) && value is DateTime)
{
DateTime dt = (DateTime)value;
if (dt.Ticks == 0)
{
return new InstanceDescriptor(
typeof(DateTime).GetConstructor(new Type[] { typeof(long) }),
new object[] { dt.Ticks }
);
}
return new InstanceDescriptor(
typeof(DateTime).GetConstructor(new Type[] { typeof(int), typeof(int), typeof(int), typeof(int), typeof(int), typeof(int), typeof(int) }),
new object[] { dt.Year, dt.Month, dt.Day, dt.Hour, dt.Minute, dt.Second, dt.Millisecond }
);
}
return base.ConvertTo(context, culture, value, destinationType);
}
}
}
|