New test.
[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                         if (sourceType == typeof (string)) 
52                                 return true;
53                         return base.CanConvertFrom (context, sourceType);
54                 }
55
56                 public override bool CanConvertTo(ITypeDescriptorContext context, Type t)
57                 {
58                         if (t == typeof (string))
59                                 return true;
60
61                         return base.CanConvertTo (context, t);
62                 }
63
64                 public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
65                 {
66                         if (culture == null)
67                                 culture = CultureInfo.CurrentCulture;
68
69                         string text = value as string;
70                         if (text != null) {
71                                 try {
72                                         if (SupportHex) {
73                                                 if (text.Length >= 1 && text[0] == '#') {
74                                                         return ConvertFromString (text.Substring (1), 16);
75                                                 }
76
77                                                 if (text.StartsWith ("0x") || text.StartsWith ("0X")) {
78                                                         return ConvertFromString (text, 16);
79                                                 }
80                                         }
81
82                                         NumberFormatInfo numberFormatInfo = (NumberFormatInfo) culture.GetFormat(typeof(NumberFormatInfo));
83                                         return ConvertFromString (text, numberFormatInfo);
84                                 } catch (Exception e) {
85                                         // LAMESPEC MS wraps the actual exception in an Exception
86                                         throw new Exception (value.ToString() + " is not a valid "
87                                                 + "value for " + InnerType.Name + ".", e);
88                                 }
89                         }
90
91                         return base.ConvertFrom (context, culture, value);
92                 }
93
94                 public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture,
95                                                  object value, Type destinationType)
96                 {
97                         if (value == null)
98                                 throw new ArgumentNullException ("value");
99
100                         if (culture == null)
101                                 culture = CultureInfo.CurrentCulture;
102
103 #if NET_2_0
104                         if (destinationType == typeof (string) && value is IConvertible)
105                                 return ((IConvertible) value).ToType (destinationType, culture);
106 #else
107                         if (destinationType == typeof (string) && value.GetType () == InnerType) {
108                                 NumberFormatInfo numberFormatInfo = (NumberFormatInfo) culture.GetFormat (typeof (NumberFormatInfo));
109                                 return ConvertToString (value, numberFormatInfo);
110                         }
111 #endif
112
113                         return base.ConvertTo (context, culture, value, destinationType);
114                 }
115
116                 internal abstract string ConvertToString (object value, NumberFormatInfo format);
117
118                 internal abstract object ConvertFromString (string value, NumberFormatInfo format);
119
120                 internal virtual object ConvertFromString (string value, int fromBase)
121                 {
122                         if (SupportHex) {
123                                 throw new NotImplementedException ();
124                         } else {
125                                 throw new InvalidOperationException ();
126                         }
127                 }
128         }
129 }