/cecil/Mono.Cecil/GenericParameter.cs

# · C# · 202 lines · 132 code · 43 blank · 27 comment · 20 complexity · 8875a37f3fb40e43add8c786ddcd9067 MD5 · raw file

  1. //
  2. // GenericParameter.cs
  3. //
  4. // Author:
  5. // Jb Evain (jbevain@gmail.com)
  6. //
  7. // Copyright (c) 2008 - 2011 Jb Evain
  8. //
  9. // Permission is hereby granted, free of charge, to any person obtaining
  10. // a copy of this software and associated documentation files (the
  11. // "Software"), to deal in the Software without restriction, including
  12. // without limitation the rights to use, copy, modify, merge, publish,
  13. // distribute, sublicense, and/or sell copies of the Software, and to
  14. // permit persons to whom the Software is furnished to do so, subject to
  15. // the following conditions:
  16. //
  17. // The above copyright notice and this permission notice shall be
  18. // included in all copies or substantial portions of the Software.
  19. //
  20. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  21. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  22. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  23. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  24. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  25. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  26. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  27. //
  28. using System;
  29. using Mono.Collections.Generic;
  30. using Mono.Cecil.Metadata;
  31. namespace Mono.Cecil {
  32. public sealed class GenericParameter : TypeReference, ICustomAttributeProvider {
  33. readonly IGenericParameterProvider owner;
  34. ushort attributes;
  35. Collection<TypeReference> constraints;
  36. Collection<CustomAttribute> custom_attributes;
  37. public GenericParameterAttributes Attributes {
  38. get { return (GenericParameterAttributes) attributes; }
  39. set { attributes = (ushort) value; }
  40. }
  41. public int Position {
  42. get {
  43. if (owner == null)
  44. return -1;
  45. return owner.GenericParameters.IndexOf (this);
  46. }
  47. }
  48. public IGenericParameterProvider Owner {
  49. get { return owner; }
  50. }
  51. public bool HasConstraints {
  52. get {
  53. if (constraints != null)
  54. return constraints.Count > 0;
  55. if (HasImage)
  56. return Module.Read (this, (generic_parameter, reader) => reader.HasGenericConstraints (generic_parameter));
  57. return false;
  58. }
  59. }
  60. public Collection<TypeReference> Constraints {
  61. get {
  62. if (constraints != null)
  63. return constraints;
  64. if (HasImage)
  65. return constraints = Module.Read (this, (generic_parameter, reader) => reader.ReadGenericConstraints (generic_parameter));
  66. return constraints = new Collection<TypeReference> ();
  67. }
  68. }
  69. public bool HasCustomAttributes {
  70. get {
  71. if (custom_attributes != null)
  72. return custom_attributes.Count > 0;
  73. return this.GetHasCustomAttributes (Module);
  74. }
  75. }
  76. public Collection<CustomAttribute> CustomAttributes {
  77. get {
  78. if (custom_attributes != null)
  79. return custom_attributes;
  80. return custom_attributes = this.GetCustomAttributes (Module);
  81. }
  82. }
  83. public override IMetadataScope Scope {
  84. get {
  85. if (owner.GenericParameterType == GenericParameterType.Method)
  86. return ((MethodReference) owner).DeclaringType.Scope;
  87. return ((TypeReference) owner).Scope;
  88. }
  89. }
  90. public override ModuleDefinition Module {
  91. get { return ((MemberReference) owner).Module; }
  92. }
  93. public override string Name {
  94. get {
  95. if (!string.IsNullOrEmpty (base.Name))
  96. return base.Name;
  97. return base.Name = (owner.GenericParameterType == GenericParameterType.Type ? "!" : "!!") + Position;
  98. }
  99. }
  100. public override string Namespace {
  101. get { return string.Empty; }
  102. set { throw new InvalidOperationException (); }
  103. }
  104. public override string FullName {
  105. get { return (owner.GenericParameterType == GenericParameterType.Type ? "!" : "!!") + Position; }
  106. }
  107. public override bool IsGenericParameter {
  108. get { return true; }
  109. }
  110. internal override bool ContainsGenericParameter {
  111. get { return true; }
  112. }
  113. public override MetadataType MetadataType {
  114. get { return (MetadataType) etype; }
  115. }
  116. #region GenericParameterAttributes
  117. public bool IsNonVariant {
  118. get { return attributes.GetMaskedAttributes ((ushort) GenericParameterAttributes.VarianceMask, (ushort) GenericParameterAttributes.NonVariant); }
  119. set { attributes = attributes.SetMaskedAttributes ((ushort) GenericParameterAttributes.VarianceMask, (ushort) GenericParameterAttributes.NonVariant, value); }
  120. }
  121. public bool IsCovariant {
  122. get { return attributes.GetMaskedAttributes ((ushort) GenericParameterAttributes.VarianceMask, (ushort) GenericParameterAttributes.Covariant); }
  123. set { attributes = attributes.SetMaskedAttributes ((ushort) GenericParameterAttributes.VarianceMask, (ushort) GenericParameterAttributes.Covariant, value); }
  124. }
  125. public bool IsContravariant {
  126. get { return attributes.GetMaskedAttributes ((ushort) GenericParameterAttributes.VarianceMask, (ushort) GenericParameterAttributes.Contravariant); }
  127. set { attributes = attributes.SetMaskedAttributes ((ushort) GenericParameterAttributes.VarianceMask, (ushort) GenericParameterAttributes.Contravariant, value); }
  128. }
  129. public bool HasReferenceTypeConstraint {
  130. get { return attributes.GetAttributes ((ushort) GenericParameterAttributes.ReferenceTypeConstraint); }
  131. set { attributes = attributes.SetAttributes ((ushort) GenericParameterAttributes.ReferenceTypeConstraint, value); }
  132. }
  133. public bool HasNotNullableValueTypeConstraint {
  134. get { return attributes.GetAttributes ((ushort) GenericParameterAttributes.NotNullableValueTypeConstraint); }
  135. set { attributes = attributes.SetAttributes ((ushort) GenericParameterAttributes.NotNullableValueTypeConstraint, value); }
  136. }
  137. public bool HasDefaultConstructorConstraint {
  138. get { return attributes.GetAttributes ((ushort) GenericParameterAttributes.DefaultConstructorConstraint); }
  139. set { attributes = attributes.SetAttributes ((ushort) GenericParameterAttributes.DefaultConstructorConstraint, value); }
  140. }
  141. #endregion
  142. public GenericParameter (IGenericParameterProvider owner)
  143. : this (string.Empty, owner)
  144. {
  145. }
  146. public GenericParameter (string name, IGenericParameterProvider owner)
  147. : base (string.Empty, name)
  148. {
  149. if (owner == null)
  150. throw new ArgumentNullException ();
  151. this.owner = owner;
  152. this.etype = owner.GenericParameterType == GenericParameterType.Type ? ElementType.Var : ElementType.MVar;
  153. }
  154. public override TypeDefinition Resolve ()
  155. {
  156. return null;
  157. }
  158. }
  159. }