Generate NUnit interpretation of whether "mono --regressions" passed
[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 #if !FULL_AOT_RUNTIME
34 using System.Reflection.Emit;
35 #endif
36 using System.Collections.Generic;
37
38 namespace System.Reflection {
39
40         [ComVisible (true)]
41         [ComDefaultInterfaceAttribute (typeof (_Assembly))]
42         [Serializable]
43         [ClassInterface(ClassInterfaceType.None)]
44         class MonoAssembly : Assembly {
45                 public
46                 override
47                 Type GetType (string name, bool throwOnError, bool ignoreCase)
48                 {
49                         Type res;
50                         if (name == null)
51                                 throw new ArgumentNullException (name);
52                         if (name.Length == 0)
53                         throw new ArgumentException ("name", "Name cannot be empty");
54
55                         res = InternalGetType (null, name, throwOnError, ignoreCase);
56                         return res;
57                 }
58
59                 public
60                 override
61                 Module GetModule (String name)
62                 {
63                         if (name == null)
64                                 throw new ArgumentNullException ("name");
65                         if (name.Length == 0)
66                                 throw new ArgumentException ("Name can't be empty");
67
68                         Module[] modules = GetModules (true);
69                         foreach (Module module in modules) {
70                                 if (module.ScopeName == name)
71                                         return module;
72                         }
73
74                         return null;
75                 }
76
77                 public
78                 override
79                 AssemblyName[] GetReferencedAssemblies () {
80                         return GetReferencedAssemblies (this);
81                 }
82
83                 public
84                 override
85                 Module[] GetModules (bool getResourceModules) {
86                         Module[] modules = GetModulesInternal ();
87
88                         if (!getResourceModules) {
89                                 var result = new List<Module> (modules.Length);
90                                 foreach (Module m in modules)
91                                         if (!m.IsResource ())
92                                                 result.Add (m);
93                                 return result.ToArray ();
94                         }
95                         else
96                                 return modules;
97                 }
98
99                 [MonoTODO ("Always returns the same as GetModules")]
100                 public
101                 override
102                 Module[] GetLoadedModules (bool getResourceModules)
103                 {
104                         return GetModules (getResourceModules);
105                 }
106
107                 public
108                 override
109                 Assembly GetSatelliteAssembly (CultureInfo culture)
110                 {
111                         return GetSatelliteAssembly (culture, null, true);
112                 }
113
114                 public
115                 override
116                 Assembly GetSatelliteAssembly (CultureInfo culture, Version version)
117                 {
118                         return GetSatelliteAssembly (culture, version, true);
119                 }
120
121                 //FIXME remove GetManifestModule under v4, it's a v2 artifact
122                 [ComVisible (false)]
123                 public
124                 override
125                 Module ManifestModule {
126                         get {
127                                 return GetManifestModule ();
128                         }
129                 }
130
131                 public
132                 override
133                 bool GlobalAssemblyCache {
134                         get {
135                                 return get_global_assembly_cache ();
136                         }
137                 }
138         }
139 }
140
141