Merge pull request #2310 from lambdageek/dev/bug-36305
[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 using System.ComponentModel;
30 #if !NET_2_1
31 using System.ComponentModel.Design.Serialization;
32 #endif
33 using System.Globalization;
34 using System.Reflection;
35
36 namespace System {
37
38         public
39         class UriTypeConverter : TypeConverter {
40
41                 public UriTypeConverter ()
42                 {
43                 }
44
45
46                 private bool CanConvert (Type type)
47                 {
48                         if (type == typeof (string))
49                                 return true;
50                         if (type == typeof (Uri))
51                                 return true;
52 #if NET_2_1
53                         return false;
54 #else
55                         return (type == typeof (InstanceDescriptor));
56 #endif
57                 }
58
59                 public override bool CanConvertFrom (ITypeDescriptorContext context, Type sourceType)
60                 {
61                         if (sourceType == null)
62                                 throw new ArgumentNullException ("sourceType");
63
64                         return CanConvert (sourceType);
65                 }
66
67                 public override bool CanConvertTo (ITypeDescriptorContext context, Type destinationType)
68                 {
69                         if (destinationType == null)
70                                 return false;
71
72                         return CanConvert (destinationType);
73                 }
74
75                 public override object ConvertFrom (ITypeDescriptorContext context, CultureInfo culture, object value)
76                 {
77                         if (value == null) {
78 #if NET_2_1
79                                 throw new NotSupportedException (Locale.GetText ("Cannot convert from value."));
80 #else
81                                 throw new ArgumentNullException ("value");
82 #endif
83                         }
84
85                         if (!CanConvertFrom (context, value.GetType ()))
86                                 throw new NotSupportedException (Locale.GetText ("Cannot convert from value."));
87
88                         if (value is Uri)
89                                 return value;
90
91                         string s = (value as string);
92                         if (s != null) {
93 #if NET_2_1
94                                 if (s == "")
95                                         return null;
96 #endif
97                                 return new Uri (s, UriKind.RelativeOrAbsolute);
98                         }
99
100 #if !NET_2_1
101                         InstanceDescriptor id = (value as InstanceDescriptor);
102                         if (id != null) {
103                                 return id.Invoke ();
104                         }
105 #endif
106                         return base.ConvertFrom (context, culture, value);
107                 }
108
109                 public override object ConvertTo (ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
110                 {
111                         if (!CanConvertTo (context, destinationType))
112                                 throw new NotSupportedException (Locale.GetText ("Cannot convert to destination type."));
113
114                         Uri uri = (value as Uri);
115                         if (uri != null) {
116                                 if (destinationType == typeof (string))
117                                         return uri.ToString ();
118                                 if (destinationType == typeof (Uri))
119                                         return uri;
120 #if !NET_2_1
121                                 if (destinationType == typeof (InstanceDescriptor)) {
122                                         ConstructorInfo ci = typeof (Uri).GetConstructor (new Type [2] { typeof (string), typeof (UriKind) });
123                                         return new InstanceDescriptor (ci , new object [] { uri.ToString (), uri.IsAbsoluteUri ? UriKind.Absolute : UriKind.Relative });
124                                 }
125 #else
126                                 throw new NotSupportedException (Locale.GetText ("Cannot convert to destination type."));
127 #endif
128                         }
129
130 #if NET_2_1
131                         throw new NotSupportedException (Locale.GetText ("Cannot convert to destination type."));
132 #else
133                         return base.ConvertTo (context, culture, value, destinationType);
134 #endif
135                 }
136
137 #if !NET_2_1
138                 public override bool IsValid (ITypeDescriptorContext context, object value)
139                 {
140                         if (value == null)
141                                 return false;
142
143                         // LAMESPEC: docs says that a string is valid only if we can create an URI
144                         // from it. However all strings seems to be accepted (see unit tests)
145                         return ((value is string) || (value is Uri));
146                 }
147 #endif
148         }
149 }