summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Reflection/Emit/GenericTypeParameterBuilder.cs
blob: dd5ffa92a9799a9966a19b502ac25aec3a72c329 (plain)
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

// 

using System;
using System.Reflection;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.Diagnostics.Contracts;

namespace System.Reflection.Emit
{
    public sealed class GenericTypeParameterBuilder : TypeInfo
    {
        public override bool IsAssignableFrom(System.Reflection.TypeInfo typeInfo)
        {
            if (typeInfo == null) return false;
            return IsAssignableFrom(typeInfo.AsType());
        }

        #region Private Data Mebers
        internal TypeBuilder m_type;
        #endregion

        #region Constructor
        internal GenericTypeParameterBuilder(TypeBuilder type)
        {
            m_type = type;
        }
        #endregion

        #region Object Overrides
        public override String ToString()
        {
            return m_type.Name;
        }
        public override bool Equals(object o)
        {
            GenericTypeParameterBuilder g = o as GenericTypeParameterBuilder;

            if (g == null)
                return false;

            return object.ReferenceEquals(g.m_type, m_type);
        }
        public override int GetHashCode() { return m_type.GetHashCode(); }
        #endregion

        #region MemberInfo Overrides
        public override Type DeclaringType { get { return m_type.DeclaringType; } }

        public override Type ReflectedType { get { return m_type.ReflectedType; } }

        public override String Name { get { return m_type.Name; } }

        public override Module Module { get { return m_type.Module; } }

        internal int MetadataTokenInternal { get { return m_type.MetadataTokenInternal; } }
        #endregion

        #region Type Overrides

        public override Type MakePointerType()
        {
            return SymbolType.FormCompoundType("*", this, 0);
        }

        public override Type MakeByRefType()
        {
            return SymbolType.FormCompoundType("&", this, 0);
        }

        public override Type MakeArrayType()
        {
            return SymbolType.FormCompoundType("[]", this, 0);
        }

        public override Type MakeArrayType(int rank)
        {
            if (rank <= 0)
                throw new IndexOutOfRangeException();
            Contract.EndContractBlock();

            string szrank = "";
            if (rank == 1)
            {
                szrank = "*";
            }
            else
            {
                for (int i = 1; i < rank; i++)
                    szrank += ",";
            }

            string s = String.Format(CultureInfo.InvariantCulture, "[{0}]", szrank); // [,,]
            SymbolType st = SymbolType.FormCompoundType(s, this, 0) as SymbolType;
            return st;
        }

