Change some usages of ArrayList to List<T> to avoid calls to the slow ArrayList.ToArr...
[mono.git] / mcs / class / corlib / System.Reflection / MonoAssembly.cs
1 //
2 // System.Reflection/MonoAssembly.cs
3 //
4 // Author:
5 //   Rodrigo Kumpera (rkumpera@novell.com)
6 //
7 // Copyright (C) 2010 Novell, Inc (http://www.novell.com)
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
29 using System;
30 using System.Collections;
31 using System.Globalization;
32 using System.Runtime.InteropServices;
33 using System.Reflection.Emit;
34 using System.Collections.Generic;
35
36 namespace System.Reflection {
37
38 #if NET_4_0 || MOONLIGHT
39         [ComVisible (true)]
40         [ComDefaultInterfaceAttribute (typeof (_Assembly))]
41         [Serializable]
42         [ClassInterface(ClassInterfaceType.None)]
43         class MonoAssembly : Assembly {
44 #else
45         public partial class Assembly {
46 #endif
47                 public
48 #if NET_4_0 || MOONLIGHT
49                 override
50 #endif
51                 Type GetType (string name, bool throwOnError, bool ignoreCase)
52                 {
53                         Type res;
54                         if (name == null)
55                                 throw new ArgumentNullException (name);
56                         if (name.Length == 0)
57                         throw new ArgumentException ("name", "Name cannot be empty");
58
59                         res = InternalGetType (null, name, throwOnError, ignoreCase);
60 #if !(NET_4_0 || MOONLIGHT)
61                         if (res is TypeBuilder) {
62                                 if (throwOnError)
63                                         throw new TypeLoadException (string.Format ("Could not load type '{0}' from assembly '{1}'", name, this));
64                                 return null;
65                         }
66 #endif
67                         return res;
68                 }
69
70                 public
71 #if NET_4_0 || MOONLIGHT
72                 override
73 #endif
74                 Module GetModule (String name)
75                 {
76                         if (name == null)
77                                 throw new ArgumentNullException ("name");
78                         if (name.Length == 0)
79                                 throw new ArgumentException ("Name can't be empty");
80
81                         Module[] modules = GetModules (true);
82                         foreach (Module module in modules) {
83                                 if (module.ScopeName == name)
84                                         return module;
85                         }
86
87                         return null;
88                 }
89
90                 public
91 #if NET_4_0 || MOONLIGHT
92                 override
93 #endif
94                 AssemblyName[] GetReferencedAssemblies () {
95                         return GetReferencedAssemblies (this);
96                 }
97
98                 public
99 #if NET_4_0 || MOONLIGHT
100                 override
101 #endif
102                 Module[] GetModules (bool getResourceModules) {
103                         Module[] modules = GetModulesInternal ();
104
105                         if (!getResourceModules) {
106                                 var result = new List<Module> (modules.Length);
107                                 foreach (Module m in modules)
108                                         if (!m.IsResource ())
109                                                 result.Add (m);
110                                 return result.ToArray ();
111                         }
112                         else
113                                 return modules;
114                 }
115
116                 [MonoTODO ("Always returns the same as GetModules")]
117                 public
118 #if NET_4_0 || MOONLIGHT
119                 override
120 #endif
121                 Module[] GetLoadedModules (bool getResourceModules)
122                 {
123                         return GetModules (getResourceModules);
124                 }
125
126                 public
127 #if NET_4_0 || MOONLIGHT
128                 override
129 #endif
130                 Assembly GetSatelliteAssembly (CultureInfo culture)
131                 {
132                         return GetSatelliteAssembly (culture, null, true);
133                 }
134
135                 public
136 #if NET_4_0 || MOONLIGHT
137                 override
138 #endif
139                 Assembly GetSatelliteAssembly (CultureInfo culture, Version version)
140                 {
141                         return GetSatelliteAssembly (culture, version, true);
142                 }
143
144                 //FIXME remove GetManifestModule under v4, it's a v2 artifact
145                 [ComVisible (false)]
146                 public
147 #if NET_4_0 || MOONLIGHT
148                 override
149 #endif
150                 Module ManifestModule {
151                         get {
152                                 return GetManifestModule ();
153                         }
154                 }
155
156 #if !MOONLIGHT
157                 public
158 #if NET_4_0
159                 override
160 #endif
161                 bool GlobalAssemblyCache {
162                         get {
163                                 return get_global_assembly_cache ();
164                         }
165                 }
166 #endif
167
168         }
169 }
170
171