ServicePoint: Use DateTime.UtcNow internally, which avoids looking up the timezone...
[mono.git] / mcs / class / System / System.ComponentModel / BaseNumberConverter.cs
1 //
2 // System.ComponentModel.BaseNumberConverter.cs
3 //
4 // Authors:
5 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
6 //
7 // (C) 2002/2003 Ximian, Inc (http://www.ximian.com)
8 // (C) 2003 Andreas Nahr
9 //
10
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31
32 using System;
33 using System.Globalization;
34
35 namespace System.ComponentModel
36 {
37         public abstract class BaseNumberConverter : TypeConverter
38         {
39                 internal Type InnerType;
40
41                 protected BaseNumberConverter()
42                 {
43                 }
44
45                 internal abstract bool SupportHex {
46                         get;
47                 }
48
49                 public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
50                 {
51                         return sourceType == typeof (string) || base.CanConvertFrom (context, sourceType);
52                 }
53
54                 public override bool CanConvertTo(ITypeDescriptorContext context, Type t)
55                 {
56                         return t.IsPrimitive || base.CanConvertTo (context, t);
57                 }
58
59                 public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
60                 {
61                         if (culture == null)
62                                 culture = CultureInfo.CurrentCulture;
63
64                         string text = value as string;
65                         if (text != null) {
66                                 try {
67                                         if (SupportHex) {
68                                                 if (text.Length >= 1 && text[0] == '#') {
69                                                         return ConvertFromString (text.Substring (1), 16);
70                                                 }
71
72                                                 if (text.StartsWith ("0x") || text.StartsWith ("0X")) {
73                                                         return ConvertFromString (text, 16);
74                                                 }
75                                         }
76
77                                         NumberFormatInfo numberFormatInfo = (NumberFormatInfo) culture.GetFormat(typeof(NumberFormatInfo));
78                                         return ConvertFromString (text, numberFormatInfo);
79                                 } catch (Exception e) {
80                                         // LAMESPEC MS wraps the actual exception in an Exception
81                                         throw new Exception (value.ToString() + " is not a valid "
82                                                 + "value for " + InnerType.Name + ".", e);
83                                 }
84                         }
85
86                         return base.ConvertFrom (context, culture, value);
87                 }
88
89                 public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture,
90                                                  object value, Type destinationType)
91                 {
92                         if (value == null)
93                                 throw new ArgumentNullException ("value");
94
95                         if (culture == null)
96                                 culture = CultureInfo.CurrentCulture;
97
98                         if (destinationType == typeof (string) && value is IConvertible)
99                                 return ((IConvertible) value).ToType (destinationType, culture);
100
101                         if (destinationType.IsPrimitive)
102                                 return Convert.ChangeType (value, destinationType, culture);
103
104                         return base.ConvertTo (context, culture, value, destinationType);
105                 }
106
107                 internal abstract string ConvertToString (object value, NumberFormatInfo format);
108
109                 internal abstract object ConvertFromString (string value, NumberFormatInfo format);
110
111                 internal virtual object ConvertFromString (string value, int fromBase)
112                 {
113                         if (SupportHex) {
114                                 throw new NotImplementedException ();
115                         } else {
116                                 throw new InvalidOperationException ();
117                         }
118                 }
119         }
120 }