        public override Guid GUID { get { 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(); }

        public override Assembly Assembly { get { return m_type.Assembly; } }

        public override RuntimeTypeHandle TypeHandle { get { throw new NotSupportedException(); } }

        public override String FullName { get { return null; } }

        public override String Namespace { get { return null; } }

        public override String AssemblyQualifiedName { get { return null; } }

        public override Type BaseType { get { return m_type.BaseType; } }

        protected override ConstructorInfo GetConstructorImpl(BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers) { throw new NotSupportedException(); }

        public override ConstructorInfo[] GetConstructors(BindingFlags bindingAttr) { throw new NotSupportedException(); }

        protected override MethodInfo GetMethodImpl(String name, BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers) { throw new NotSupportedException(); }

        public override MethodInfo[] GetMethods(BindingFlags bindingAttr) { throw new NotSupportedException(); }

        public override FieldInfo GetField(String name, BindingFlags bindingAttr) { throw new NotSupportedException(); }

        public override FieldInfo[] GetFields(BindingFlags bindingAttr) { throw new NotSupportedException(); }

        public override Type GetInterface(String name, bool ignoreCase) { throw new NotSupportedException(); }

        public override Type[] GetInterfaces() { throw new NotSupportedException(); }

        public override EventInfo GetEvent(String name, BindingFlags bindingAttr) { throw new NotSupportedException(); }

        public override EventInfo[] GetEvents() { throw new NotSupportedException(); }

        protected override PropertyInfo GetPropertyImpl(String name, BindingFlags bindingAttr, Binder binder, Type returnType, Type[] types, ParameterModifier[] modifiers) { throw new NotSupportedException(); }

        public override PropertyInfo[] GetProperties(BindingFlags bindingAttr) { throw new NotSupportedException(); }

        public override Type[] GetNestedTypes(BindingFlags bindingAttr) { throw new NotSupportedException(); }

        public override Type GetNestedType(String name, BindingFlags bindingAttr) { throw new NotSupportedException(); }

        public override MemberInfo[] GetMember(String name, MemberTypes type, BindingFlags bindingAttr) { throw new NotSupportedException(); }

        public override InterfaceMapping GetInterfaceMap(Type interfaceType) { throw new NotSupportedException(); }

        public override EventInfo[] GetEvents(BindingFlags bindingAttr) { throw new NotSupportedException(); }

        public override MemberInfo[] GetMembers(BindingFlags bindingAttr) { throw new NotSupportedException(); }

        protected override TypeAttributes GetAttributeFlagsImpl() { return TypeAttributes.Public; }

        public override bool IsSZArray => false;

        protected override bool IsArrayImpl() { return false; }

        protected override bool IsByRefImpl() { return false; }

        protected override bool IsPointerImpl() { return false; }

        protected override bool IsPrimitiveImpl() { return false; }

        protected override bool IsCOMObjectImpl() { return false; }

        public override Type GetElementType() { throw new NotSupportedException(); }

        protected override bool HasElementTypeImpl() { return false; }

        public override Type UnderlyingSystemType { get { return this; } }

        public override Type[] GetGenericArguments() { throw new InvalidOperationException(); }

        public override bool IsGenericTypeDefinition { get { return false; } }

        public override bool IsGenericType { get { return false; } }

        public override bool IsGenericParameter { get { return true; } }

        public override bool IsConstructedGenericType { get { return false; } }

        public override int GenericParameterPosition { get { return m_type.GenericParameterPosition; } }

        public override bool ContainsGenericParameters { get { return m_type.ContainsGenericParameters; } }

        public override GenericParameterAttributes GenericParameterAttributes { get { return m_type.GenericParameterAttributes; } }

        public override MethodBase DeclaringMethod { get { return m_type.DeclaringMethod; } }

        public override Type GetGenericTypeDefinition() { throw new InvalidOperationException(); }

        public override Type MakeGenericType(params Type[] typeArguments) { throw new InvalidOperationException(SR.Arg_NotGenericTypeDefinition); }

        protected override bool IsValueTypeImpl() { return false; }

        public override bool IsAssignableFrom(Type c) { throw new NotSupportedException(); }

        [Pure]
        public override bool IsSubclassOf(Type c) { throw new NotSupportedException(); }
        #endregion

        #region ICustomAttributeProvider Implementation
        public override Object[] GetCustomAttributes(bool inherit) { throw new NotSupportedException(); }

        public override Object[] GetCustomAttributes(Type attributeType, bool inherit) { throw new NotSupportedException(); }

        public override bool IsDefined(Type attributeType, bool inherit) { throw new NotSupportedException(); }
        #endregion

        #region Public Members
        public void SetCustomAttribute(ConstructorInfo con, byte[] binaryAttribute)
        {
            m_type.SetGenParamCustomAttribute(con, binaryAttribute);
        }

        public void SetCustomAttribute(CustomAttributeBuilder customBuilder)
        {
            m_type.SetGenParamCustomAttribute(customBuilder);
        }

        public void SetBaseTypeConstraint(Type baseTypeConstraint)
        {
            m_type.CheckContext(baseTypeConstraint);
            m_type.SetParent(baseTypeConstraint);
        }

        public void SetInterfaceConstraints(params Type[] interfaceConstraints)
        {
            m_type.CheckContext(interfaceConstraints);
            m_type.SetInterfaces(interfaceConstraints);
        }

        public void SetGenericParameterAttributes(GenericParameterAttributes genericParameterAttributes)
        {
            m_type.SetGenParamAttributes(genericParameterAttributes);
        }
        #endregion
    }
}