Wed Feb 24 15:47:16 CET 2010 Paolo Molaro <lupus@ximian.com>
[mono.git] / mcs / class / corlib / System.Reflection / MonoEvent.cs
1 //
2 // System.Reflection/MonoEvent.cs
3 //
4 // Author:
5 //   Paolo Molaro (lupus@ximian.com)
6 //
7 // (C) 2001 Ximian, Inc.  http://www.ximian.com
8 //
9
10 //
11 // Copyright (C) 2004, 2009 Novell, Inc (http://www.novell.com)
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 using System;
34 using System.Collections.Generic;
35 using System.Reflection;
36 using System.Runtime.CompilerServices;
37 using System.Runtime.InteropServices;
38 using System.Runtime.Serialization;
39
40 namespace System.Reflection {
41
42         internal struct MonoEventInfo {
43                 public Type declaring_type;
44                 public Type reflected_type;
45                 public String name;
46                 public MethodInfo add_method;
47                 public MethodInfo remove_method;
48                 public MethodInfo raise_method;
49                 public EventAttributes attrs;
50                 public MethodInfo[] other_methods;
51                 
52                 [MethodImplAttribute(MethodImplOptions.InternalCall)]
53                 static extern void get_event_info (MonoEvent ev, out MonoEventInfo info);
54
55                 internal static MonoEventInfo GetEventInfo (MonoEvent ev)
56                 {
57                         MonoEventInfo mei;
58                         MonoEventInfo.get_event_info (ev, out mei);
59                         return mei;
60                 }
61         }
62
63         [Serializable]
64         internal sealed class MonoEvent: EventInfo, ISerializable
65         {
66 #pragma warning disable 169
67                 IntPtr klass;
68                 IntPtr handle;
69 #pragma warning restore 169
70
71                 public override EventAttributes Attributes {
72                         get {
73                                 return MonoEventInfo.GetEventInfo (this).attrs;
74                         }
75                 }
76
77                 public override MethodInfo GetAddMethod (bool nonPublic)
78                 {
79                         MonoEventInfo info = MonoEventInfo.GetEventInfo (this);
80                         if (nonPublic || (info.add_method != null && info.add_method.IsPublic))
81                                 return info.add_method;
82                         return null;
83                 }
84
85                 public override MethodInfo GetRaiseMethod (bool nonPublic)
86                 {
87                         MonoEventInfo info = MonoEventInfo.GetEventInfo (this);
88                         if (nonPublic || (info.raise_method != null && info.raise_method.IsPublic))
89                                 return info.raise_method;
90                         return null;
91                 }
92
93                 public override MethodInfo GetRemoveMethod (bool nonPublic)
94                 {
95                         MonoEventInfo info = MonoEventInfo.GetEventInfo (this);
96                         if (nonPublic || (info.remove_method != null && info.remove_method.IsPublic))
97                                 return info.remove_method;
98                         return null;
99                 }
100
101                 public override MethodInfo[] GetOtherMethods (bool nonPublic)
102                 {
103                         MonoEventInfo info = MonoEventInfo.GetEventInfo (this);
104                         if (nonPublic)
105                                 return info.other_methods;
106                         int num_public = 0;
107                         foreach (MethodInfo m in info.other_methods) {
108                                 if (m.IsPublic)
109                                         num_public++;
110                         }
111                         if (num_public == info.other_methods.Length)
112                                 return info.other_methods;
113                         MethodInfo[] res = new MethodInfo [num_public];
114                         num_public = 0;
115                         foreach (MethodInfo m in info.other_methods) {
116                                 if (m.IsPublic)
117                                         res [num_public++] = m;
118                         }
119                         return res;
120                 }
121
122                 public override Type DeclaringType {
123                         get {
124                                 return MonoEventInfo.GetEventInfo (this).declaring_type;
125                         }
126                 }
127
128                 public override Type ReflectedType {
129                         get {
130                                 return MonoEventInfo.GetEventInfo (this).reflected_type;
131                         }
132                 }
133
134                 public override string Name {
135                         get {
136                                 return MonoEventInfo.GetEventInfo (this).name;
137                         }
138                 }
139
140                 public override string ToString ()
141                 {
142                         return EventHandlerType + " " + Name;
143                 }
144
145                 public override bool IsDefined (Type attributeType, bool inherit)
146                 {
147                         return MonoCustomAttrs.IsDefined (this, attributeType, inherit);
148                 }
149
150                 public override object[] GetCustomAttributes( bool inherit)
151                 {
152                         return MonoCustomAttrs.GetCustomAttributes (this, inherit);
153                 }
154
155                 public override object[] GetCustomAttributes( Type attributeType, bool inherit)
156                 {
157                         return MonoCustomAttrs.GetCustomAttributes (this, attributeType, inherit);
158                 }
159
160                 // ISerializable
161                 public void GetObjectData (SerializationInfo info, StreamingContext context) 
162                 {
163                         MemberInfoSerializationHolder.Serialize (info, Name, ReflectedType,
164                                 ToString(), MemberTypes.Event);
165                 }
166
167 #if NET_4_0
168                 public override IList<CustomAttributeData> GetCustomAttributesData () {
169                         return CustomAttributeData.GetCustomAttributes (this);
170                 }
171 #endif
172         }
173 }