1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
|
//
// System.MonoType
//
// Sean MacIsaac (macisaac@ximian.com)
// Paolo Molaro (lupus@ximian.com)
// Patrik Torstensson (patrik.torstensson@labs2.com)
//
// (C) 2001 Ximian, Inc.
//
//
// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System.Reflection;
using System.Reflection.Emit;
using System.Collections;
using System.Runtime.CompilerServices;
using System.Globalization;
using System.Runtime.Serialization;
namespace System.Reflection
{
internal class MonoGenericClass : MonoType
{
protected Type generic_type;
bool initialized;
internal MonoGenericClass ()
: base (null)
{
// this should not be used
throw new InvalidOperationException ();
}
[MethodImplAttribute(MethodImplOptions.InternalCall)]
protected extern void initialize (MethodInfo[] methods, ConstructorInfo[] ctors, FieldInfo[] fields, PropertyInfo[] properties, EventInfo[] events);
[MethodImplAttribute(MethodImplOptions.InternalCall)]
extern MethodInfo GetCorrespondingInflatedMethod (MethodInfo generic);
[MethodImplAttribute(MethodImplOptions.InternalCall)]
extern ConstructorInfo GetCorrespondingInflatedConstructor (ConstructorInfo generic);
[MethodImplAttribute(MethodImplOptions.InternalCall)]
extern FieldInfo GetCorrespondingInflatedField (string generic);
[MethodImplAttribute(MethodImplOptions.InternalCall)]
protected extern MethodInfo[] GetMethods_internal (Type reflected_type);
[MethodImplAttribute(MethodImplOptions.InternalCall)]
protected extern ConstructorInfo[] GetConstructors_internal (Type reflected_type);
[MethodImplAttribute(MethodImplOptions.InternalCall)]
protected extern FieldInfo[] GetFields_internal (Type reflected_type);
[MethodImplAttribute(MethodImplOptions.InternalCall)]
protected extern PropertyInfo[] GetProperties_internal (Type reflected_type);
[MethodImplAttribute(MethodImplOptions.InternalCall)]
protected extern EventInfo[] GetEvents_internal (Type reflected_type);
private const BindingFlags flags = BindingFlags.Public | BindingFlags.NonPublic |
BindingFlags.Static | BindingFlags.Instance | BindingFlags.DeclaredOnly;
EventInfo[] get_event_info ()
{
if (generic_type is TypeBuilder)
return ((TypeBuilder) generic_type).GetEvents_internal (flags);
else
return generic_type.GetEvents (flags);
}
void initialize ()
{
if (initialized)
return;
MonoGenericClass parent = GetParentType () as MonoGenericClass;
if (parent != null)
parent.initialize ();
initialize (generic_type.GetMethods (flags),
generic_type.GetConstructors (flags),
generic_type.GetFields (flags),
generic_type.GetProperties (flags),
get_event_info ());
initialized = true;
}
[MethodImplAttribute(MethodImplOptions.InternalCall)]
protected extern Type GetParentType ();
[MethodImplAttribute(MethodImplOptions.InternalCall)]
protected extern MonoGenericClass[] GetInterfaces_internal ();
public override Type BaseType {
get {
Type parent = GetParentType ();
return parent != null ? parent : generic_type.BaseType;
}
}
public override Type[] GetInterfaces ()
{
return GetInterfaces_internal ();
}
protected override bool IsValueTypeImpl ()
{
return generic_type.IsValueType;
}
internal override MethodInfo GetMethod (MethodInfo fromNoninstanciated)
{
initialize ();
return GetCorrespondingInflatedMethod (fromNoninstanciated);
}
internal override ConstructorInfo GetConstructor (ConstructorInfo fromNoninstanciated)
{
initialize ();
return GetCorrespondingInflatedConstructor (fromNoninstanciated);
}
internal override FieldInfo GetField (FieldInfo fromNoninstanciated)
{
initialize ();
return GetCorrespondingInflatedField (fromNoninstanciated.Name);
}
public override MethodInfo[] GetMethods (BindingFlags bf)
{
ArrayList l = new ArrayList ();
//
// Walk up our class hierarchy and retrieve methods from our
// parent classes.
//
Type current_type = this;
do {
MonoGenericClass gi = current_type as MonoGenericClass;
if (gi != null)
l.AddRange (gi.GetMethods_impl (bf, this));
else if (current_type is TypeBuilder)
l.AddRange (current_type.GetMethods (bf));
else {
// If we encounter a `MonoType', its
// GetMethodsByName() will return all the methods
// from its parent type(s), so we can stop here.
MonoType mt = (MonoType) current_type;
l.AddRange (mt.GetMethodsByName (null, bf, false, this));
break;
}
if ((bf & BindingFlags.DeclaredOnly) != 0)
break;
current_type = current_type.BaseType;
} while (current_type != null);
MethodInfo[] result = new MethodInfo [l.Count];
l.CopyTo (result);
return result;
}
protected MethodInfo[] GetMethods_impl (BindingFlags bf, Type reftype)
{
ArrayList l = new ArrayList ();
bool match;
MethodAttributes mattrs;
initialize ();
MethodInfo[] methods = GetMethods_internal (reftype);
for (int i = 0; i < methods.Length; i++) {
MethodInfo c = methods [i];
match = false;
mattrs = c.Attributes;
if ((mattrs & MethodAttributes.MemberAccessMask) == MethodAttributes.Public) {
if ((bf & BindingFlags.Public) != 0)
match = true;
} else {
if ((bf & BindingFlags.NonPublic) != 0)
match = true;
}
if (!match)
continue;
match = false;
if ((mattrs & MethodAttributes.Static) != 0) {
if ((bf & BindingFlags.Static) != 0)
match = true;
} else {
if ((bf & BindingFlags.Instance) != 0)
match = true;
}
if (!match)
continue;
l.Add (c);
}
MethodInfo[] result = new MethodInfo [l.Count];
l.CopyTo (result);
return result;
}
public override ConstructorInfo[] GetConstructors (BindingFlags bf)
{
ArrayList l = new ArrayList ();
Type current_type = this;
do {
MonoGenericClass gi = current_type as MonoGenericClass;
if (gi != null)
l.AddRange (gi.GetConstructors_impl (bf, this));
else if (current_type is TypeBuilder)
l.AddRange (current_type.GetConstructors (bf));
else {
MonoType mt = (MonoType) current_type;
l.AddRange (mt.GetConstructors_internal (bf, this));
break;
}
if ((bf & BindingFlags.DeclaredOnly) != 0)
break;
current_type = current_type.BaseType;
} while (current_type != null);
ConstructorInfo[] result = new ConstructorInfo [l.Count];
l.CopyTo (result);
return result;
}
protected ConstructorInfo[] GetConstructors_impl (BindingFlags bf, Type reftype)
{
ArrayList l = new ArrayList ();
bool match;
MethodAttributes mattrs;
initialize ();
ConstructorInfo[] ctors = GetConstructors_internal (reftype);
for (int i = 0; i < ctors.Length; i++) {
ConstructorInfo c = ctors [i];
match = false;
mattrs = c.Attributes;
if ((mattrs & MethodAttributes.MemberAccessMask) == MethodAttributes.Public) {
if ((bf & BindingFlags.Public) != 0)
match = true;
} else {
if ((bf & BindingFlags.NonPublic) != 0)
match = true;
}
if (!match)
continue;
match = false;
if ((mattrs & MethodAttributes.Static) != 0) {
if ((bf & BindingFlags.Static) != 0)
match = true;
} else {
if ((bf & BindingFlags.Instance) != 0)
match = true;
}
if (!match)
continue;
l.Add (c);
}
ConstructorInfo[] result = new ConstructorInfo [l.Count];
l.CopyTo (result);
return result;
}
public override FieldInfo[] GetFields (BindingFlags bf)
{
ArrayList l = new ArrayList ();
Type current_type = this;
do {
MonoGenericClass gi = current_type as MonoGenericClass;
if (gi != null)
l.AddRange (gi.GetFields_impl (bf, this));
else if (current_type is TypeBuilder)
l.AddRange (current_type.GetFields (bf));
else {
MonoType mt = (MonoType) current_type;
l.AddRange (mt.GetFields_internal (bf, this));
break;
}
if ((bf & BindingFlags.DeclaredOnly) != 0)
break;
current_type = current_type.BaseType;
} while (current_type != null);
FieldInfo[] result = new FieldInfo [l.Count];
l.CopyTo (result);
return result;
}
protected FieldInfo[] GetFields_impl (BindingFlags bf, Type reftype)
{
ArrayList l = new ArrayList ();
bool match;
FieldAttributes fattrs;
initialize ();
FieldInfo[] fields = GetFields_internal (reftype);
for (int i = 0; i < fields.Length; i++) {
FieldInfo c = fields [i];
match = false;
fattrs = c.Attributes;
if ((fattrs & FieldAttributes.FieldAccessMask) == FieldAttributes.Public) {
if ((bf & BindingFlags.Public) != 0)
match = true;
} else {
if ((bf & BindingFlags.NonPublic) != 0)
match = true;
}
if (!match)
continue;
match = false;
if ((fattrs & FieldAttributes.Static) != 0) {
if ((bf & BindingFlags.Static) != 0)
match = true;
} else {
if ((bf & BindingFlags.Instance) != 0)
match = true;
}
if (!match)
continue;
l.Add (c);
}
FieldInfo[] result = new FieldInfo [l.Count];
l.CopyTo (result);
return result;
}
public override PropertyInfo[] GetProperties (BindingFlags bf)
{
ArrayList l = new ArrayList ();
Type current_type = this;
do {
MonoGenericClass gi = current_type as MonoGenericClass;
if (gi != null)
l.AddRange (gi.GetProperties_impl (bf, this));
else if (current_type is TypeBuilder)
l.AddRange (current_type.GetProperties (bf));
else {
MonoType mt = (MonoType) current_type;
l.AddRange (mt.GetPropertiesByName (null, bf, false, this));
break;
}
if ((bf & BindingFlags.DeclaredOnly) != 0)
break;
current_type = current_type.BaseType;
} while (current_type != null);
PropertyInfo[] result = new PropertyInfo [l.Count];
l.CopyTo (result);
return result;
}
protected PropertyInfo[] GetProperties_impl (BindingFlags bf, Type reftype)
{
ArrayList l = new ArrayList ();
bool match;
MethodAttributes mattrs;
MethodInfo accessor;
initialize ();
PropertyInfo[] properties = GetProperties_internal (reftype);
for (int i = 0; i < properties.Length; i++) {
PropertyInfo c = properties [i];
match = false;
accessor = c.GetGetMethod (true);
if (accessor == null)
accessor = c.GetSetMethod (true);
if (accessor == null)
continue;
mattrs = accessor.Attributes;
if ((mattrs & MethodAttributes.MemberAccessMask) == MethodAttributes.Public) {
if ((bf & BindingFlags.Public) != 0)
match = true;
} else {
if ((bf & BindingFlags.NonPublic) != 0)
match = true;
}
if (!match)
continue;
match = false;
if ((mattrs & MethodAttributes.Static) != 0) {
if ((bf & BindingFlags.Static) != 0)
match = true;
} else {
if ((bf & BindingFlags.Instance) != 0)
match = true;
}
if (!match)
continue;
l.Add (c);
}
PropertyInfo[] result = new PropertyInfo [l.Count];
l.CopyTo (result);
return result;
}
public override EventInfo[] GetEvents (BindingFlags bf)
{
ArrayList l = new ArrayList ();
Type current_type = this;
do {
MonoGenericClass gi = current_type as MonoGenericClass;
if (gi != null)
l.AddRange (gi.GetEvents_impl (bf, this));
else if (current_type is TypeBuilder)
l.AddRange (current_type.GetEvents (bf));
else {
MonoType mt = (MonoType) current_type;
l.AddRange (mt.GetEvents (bf));
break;
}
if ((bf & BindingFlags.DeclaredOnly) != 0)
break;
current_type = current_type.BaseType;
} while (current_type != null);
EventInfo[] result = new EventInfo [l.Count];
l.CopyTo (result);
return result;
}
protected EventInfo[] GetEvents_impl (BindingFlags bf, Type reftype)
{
ArrayList l = new ArrayList ();
bool match;
MethodAttributes mattrs;
MethodInfo accessor;
initialize ();
EventInfo[] events = GetEvents_internal (reftype);
for (int i = 0; i < events.Length; i++) {
EventInfo c = events [i];
match = false;
accessor = c.GetAddMethod (true);
if (accessor == null)
accessor = c.GetRemoveMethod (true);
if (accessor == null)
continue;
mattrs = accessor.Attributes;
if ((mattrs & MethodAttributes.MemberAccessMask) == MethodAttributes.Public) {
if ((bf & BindingFlags.Public) != 0)
match = true;
} else {
if ((bf & BindingFlags.NonPublic) != 0)
match = true;
}
if (!match)
continue;
match = false;
if ((mattrs & MethodAttributes.Static) != 0) {
if ((bf & BindingFlags.Static) != 0)
match = true;
} else {
if ((bf & BindingFlags.Instance) != 0)
match = true;
}
if (!match)
continue;
l.Add (c);
}
EventInfo[] result = new EventInfo [l.Count];
l.CopyTo (result);
return result;
}
public override Type[] GetNestedTypes (BindingFlags bf)
{
return generic_type.GetNestedTypes (bf);
}
public override bool IsAssignableFrom (Type c)
{
if (c == this)
return true;
MonoGenericClass[] interfaces = GetInterfaces_internal ();
if (c.IsInterface) {
if (interfaces == null)
return false;
foreach (Type t in interfaces)
if (c.IsAssignableFrom (t))
return true;
return false;
}
Type parent = GetParentType ();
if (parent == null)
return c == typeof (object);
else
return c.IsAssignableFrom (parent);
}
}
}
|