make IsNullable an extension method
[mono.git] / mcs / class / System.Core / System.Linq.Expressions / Extensions.cs
1 //
2 // Extensions.cs
3 //
4 // Author:
5 //   Jb Evain (jbevain@novell.com)
6 //
7 // (C) 2008 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;
30 using System.Reflection;
31 using System.Reflection.Emit;
32 using System.Runtime.CompilerServices;
33
34 namespace System.Linq.Expressions {
35
36         static class Extensions {
37
38                 public static bool IsGenericInstanceOf (this Type self, Type type)
39                 {
40                         if (!self.IsGenericType)
41                                 return false;
42
43                         return self.GetGenericTypeDefinition () == type;
44                 }
45
46                 public static bool IsNullable (this Type self)
47                 {
48                         return self.IsGenericInstanceOf (typeof (Nullable<>));
49                 }
50
51                 public static bool IsGenericImplementationOf (this Type self, Type type)
52                 {
53                         foreach (Type iface in self.GetInterfaces ())
54                                 if (iface.IsGenericInstanceOf (type))
55                                         return true;
56                         return false;
57                 }
58
59                 public static bool IsAssignableTo (this Type self, Type type)
60                 {
61                         return type.IsAssignableFrom (self) ||
62                                 ArrayTypeIsAssignableTo (self, type);
63                 }
64
65                 public static Type GetFirstGenericArgument (this Type self)
66                 {
67                         return self.GetGenericArguments () [0];
68                 }
69
70                 public static Type MakeGenericTypeFrom (this Type self, Type type)
71                 {
72                         return self.MakeGenericType (type.GetGenericArguments ());
73                 }
74
75                 public static MethodInfo MakeGenericMethodFrom (this MethodInfo self, MethodInfo method)
76                 {
77                         return self.MakeGenericMethod (method.GetGenericArguments ());
78                 }
79
80                 public static Type [] GetParameterTypes (this MethodBase self)
81                 {
82                         var parameters = self.GetParameters ();
83                         var types = new Type [parameters.Length];
84
85                         for (int i = 0; i < types.Length; i++)
86                                 types [i] = parameters [i].ParameterType;
87
88                         return types;
89                 }
90
91                 static bool ArrayTypeIsAssignableTo (Type type, Type candidate)
92                 {
93                         if (!type.IsArray || !candidate.IsArray)
94                                 return false;
95
96                         if (type.GetArrayRank () != candidate.GetArrayRank ())
97                                 return false;
98
99                         return type.GetElementType ().IsAssignableTo (candidate.GetElementType ());
100                 }
101
102                 public static void OnFieldOrProperty (this MemberInfo self,
103                         Action<FieldInfo> onfield, Action<PropertyInfo> onprop)
104                 {
105                         switch (self.MemberType) {
106                         case MemberTypes.Field:
107                                 onfield ((FieldInfo) self);
108                                 return;
109                         case MemberTypes.Property:
110                                 onprop ((PropertyInfo) self);
111                                 return;
112                         default:
113                                 throw new ArgumentException ();
114                         }
115                 }
116
117                 public static T OnFieldOrProperty<T> (this MemberInfo self,
118                         Func<FieldInfo, T> onfield, Func<PropertyInfo, T> onprop)
119                 {
120                         switch (self.MemberType) {
121                         case MemberTypes.Field:
122                                 return onfield ((FieldInfo) self);
123                         case MemberTypes.Property:
124                                 return onprop ((PropertyInfo) self);
125                         default:
126                                 throw new ArgumentException ();
127                         }
128                 }
129
130                 public static Type MakeStrongBoxType (this Type self)
131                 {
132                         return typeof (StrongBox<>).MakeGenericType (self);
133                 }
134         }
135 }