Add IKVM.Reflection
[mono.git] / mcs / class / IKVM.Reflection / ManifestResourceInfo.cs
1 /*
2   Copyright (C) 2009 Jeroen Frijters
3
4   This software is provided 'as-is', without any express or implied
5   warranty.  In no event will the authors be held liable for any damages
6   arising from the use of this software.
7
8   Permission is granted to anyone to use this software for any purpose,
9   including commercial applications, and to alter it and redistribute it
10   freely, subject to the following restrictions:
11
12   1. The origin of this software must not be misrepresented; you must not
13      claim that you wrote the original software. If you use this software
14      in a product, an acknowledgment in the product documentation would be
15      appreciated but is not required.
16   2. Altered source versions must be plainly marked as such, and must not be
17      misrepresented as being the original software.
18   3. This notice may not be removed or altered from any source distribution.
19
20   Jeroen Frijters
21   jeroen@frijters.net
22   
23 */
24 using System;
25 using IKVM.Reflection.Reader;
26 using IKVM.Reflection.Metadata;
27
28 namespace IKVM.Reflection
29 {
30         public class ManifestResourceInfo
31         {
32                 private readonly ModuleReader module;
33                 private readonly int index;
34
35                 internal ManifestResourceInfo(ModuleReader module, int index)
36                 {
37                         this.module = module;
38                         this.index = index;
39                 }
40
41                 public ResourceLocation ResourceLocation
42                 {
43                         get
44                         {
45                                 int implementation = module.ManifestResource.records[index].Implementation;
46                                 if ((implementation >> 24) == AssemblyRefTable.Index)
47                                 {
48                                         //return ResourceLocation.ContainedInAnotherAssembly;
49                                         throw new NotImplementedException();
50                                 }
51                                 else if ((implementation >> 24) == FileTable.Index)
52                                 {
53                                         if ((implementation & 0xFFFFFF) == 0)
54                                         {
55                                                 return ResourceLocation.ContainedInManifestFile | ResourceLocation.Embedded;
56                                         }
57                                         return 0;
58                                 }
59                                 else
60                                 {
61                                         throw new BadImageFormatException();
62                                 }
63                         }
64                 }
65
66                 public Assembly ReferencedAssembly
67                 {
68                         get { throw new NotImplementedException(); }
69                 }
70
71                 public string FileName
72                 {
73                         get
74                         {
75                                 int implementation = module.ManifestResource.records[index].Implementation;
76                                 if ((implementation >> 24) == FileTable.Index)
77                                 {
78                                         if ((implementation & 0xFFFFFF) == 0)
79                                         {
80                                                 return null;
81                                         }
82                                         else
83                                         {
84                                                 return module.GetString(module.File.records[(implementation & 0xFFFFFF) - 1].Name);
85                                         }
86                                 }
87                                 throw new NotImplementedException();
88                         }
89                 }
90         }
91 }