New tests.
[mono.git] / mcs / class / System.Xaml / System.Windows.Markup / DateTimeValueSerializer.cs
1 //
2 // Copyright (C) 2010 Novell Inc. http://novell.com
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining
5 // a copy of this software and associated documentation files (the
6 // "Software"), to deal in the Software without restriction, including
7 // without limitation the rights to use, copy, modify, merge, publish,
8 // distribute, sublicense, and/or sell copies of the Software, and to
9 // permit persons to whom the Software is furnished to do so, subject to
10 // the following conditions:
11 // 
12 // The above copyright notice and this permission notice shall be
13 // included in all copies or substantial portions of the Software.
14 // 
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 //
23 using System;
24 using System.Collections;
25 using System.Collections.Generic;
26 using System.ComponentModel;
27 using System.Globalization;
28
29 namespace System.Windows.Markup
30 {
31         [System.Runtime.CompilerServices.TypeForwardedFrom (Consts.AssemblyWindowsBase)]
32         public class DateTimeValueSerializer : ValueSerializer
33         {
34                 const DateTimeStyles styles = DateTimeStyles.RoundtripKind | DateTimeStyles.NoCurrentDateDefault | DateTimeStyles.AllowLeadingWhite | DateTimeStyles.AllowTrailingWhite;
35
36                 public override bool CanConvertFromString (string value, IValueSerializerContext context)
37                 {
38                         return true; // documented
39                 }
40
41                 public override bool CanConvertToString (object value, IValueSerializerContext context)
42                 {
43                         return value is DateTime;
44                 }
45
46                 public override object ConvertFromString (string value, IValueSerializerContext context)
47                 {
48                         if (value == null)
49                                 throw new NotSupportedException ();
50                         if (value.Length == 0)
51                                 return DateTime.MinValue;
52                         return DateTime.Parse (value, CultureInfo.InvariantCulture, styles);
53                 }
54
55                 public override string ConvertToString (object value,     IValueSerializerContext context)
56                 {
57                         if (!(value is DateTime))
58                                 throw new NotSupportedException ();
59                         DateTime dt = (DateTime) value;
60                         if (dt.Millisecond != 0)
61                                 return dt.ToString ("yyyy-MM-dd'T'HH:mm:ss.F");
62                         if (dt.Second != 0)
63                                 return dt.ToString ("yyyy-MM-dd'T'HH:mm:ss");
64                         if (dt.Minute != 0)
65                                 return dt.ToString ("yyyy-MM-dd'T'HH:mm");
66                         else
67                                 return dt.ToString ("yyyy-MM-dd");
68                 }
69         }
70 }