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
|
//
// System.Reflection.MonoGenericClass
//
// 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.
//
#if !FULL_AOT_RUNTIME
using System.Reflection;
using System.Reflection.Emit;
using System.Collections;
using System.Runtime.CompilerServices;
using System.Globalization;
using System.Runtime.Serialization;
using System.Text;
using System.Runtime.InteropServices;
namespace System.Reflection
{
/*
* MonoGenericClass represents an instantiation of a generic TypeBuilder. MS
* calls this class TypeBuilderInstantiation (a much better name). MS returns
* NotImplementedException for many of the methods but we can't do that as gmcs
* depends on them.
*/
[StructLayout (LayoutKind.Sequential)]
sealed class MonoGenericClass :
#if NET_4_5
TypeInfo
#else
Type
#endif
{
#region Keep in sync with object-internals.h
#pragma warning disable 649
internal Type generic_type;
Type[] type_arguments;
bool initialized;
#pragma warning restore 649
#endregion
Hashtable fields, ctors, methods;
internal MonoGenericClass ()
{
// this should not be used
throw new InvalidOperationException ();
}
internal MonoGenericClass (Type tb, Type[] args)
{
this.generic_type = tb;
this.type_arguments = args;
/*
This is a temporary hack until we can fix the rest of the runtime
to properly handle this class to be a complete UT.
We must not regisrer this with the runtime after the type is created
otherwise created_type.MakeGenericType will return an instance of MonoGenericClass,
which is very very broken.
*/
if (tb is TypeBuilder && !(tb as TypeBuilder).is_created)
register_with_runtime (this);
}
internal override Type InternalResolve ()
{
Type gtd = generic_type.InternalResolve ();
Type[] args = new Type [type_arguments.Length];
for (int i = 0; i < type_arguments.Length; ++i)
args [i] = type_arguments [i].InternalResolve ();
return gtd.MakeGenericType (args);
}
[MethodImplAttribute(MethodImplOptions.InternalCall)]
extern void initialize (FieldInfo[] fields);
[MethodImplAttribute(MethodImplOptions.InternalCall)]
internal static extern void register_with_runtime (Type type);
internal bool IsCreated {
get {
TypeBuilder tb = generic_type as TypeBuilder;
return tb != null ? tb.is_created : true;
}
}
private const BindingFlags flags = BindingFlags.Public | BindingFlags.NonPublic |
BindingFlags.Static | BindingFlags.Instance | BindingFlags.DeclaredOnly;
void initialize ()
{
if (initialized)
return;
MonoGenericClass parent = GetParentType () as MonoGenericClass;
if (parent != null)
parent.initialize ();
initialize (generic_type.GetFields (flags));
initialized = true;
}
Type GetParentType ()
{
return InflateType (generic_type.BaseType);
}
internal Type InflateType (Type type)
{
return InflateType (type, type_arguments, null);
}
internal Type InflateType (Type type, Type[] method_args)
{
return InflateType (type, type_arguments, method_args);
}
internal static Type InflateType (Type type, Type[] type_args, Type[] method_args)
{
if (type == null)
return null;
if (!type.IsGenericParameter && !type.ContainsGenericParameters)
return type;
if (type.IsGenericParameter) {
if (type.DeclaringMethod == null)
return type_args == null ? type : type_args [type.GenericParameterPosition];
return method_args == null ? type : method_args [type.GenericParameterPosition];
}
if (type.IsPointer)
return InflateType (type.GetElementType (), type_args, method_args).MakePointerType ();
if (type.IsByRef)
return InflateType (type.GetElementType (), type_args, method_args).MakeByRefType ();
if (type.IsArray) {
if (type.GetArrayRank () > 1)
return InflateType (type.GetElementType (), type_args, method_args).MakeArrayType (type.GetArrayRank ());
if (type.ToString ().EndsWith ("[*]", StringComparison.Ordinal)) /*FIXME, the reflection API doesn't offer a way around this*/
return InflateType (type.GetElementType (), type_args, method_args).MakeArrayType (1);
return InflateType (type.GetElementType (), type_args, method_args).MakeArrayType ();
}
Type[] args = type.GetGenericArguments ();
for (int i = 0; i < args.Length; ++i)
args [i] = InflateType (args [i], type_args, method_args);
Type gtd = type.IsGenericTypeDefinition ? type : type.GetGenericTypeDefinition ();
return gtd.MakeGenericType (args);
}
public override Type BaseType {
get { return generic_type.BaseType; }
}
public override Type[] GetInterfaces ()
{
throw new NotSupportedException ();
}
protected override bool IsValueTypeImpl ()
{
return generic_type.IsValueType;
}
internal override MethodInfo GetMethod (MethodInfo fromNoninstanciated)
{
initialize ();
if (methods == null)
methods = new Hashtable ();
if (!methods.ContainsKey (fromNoninstanciated))
methods [fromNoninstanciated] = new MethodOnTypeBuilderInst (this, fromNoninstanciated);
return (MethodInfo)methods [fromNoninstanciated];
}
internal override ConstructorInfo GetConstructor (ConstructorInfo fromNoninstanciated)
{
initialize ();
if (ctors == null)
ctors = new Hashtable ();
if (!ctors.ContainsKey (fromNoninstanciated))
ctors [fromNoninstanciated] = new ConstructorOnTypeBuilderInst (this, fromNoninstanciated);
return (ConstructorInfo)ctors [fromNoninstanciated];
}
internal override FieldInfo GetField (FieldInfo fromNoninstanciated)
{
initialize ();
if (fields == null)
fields = new Hashtable ();
if (!fields.ContainsKey (fromNoninstanciated))
fields [fromNoninstanciated] = new FieldOnTypeBuilderInst (this, fromNoninstanciated);
return (FieldInfo)fields [fromNoninstanciated];
}
public override MethodInfo[] GetMethods (BindingFlags bf)
{
throw new NotSupportedException ();
}
public override ConstructorInfo[] GetConstructors (BindingFlags bf)
{
throw new NotSupportedException ();
}
public override FieldInfo[] GetFields (BindingFlags bf)
{
throw new NotSupportedException ();
}
public override PropertyInfo[] GetProperties (BindingFlags bf)
{
throw new NotSupportedException ();
}
public override EventInfo[] GetEvents (BindingFlags bf)
{
throw new NotSupportedException ();
}
public override Type[] GetNestedTypes (BindingFlags bf)
{
throw new NotSupportedException ();
}
public override bool IsAssignableFrom (Type c)
{
throw new NotSupportedException ();
}
public override Type UnderlyingSystemType {
get { return this; }
}
public override Assembly Assembly {
get { return generic_type.Assembly; }
}
public override Module Module {
get { return generic_type.Module; }
}
public override string Name {
get { return generic_type.Name; }
}
public override string Namespace {
get { return generic_type.Namespace; }
}
public override string FullName {
get { return format_name (true, false); }
}
public override string AssemblyQualifiedName {
get { return format_name (true, true); }
}
public override Guid GUID {
get { throw new NotSupportedException (); }
}
string format_name (bool full_name, bool assembly_qualified)
{
StringBuilder sb = new StringBuilder (generic_type.FullName);
sb.Append ("[");
for (int i = 0; i < type_arguments.Length; ++i) {
if (i > 0)
sb.Append (",");
string name;
if (full_name) {
string assemblyName = type_arguments [i].Assembly.FullName;
name = type_arguments [i].FullName;
if (name != null && assemblyName != null)
name = name + ", " + assemblyName;
} else {
name = type_arguments [i].ToString ();
}
if (name == null) {
return null;
}
if (full_name)
sb.Append ("[");
sb.Append (name);
if (full_name)
sb.Append ("]");
}
sb.Append ("]");
if (assembly_qualified) {
sb.Append (", ");
sb.Append (generic_type.Assembly.FullName);
}
return sb.ToString ();
}
public override string ToString ()
{
return format_name (false, false);
}
public override Type GetGenericTypeDefinition ()
{
return generic_type;
}
public override Type[] GetGenericArguments ()
{
Type[] ret = new Type [type_arguments.Length];
type_arguments.CopyTo (ret, 0);
return ret;
}
public override bool ContainsGenericParameters {
get {
foreach (Type t in type_arguments) {
if (t.ContainsGenericParameters)
return true;
}
return false;
}
}
public override bool IsGenericTypeDefinition {
get { return false; }
}
public override bool IsGenericType {
get { return true; }
}
public override Type DeclaringType {
get { return generic_type.DeclaringType; }
}
public override RuntimeTypeHandle TypeHandle {
get {
throw new NotSupportedException ();
}
}
public override Type MakeArrayType ()
{
return new ArrayType (this, 0);
}
public override Type MakeArrayType (int rank)
{
if (rank < 1)
throw new IndexOutOfRangeException ();
return new ArrayType (this, rank);
}
public override Type MakeByRefType ()
{
return new ByRefType (this);
}
public override Type MakePointerType ()
{
return new PointerType (this);
}
public override Type GetElementType ()
{
throw new NotSupportedException ();
}
protected override bool HasElementTypeImpl ()
{
return false;
}
protected override bool IsCOMObjectImpl ()
{
return false;
}
protected override bool IsPrimitiveImpl ()
{
return false;
}
protected override bool IsArrayImpl ()
{
return false;
}
protected override bool IsByRefImpl ()
{
return false;
}
protected override bool IsPointerImpl ()
{
return false;
}
protected override TypeAttributes GetAttributeFlagsImpl ()
{
return generic_type.Attributes;
}
//stuff that throws
public override Type GetInterface (string name, bool ignoreCase)
{
throw new NotSupportedException ();
}
public override EventInfo GetEvent (string name, BindingFlags bindingAttr)
{
throw new NotSupportedException ();
}
public override FieldInfo GetField( string name, BindingFlags bindingAttr)
{
throw new NotSupportedException ();
}
public override MemberInfo[] GetMembers (BindingFlags bindingAttr)
{
throw new NotSupportedException ();
}
public override Type GetNestedType (string name, BindingFlags bindingAttr)
{
throw new NotSupportedException ();
}
public override object InvokeMember (string name, BindingFlags invokeAttr,
Binder binder, object target, object[] args,
ParameterModifier[] modifiers,
CultureInfo culture, string[] namedParameters)
{
throw new NotSupportedException ();
}
protected override MethodInfo GetMethodImpl (string name, BindingFlags bindingAttr, Binder binder,
CallingConventions callConvention, Type[] types,
ParameterModifier[] modifiers)
{
throw new NotSupportedException ();
}
protected override PropertyInfo GetPropertyImpl (string name, BindingFlags bindingAttr, Binder binder,
Type returnType, Type[] types, ParameterModifier[] modifiers)
{
throw new NotSupportedException ();
}
protected override ConstructorInfo GetConstructorImpl (BindingFlags bindingAttr,
Binder binder,
CallingConventions callConvention,
Type[] types,
ParameterModifier[] modifiers)
{
throw new NotSupportedException ();
}
//MemberInfo
public override bool IsDefined (Type attributeType, bool inherit)
{
throw new NotSupportedException ();
}
public override object [] GetCustomAttributes (bool inherit)
{
if (IsCreated)
return generic_type.GetCustomAttributes (inherit);
throw new NotSupportedException ();
}
public override object [] GetCustomAttributes (Type attributeType, bool inherit)
{
if (IsCreated)
return generic_type.GetCustomAttributes (attributeType, inherit);
throw new NotSupportedException ();
}
internal override bool IsUserType {
get {
foreach (var t in type_arguments) {
if (t.IsUserType)
return true;
}
return false;
}
}
}
}
#endif
|