2009-12-12 Rodrigo Kumpera <rkumpera@novell.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.Reflection;
35 using System.Runtime.CompilerServices;
36 using System.Runtime.InteropServices;
37 using System.Runtime.Serialization;
38
39 namespace System.Reflection {
40
41         internal struct MonoEventInfo {
42                 public Type declaring_type;
43                 public Type reflected_type;
44                 public String name;
45                 public MethodInfo add_method;
46                 public MethodInfo remove_method;
47                 public MethodInfo raise_method;
48                 public EventAttributes attrs;
49                 public MethodInfo[] other_methods;
50                 
51                 [MethodImplAttribute(MethodImplOptions.InternalCall)]
52                 static extern void get_event_info (MonoEvent ev, out MonoEventInfo info);
53
54                 internal static MonoEventInfo GetEventInfo (MonoEvent ev)
55                 {
56                         MonoEventInfo mei;
57                         MonoEventInfo.get_event_info (ev, out mei);
58                         return mei;
59                 }
60         }
61
62         [Serializable]
63         internal sealed class MonoEvent: EventInfo, ISerializable
64         {
65 #pragma warning disable 169
66                 IntPtr klass;
67                 IntPtr handle;
68 #pragma warning restore 169
69
70                 public override EventAttributes Attributes {
71                         get {
72                                 return MonoEventInfo.GetEventInfo (this).attrs;
73                         }
74                 }
75
76                 public override MethodInfo GetAddMethod (bool nonPublic)
77                 {
78                         MonoEventInfo info = MonoEventInfo.GetEventInfo (this);
79                         if (nonPublic || (info.add_method != null && info.add_method.IsPublic))
80                                 return info.add_method;
81                         return null;
82                 }
83
84                 public override MethodInfo GetRaiseMethod (bool nonPublic)
85                 {
86                         MonoEventInfo info = MonoEventInfo.GetEventInfo (this);
87                         if (nonPublic || (info.raise_method != null && info.raise_method.IsPublic))
88                                 return info.raise_method;
89                         return null;
90                 }
91
92                 public override MethodInfo GetRemoveMethod (bool nonPublic)
93                 {
94                         MonoEventInfo info = MonoEventInfo.GetEventInfo (this);
95                         if (nonPublic || (info.remove_method != null && info.remove_method.IsPublic))
96                                 return info.remove_method;
97                         return null;
98                 }
99
100                 public override MethodInfo[] GetOtherMethods (bool nonPublic)
101                 {
102                         MonoEventInfo info = MonoEventInfo.GetEventInfo (this);
103                         if (nonPublic)
104                                 return info.other_methods;
105                         int num_public = 0;
106                         foreach (MethodInfo m in info.other_methods) {
107                                 if (m.IsPublic)
108                                         num_public++;
109                         }
110                         if (num_public == info.other_methods.Length)
111                                 return info.other_methods;
112                         MethodInfo[] res = new MethodInfo [num_public];
113                         num_public = 0;
114                         foreach (MethodInfo m in info.other_methods) {
115                                 if (m.IsPublic)
116                                         res [num_public++] = m;
117                         }
118                         return res;
119                 }
120
121                 public override Type DeclaringType {
122                         get {
123                                 return MonoEventInfo.GetEventInfo (this).declaring_type;
124                         }
125                 }
126
127                 public override Type ReflectedType {
128                         get {
129                                 return MonoEventInfo.GetEventInfo (this).reflected_type;
130                         }
131                 }
132
133                 public override string Name {
134                         get {
135                                 return MonoEventInfo.GetEventInfo (this).name;
136                         }
137                 }
138
139                 public override string ToString ()
140                 {
141                         return EventHandlerType + " " + Name;
142                 }
143
144                 public override bool IsDefined (Type attributeType, bool inherit)
145                 {
146                         return MonoCustomAttrs.IsDefined (this, attributeType, inherit);
147                 }
148
149                 public override object[] GetCustomAttributes( bool inherit)
150                 {
151                         return MonoCustomAttrs.GetCustomAttributes (this, inherit);
152                 }
153
154                 public override object[] GetCustomAttributes( Type attributeType, bool inherit)
155                 {
156                         return MonoCustomAttrs.GetCustomAttributes (this, attributeType, inherit);
157                 }
158
159                 // ISerializable
160                 public void GetObjectData (SerializationInfo info, StreamingContext context) 
161                 {
162                         MemberInfoSerializationHolder.Serialize (info, Name, ReflectedType,
163                                 ToString(), MemberTypes.Event);
164                 }
165         }
166 }