BindingFlags.Public needed here as Exception.HResult is now public in .NET 4.5. This...
[mono.git] / mcs / class / System / System / UriTypeConverter.cs
1 //
2 // System.UriTypeConverter class
3 //
4 // Author:
5 //      Sebastien Pouliot  <sebastien@ximian.com>
6 //
7 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 #if NET_2_0
30
31 using System.ComponentModel;
32 #if !NET_2_1
33 using System.ComponentModel.Design.Serialization;
34 #endif
35 using System.Globalization;
36 using System.Reflection;
37
38 namespace System {
39
40         public
41 #if MOONLIGHT
42         sealed
43 #endif
44         class UriTypeConverter : TypeConverter {
45
46                 public UriTypeConverter ()
47                 {
48                 }
49
50
51                 private bool CanConvert (Type type)
52                 {
53                         if (type == typeof (string))
54                                 return true;
55                         if (type == typeof (Uri))
56                                 return true;
57 #if NET_2_1
58                         return false;
59 #else
60                         return (type == typeof (InstanceDescriptor));
61 #endif
62                 }
63
64                 public override bool CanConvertFrom (ITypeDescriptorContext context, Type sourceType)
65                 {
66                         if (sourceType == null)
67                                 throw new ArgumentNullException ("sourceType");
68
69                         return CanConvert (sourceType);
70                 }
71
72                 public override bool CanConvertTo (ITypeDescriptorContext context, Type destinationType)
73                 {
74                         if (destinationType == null)
75                                 return false;
76
77                         return CanConvert (destinationType);
78                 }
79
80                 public override object ConvertFrom (ITypeDescriptorContext context, CultureInfo culture, object value)
81                 {
82                         if (value == null) {
83 #if NET_2_1
84                                 throw new NotSupportedException (Locale.GetText ("Cannot convert from value."));
85 #else
86                                 throw new ArgumentNullException ("value");
87 #endif
88                         }
89
90                         if (!CanConvertFrom (context, value.GetType ()))
91                                 throw new NotSupportedException (Locale.GetText ("Cannot convert from value."));
92
93                         if (value is Uri)
94                                 return value;
95
96                         string s = (value as string);
97                         if (s != null)
98 #if NET_2_1
99                                 if (s == "")
100                                         return null;
101 #endif
102                                 return new Uri (s, UriKind.RelativeOrAbsolute);
103 #if !NET_2_1
104                         InstanceDescriptor id = (value as InstanceDescriptor);
105                         if (id != null) {
106                                 return id.Invoke ();
107                         }
108 #endif
109                         return base.ConvertFrom (context, culture, value);
110                 }
111
112                 public override object ConvertTo (ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
113                 {
114                         if (!CanConvertTo (context, destinationType))
115                                 throw new NotSupportedException (Locale.GetText ("Cannot convert to destination type."));
116
117                         Uri uri = (value as Uri);
118                         if (uri != null) {
119                                 if (destinationType == typeof (string))
120                                         return uri.ToString ();
121                                 if (destinationType == typeof (Uri))
122                                         return uri;
123 #if !NET_2_1
124                                 if (destinationType == typeof (InstanceDescriptor)) {
125                                         ConstructorInfo ci = typeof (Uri).GetConstructor (new Type [2] { typeof (string), typeof (UriKind) });
126                                         return new InstanceDescriptor (ci , new object [] { uri.ToString (), uri.IsAbsoluteUri ? UriKind.Absolute : UriKind.Relative });
127                                 }
128 #else
129                                 throw new NotSupportedException (Locale.GetText ("Cannot convert to destination type."));
130 #endif
131                         } else {
132 #if NET_2_1
133                                 throw new NotSupportedException (Locale.GetText ("Cannot convert to destination type."));
134 #endif
135                         }
136
137                         return base.ConvertTo (context, culture, value, destinationType);
138                 }
139
140 #if !NET_2_1
141                 public override bool IsValid (ITypeDescriptorContext context, object value)
142                 {
143                         if (value == null)
144                                 return false;
145
146                         // LAMESPEC: docs says that a string is valid only if we can create an URI
147                         // from it. However all strings seems to be accepted (see unit tests)
148                         return ((value is string) || (value is Uri));
149                 }
150 #endif
151         }
152 }
153
154 #endif