Fix null sessions in HttpContextWrapper.Session
[mono.git] / mcs / class / IKVM.Reflection / ParameterInfo.cs
1 /*
2   Copyright (C) 2009 Jeroen Frijters
3
4   This software is provided 'as-is', without any express or implied
5   warranty.  In no event will the authors be held liable for any damages
6   arising from the use of this software.
7
8   Permission is granted to anyone to use this software for any purpose,
9   including commercial applications, and to alter it and redistribute it
10   freely, subject to the following restrictions:
11
12   1. The origin of this software must not be misrepresented; you must not
13      claim that you wrote the original software. If you use this software
14      in a product, an acknowledgment in the product documentation would be
15      appreciated but is not required.
16   2. Altered source versions must be plainly marked as such, and must not be
17      misrepresented as being the original software.
18   3. This notice may not be removed or altered from any source distribution.
19
20   Jeroen Frijters
21   jeroen@frijters.net
22   
23 */
24 using System.Collections.Generic;
25
26 namespace IKVM.Reflection
27 {
28         public abstract class ParameterInfo : ICustomAttributeProvider
29         {
30                 // prevent external subclasses
31                 internal ParameterInfo()
32                 {
33                 }
34
35                 public sealed override bool Equals(object obj)
36                 {
37                         ParameterInfo other = obj as ParameterInfo;
38                         return other != null && other.Member == this.Member && other.Position == this.Position;
39                 }
40
41                 public sealed override int GetHashCode()
42                 {
43                         return this.Member.GetHashCode() * 1777 + this.Position;
44                 }
45
46                 public static bool operator ==(ParameterInfo p1, ParameterInfo p2)
47                 {
48                         return ReferenceEquals(p1, p2) || (!ReferenceEquals(p1, null) && p1.Equals(p2));
49                 }
50
51                 public static bool operator !=(ParameterInfo p1, ParameterInfo p2)
52                 {
53                         return !(p1 == p2);
54                 }
55
56                 public abstract string Name { get; }
57                 public abstract Type ParameterType { get; }
58                 public abstract ParameterAttributes Attributes { get; }
59                 public abstract int Position { get; }
60                 public abstract object RawDefaultValue { get; }
61                 public abstract CustomModifiers __GetCustomModifiers();
62                 public abstract bool __TryGetFieldMarshal(out FieldMarshal fieldMarshal);
63                 public abstract MemberInfo Member { get; }
64                 public abstract int MetadataToken { get; }
65                 internal abstract Module Module { get; }
66
67                 public Type[] GetOptionalCustomModifiers()
68                 {
69                         return __GetCustomModifiers().GetOptional();
70                 }
71
72                 public Type[] GetRequiredCustomModifiers()
73                 {
74                         return __GetCustomModifiers().GetRequired();
75                 }
76
77                 public bool IsIn
78                 {
79                         get { return (Attributes & ParameterAttributes.In) != 0; }
80                 }
81
82                 public bool IsOut
83                 {
84                         get { return (Attributes & ParameterAttributes.Out) != 0; }
85                 }
86
87                 public bool IsLcid
88                 {
89                         get { return (Attributes & ParameterAttributes.Lcid) != 0; }
90                 }
91
92                 public bool IsRetval
93                 {
94                         get { return (Attributes & ParameterAttributes.Retval) != 0; }
95                 }
96
97                 public bool IsOptional
98                 {
99                         get { return (Attributes & ParameterAttributes.Optional) != 0; }
100                 }
101
102                 public bool IsDefined(Type attributeType, bool inherit)
103                 {
104                         return CustomAttributeData.__GetCustomAttributes(this, attributeType, inherit).Count != 0;
105                 }
106
107                 public IList<CustomAttributeData> __GetCustomAttributes(Type attributeType, bool inherit)
108                 {
109                         return CustomAttributeData.__GetCustomAttributes(this, attributeType, inherit);
110                 }
111         }
112
113         sealed class ParameterInfoWrapper : ParameterInfo
114         {
115                 private readonly MemberInfo member;
116                 private readonly ParameterInfo forward;
117
118                 internal ParameterInfoWrapper(MemberInfo member, ParameterInfo forward)
119                 {
120                         this.member = member;
121                         this.forward = forward;
122                 }
123
124                 public override string Name
125                 {
126                         get { return forward.Name; }
127                 }
128
129                 public override Type ParameterType
130                 {
131                         get { return forward.ParameterType; }
132                 }
133
134                 public override ParameterAttributes Attributes
135                 {
136                         get { return forward.Attributes; }
137                 }
138
139                 public override int Position
140                 {
141                         get { return forward.Position; }
142                 }
143
144                 public override object RawDefaultValue
145                 {
146                         get { return forward.RawDefaultValue; }
147                 }
148
149                 public override CustomModifiers __GetCustomModifiers()
150                 {
151                         return forward.__GetCustomModifiers();
152                 }
153
154                 public override bool __TryGetFieldMarshal(out FieldMarshal fieldMarshal)
155                 {
156                         return forward.__TryGetFieldMarshal(out fieldMarshal);
157                 }
158
159                 public override MemberInfo Member
160                 {
161                         get { return member; }
162                 }
163
164                 public override int MetadataToken
165                 {
166                         get { return forward.MetadataToken; }
167                 }
168
169                 internal override Module Module
170                 {
171                         get { return member.Module; }
172                 }
173         }
174 }