The issue is fixed.
[mono.git] / mcs / class / corlib / System.Reflection / CustomAttributeData.cs
1 //
2 // System.Reflection/CustomAttributeData.cs
3 //
4 // Author:
5 //   Zoltan Varga (vargaz@gmail.com)
6 //   Carlos Alberto Cortez (calberto.cortez@gmail.com)
7 //
8 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 #if NET_2_0
31
32 using System;
33 using System.Collections.Generic;
34 using System.Runtime.CompilerServices;
35 using System.Runtime.InteropServices;
36 using System.Text;
37
38 namespace System.Reflection {
39
40 #if NET_2_0
41         [ComVisible (true)]
42 #endif
43         public sealed class CustomAttributeData {
44                 ConstructorInfo ctorInfo;
45                 IList<CustomAttributeTypedArgument> ctorArgs;
46                 IList<CustomAttributeNamedArgument> namedArgs;
47
48                 internal CustomAttributeData (ConstructorInfo ctorInfo, object [] ctorArgs, object [] namedArgs)
49                 {
50                         this.ctorInfo = ctorInfo;
51                         
52                         this.ctorArgs = Array.AsReadOnly<CustomAttributeTypedArgument> 
53                                 (ctorArgs != null ? UnboxValues<CustomAttributeTypedArgument> (ctorArgs) : new CustomAttributeTypedArgument [0]);
54                         
55                         this.namedArgs = Array.AsReadOnly<CustomAttributeNamedArgument> 
56                                 (namedArgs != null ? UnboxValues<CustomAttributeNamedArgument> (namedArgs) : new CustomAttributeNamedArgument [0]);
57                 }
58
59                 public ConstructorInfo Constructor {
60                         get {
61                                 return ctorInfo;
62                         }
63                 }
64
65                 public IList<CustomAttributeTypedArgument> ConstructorArguments {
66                         get {
67                                 return ctorArgs;
68                         }
69                 }
70
71                 public IList<CustomAttributeNamedArgument> NamedArguments {
72                         get {
73                                 return namedArgs;
74                         }
75                 }
76
77                 public static IList<CustomAttributeData> GetCustomAttributes (Assembly target) {
78                         return MonoCustomAttrs.GetCustomAttributesData (target);
79                 }
80
81                 public static IList<CustomAttributeData> GetCustomAttributes (MemberInfo target) {
82                         return MonoCustomAttrs.GetCustomAttributesData (target);
83                 }
84
85                 public static IList<CustomAttributeData> GetCustomAttributes (Module target) {
86                         return MonoCustomAttrs.GetCustomAttributesData (target);
87                 }
88
89                 public static IList<CustomAttributeData> GetCustomAttributes (ParameterInfo target) {
90                         return MonoCustomAttrs.GetCustomAttributesData (target);
91                 }
92
93                 public override string ToString ()
94                 {
95                         StringBuilder sb = new StringBuilder ();
96
97                         sb.Append ("[" + ctorInfo.DeclaringType.Name + " (");
98                         for (int i = 0; i < ctorArgs.Count; i++) {
99                                 sb.Append (ctorArgs [i].ToString ());
100                                 if (i + 1 < ctorArgs.Count)
101                                         sb.Append (", ");
102                         }
103
104                         if (namedArgs.Count > 0)
105                                 sb.Append (", ");
106                         
107                         for (int j = 0; j < namedArgs.Count; j++) {
108                                 sb.Append (namedArgs [j].ToString ());
109                                 if (j + 1 < namedArgs.Count)
110                                         sb.Append (", ");
111                         }
112                         sb.AppendFormat (")]");
113
114                         return sb.ToString ();
115                 }
116
117                 static T [] UnboxValues<T> (object [] values)
118                 {
119                         T [] retval = new T [values.Length];
120                         for (int i = 0; i < values.Length; i++)
121                                 retval [i] = (T) values [i];
122
123                         return retval;
124                 }
125         }
126
127 }
128
129 #endif
130