Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Attribute.cs « System « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cdad17adbdac63b8b412ed2a4afcc9f7ab42ff60 (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
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
//
// System.Attribute.cs
//
// Authors:
//   Miguel de Icaza (miguel@ximian.com) - Original
//   Nick D. Drochak II (ndrochak@gol.com) - Implemented most of the guts
//
// (C) Ximian, Inc.  http://www.ximian.com
//

using System;
using System.Globalization;

namespace System {

	[AttributeUsage(AttributeTargets.All)]
	[Serializable]
	public abstract class Attribute {

		protected Attribute ()
		{
		}

		public virtual object TypeId {
			get {
				// Derived classes should override this default behaviour as appropriate
				return this.GetType ();
			}
		}

		private static void CheckParameters (object element, Type attribute_type)
		{
			// neither parameter is allowed to be null
			if (null == element) 
			{
				throw new ArgumentNullException ("element");
			}

			if (null == attribute_type) 
			{
				throw new ArgumentNullException ("attribute_type");
			}
		}

		private static System.Attribute FindAttribute (object[] attributes)
		{
			// if there exists more than one attribute of the given type, throw an exception
			if (attributes.Length > 1) {
				throw new System.Reflection.AmbiguousMatchException (
					Locale.GetText ("<element> has more than one attribute of type <attribute_type>"));
			}

			if (attributes.Length < 1) 
				return null;

			// tested above for '> 1' and and '< 1', so only '== 1' is left,
			// i.e. we found the attribute
			
			return (System.Attribute) attributes[0];
		}

		private static void CheckAncestry (Type attribute_type)
		{
			// attribute_type must be derived from type System.Attribute
			Type t = typeof (System.Attribute);
			
			/* fixme: thgi does not work for target monolib2
			if (!attribute_type.IsSubclassOf (t))
			{
				throw new ArgumentException ("Parameter is not a type derived from System.Attribute", "attribute_type");
			}
			*/
		}

		public static Attribute GetCustomAttribute (System.Reflection.ParameterInfo element,
							    Type attribute_type)
		{
			return GetCustomAttribute (element, attribute_type, true);
		}

		public static Attribute GetCustomAttribute (System.Reflection.MemberInfo element,
							    Type attribute_type)
		{
			return GetCustomAttribute (element, attribute_type, true);
		}

		public static Attribute GetCustomAttribute (System.Reflection.Assembly element,
							    Type attribute_type)
		{
			return GetCustomAttribute (element, attribute_type, true);
		}

		public static Attribute GetCustomAttribute (System.Reflection.Module element,
							    Type attribute_type)
		{
			return GetCustomAttribute (element, attribute_type, true);
		}

		public static Attribute GetCustomAttribute (System.Reflection.Module element,
							    Type attribute_type, bool inherit)
		{
			// neither parameter is allowed to be null
			CheckParameters (element, attribute_type);

			// attribute_type must be derived from type System.Attribute
			CheckAncestry (attribute_type);

			// Module inheritance hierarchies CAN NOT be searched for attributes, so the second
			// parameter of GetCustomAttributes () is INGNORED.
			object[] attributes = element.GetCustomAttributes (attribute_type, inherit);

			return FindAttribute (attributes);
		}

		public static Attribute GetCustomAttribute (System.Reflection.Assembly element,
							    Type attribute_type, bool inherit)
		{
			// neither parameter is allowed to be null
			CheckParameters (element, attribute_type);

			// attribute_type must be derived from type System.Attribute
			CheckAncestry (attribute_type);

			// Assembly inheritance hierarchies CAN NOT be searched for attributes, so the second
			// parameter of GetCustomAttributes () is INGNORED.
			object[] attributes = element.GetCustomAttributes (attribute_type, inherit);

			return FindAttribute (attributes);
		}

		public static Attribute GetCustomAttribute (System.Reflection.ParameterInfo element,
							    Type attribute_type, bool inherit)
		{
			// neither parameter is allowed to be null
			CheckParameters (element, attribute_type);

			// attribute_type must be derived from type System.Attribute
			CheckAncestry (attribute_type);

			// ParameterInfo inheritance hierarchies CAN NOT be searched for attributes, so the second
			// parameter of GetCustomAttributes () is INGNORED.
			object[] attributes = element.GetCustomAttributes (attribute_type, inherit);

			return FindAttribute (attributes);
		}

		public static Attribute GetCustomAttribute (System.Reflection.MemberInfo element,
							    Type attribute_type, bool inherit)
		{
			// neither parameter is allowed to be null
			CheckParameters (element, attribute_type);

			// attribute_type must be derived from type System.Attribute
			CheckAncestry (attribute_type);

			// MemberInfo inheritance hierarchies can be searched for attributes, so the second
			// parameter of GetCustomAttributes () is respected.
			object[] attributes = element.GetCustomAttributes (attribute_type, inherit);

			return FindAttribute (attributes);
		}

		public static Attribute[] GetCustomAttributes (System.Reflection.Assembly element)
		{
			return System.Attribute.GetCustomAttributes (element, true);
		}

		public static Attribute[] GetCustomAttributes (System.Reflection.ParameterInfo element)
		{
			return System.Attribute.GetCustomAttributes (element, true);
		}

		public static Attribute[] GetCustomAttributes (System.Reflection.MemberInfo element){
			return System.Attribute.GetCustomAttributes (element, true);
		}

		public static Attribute[] GetCustomAttributes (System.Reflection.Module element){
			return System.Attribute.GetCustomAttributes (element, true);
		}

		public static Attribute[] GetCustomAttributes (System.Reflection.Assembly element,
							       Type attribute_type)
		{
			return System.Attribute.GetCustomAttributes (element, attribute_type, true);
		}

		public static Attribute[] GetCustomAttributes (System.Reflection.Module element,
							       Type attribute_type)
		{
			return System.Attribute.GetCustomAttributes (element, attribute_type, true);
		}

		public static Attribute[] GetCustomAttributes (System.Reflection.ParameterInfo element,
							       Type attribute_type)
		{
			return System.Attribute.GetCustomAttributes (element, attribute_type, true);
		}

		public static Attribute[] GetCustomAttributes (System.Reflection.MemberInfo element,
							       Type attribute_type)
		{
			return System.Attribute.GetCustomAttributes (element, attribute_type, true);
		}

		public static Attribute[] GetCustomAttributes (System.Reflection.Assembly element,
							       Type attribute_type, bool inherit)
		{
			// element parameter is not allowed to be null
			CheckParameters (element, attribute_type);

			// make a properly typed array to return containing the custom attributes
			System.Attribute[] attributes;

			attributes = (System.Attribute[]) element.GetCustomAttributes (
				attribute_type, inherit);

			return attributes;
		}

		public static Attribute[] GetCustomAttributes (System.Reflection.ParameterInfo element,
							       Type attribute_type, bool inherit)
		{
			// element parameter is not allowed to be null
			CheckParameters (element, attribute_type);

			// make a properly typed array to return containing the custom attributes
			System.Attribute[] attributes = (System.Attribute[]) element.GetCustomAttributes (
				attribute_type, inherit);

			return attributes;
		}

		public static Attribute[] GetCustomAttributes (System.Reflection.Module element,
							       Type attribute_type, bool inherit)
		{
			// element parameter is not allowed to be null
			CheckParameters (element, attribute_type);

			// make a properly typed array to return containing the custom attributes
			System.Attribute[] attributes = (System.Attribute[]) element.GetCustomAttributes (
				attribute_type, inherit);

			return attributes;
		}

		public static Attribute[] GetCustomAttributes (System.Reflection.MemberInfo element,
							       Type attribute_type, bool inherit)
		{
			// element parameter is not allowed to be null
			CheckParameters (element, attribute_type);

			// make a properly typed array to return containing the custom attributes
			System.Attribute[] attributes = (System.Attribute[]) element.GetCustomAttributes (
				attribute_type, inherit);

			return attributes;
		}

		public static Attribute[] GetCustomAttributes (System.Reflection.Module element,
							       bool inherit)
		{
			// element parameter is not allowed to be null
			CheckParameters (element, typeof (System.Attribute));

			// make a properly typed array to return containing the custom attributes
			System.Attribute[] attributes = (System.Attribute[]) element.GetCustomAttributes (
				inherit);

			return attributes;
		}
		
		public static Attribute[] GetCustomAttributes (System.Reflection.Assembly element,
							       bool inherit)
		{
			// element parameter is not allowed to be null
			CheckParameters (element, typeof (System.Attribute));

			// make a properly typed array to return containing the custom attributes
			System.Attribute[] attributes = (System.Attribute[]) element.GetCustomAttributes (
				inherit);

			return attributes;
		}

		public static Attribute[] GetCustomAttributes (System.Reflection.MemberInfo element,
							       bool inherit)
		{
			// element parameter is not allowed to be null
			CheckParameters (element, typeof (System.Attribute));

			// make a properly typed array to return containing the custom attributes
			System.Attribute[] attributes = (System.Attribute[]) element.GetCustomAttributes (
				inherit);

			return attributes;
		}

		public static Attribute[] GetCustomAttributes (System.Reflection.ParameterInfo element,
							       bool inherit)
		{
			// element parameter is not allowed to be null
			CheckParameters (element, typeof (System.Attribute));

			// make a properly typed array to return containing the custom attributes
			System.Attribute[] attributes = (System.Attribute[]) element.GetCustomAttributes (
				inherit);

			return attributes;
		}

		public override int GetHashCode ()
		{
			return ((Object) this).GetHashCode ();
		}
		
		public virtual bool IsDefaultAttribute ()
		{
			// Derived classes should override this default behaviour as appropriate
			return false;
		}
		
		public static bool IsDefined (System.Reflection.Module element, Type attribute_type)
		{
			return (System.Attribute.GetCustomAttributes (element, attribute_type).Length > 0);
		}

		public static bool IsDefined (System.Reflection.ParameterInfo element, Type attribute_type)
		{
			return (System.Attribute.GetCustomAttributes (element, attribute_type).Length > 0);
		}

		public static bool IsDefined (System.Reflection.MemberInfo element, Type attribute_type)
		{
			return (System.Attribute.GetCustomAttributes (element, attribute_type).Length > 0);
		}

		public static bool IsDefined (System.Reflection.Assembly element, Type attribute_type)
		{
			return (System.Attribute.GetCustomAttributes (element, attribute_type).Length > 0);
		}

		public static bool IsDefined (System.Reflection.MemberInfo element, Type attribute_type,
					      bool inherit)
		{
			return (System.Attribute.GetCustomAttributes (
				element, attribute_type, inherit).Length > 0);
		}

		public static bool IsDefined (System.Reflection.Assembly element, Type attribute_type,
					      bool inherit)
		{
			return (System.Attribute.GetCustomAttributes (
				element, attribute_type, inherit).Length > 0);
		}

		public static bool IsDefined (System.Reflection.Module element, Type attribute_type,
					      bool inherit)
		{
			return (System.Attribute.GetCustomAttributes (
				element, attribute_type, inherit).Length > 0);
		}

		public static bool IsDefined (System.Reflection.ParameterInfo element,
					      Type attribute_type, bool inherit)
		{
			return (System.Attribute.GetCustomAttributes (
				element, attribute_type, inherit).Length > 0);
		}
		
		public virtual bool Match (object obj)
		{
			// default action is the same as Equals.
			// Derived classes should override as appropriate
			
			return this.Equals (obj);
		}

		public override bool Equals (object obj)
		{
			if (obj == null || !(obj is Attribute))
				return false;

			return ((Attribute) obj) == this;
		}
	}
}