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 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
|
//
// ModuleDefinition.cs
//
// Author:
// Jb Evain (jbevain@gmail.com)
//
// (C) 2005 Jb Evain
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
namespace Mono.Cecil {
using System;
using SR = System.Reflection;
using SS = System.Security;
using SSP = System.Security.Permissions;
using System.Text;
using Mono.Cecil;
using Mono.Cecil.Binary;
using Mono.Cecil.Metadata;
using Mono.Xml;
public sealed class ModuleDefinition : ModuleReference, IModuleDefinition {
Guid m_mvid;
bool m_main;
bool m_manifestOnly;
AssemblyNameReferenceCollection m_asmRefs;
ModuleReferenceCollection m_modRefs;
ResourceCollection m_res;
TypeDefinitionCollection m_types;
TypeReferenceCollection m_refs;
ExternTypeCollection m_externs;
MemberReferenceCollection m_members;
CustomAttributeCollection m_customAttrs;
AssemblyDefinition m_asm;
Image m_image;
ImageReader m_imgReader;
ReflectionController m_controller;
SecurityDeclarationReader m_secReader;
public Guid Mvid {
get { return m_mvid; }
set { m_mvid = value; }
}
public bool Main {
get { return m_main; }
set { m_main = value; }
}
public AssemblyNameReferenceCollection AssemblyReferences {
get { return m_asmRefs; }
}
public ModuleReferenceCollection ModuleReferences {
get { return m_modRefs; }
}
public ResourceCollection Resources {
get { return m_res; }
}
public TypeDefinitionCollection Types {
get { return m_types; }
}
public TypeReferenceCollection TypeReferences {
get { return m_refs; }
}
public MemberReferenceCollection MemberReferences {
get { return m_members; }
}
public ExternTypeCollection ExternTypes {
get {
if (m_externs == null)
m_externs = new ExternTypeCollection (this);
return m_externs;
}
}
public CustomAttributeCollection CustomAttributes {
get {
if (m_customAttrs == null)
m_customAttrs = new CustomAttributeCollection (this);
return m_customAttrs;
}
}
public AssemblyDefinition Assembly {
get { return m_asm; }
}
internal ReflectionController Controller {
get { return m_controller; }
}
internal ImageReader ImageReader {
get { return m_imgReader; }
}
public Image Image {
get { return m_image; }
set {
m_image = value;
m_secReader = null;
}
}
public ModuleDefinition (string name, AssemblyDefinition asm) :
this (name, asm, null, false)
{
}
public ModuleDefinition (string name, AssemblyDefinition asm, bool main) :
this (name, asm, null, main)
{
}
internal ModuleDefinition (string name, AssemblyDefinition asm, StructureReader reader) :
this (name, asm, reader, false)
{
}
internal ModuleDefinition (string name, AssemblyDefinition asm, StructureReader reader, bool main) : base (name)
{
if (asm == null)
throw new ArgumentNullException ("asm");
if (name == null || name.Length == 0)
throw new ArgumentNullException ("name");
m_asm = asm;
m_main = main;
#if !CF_1_0
m_mvid = Guid.NewGuid ();
#endif
if (reader != null) {
m_image = reader.Image;
m_imgReader = reader.ImageReader;
m_manifestOnly = reader.ManifestOnly;
} else
m_image = Image.CreateImage ();
m_modRefs = new ModuleReferenceCollection (this);
m_asmRefs = new AssemblyNameReferenceCollection (this);
m_res = new ResourceCollection (this);
m_types = new TypeDefinitionCollection (this);
m_types.OnTypeDefinitionAdded += new TypeDefinitionEventHandler (OnTypeDefinitionAdded);
m_types.OnTypeDefinitionRemoved += new TypeDefinitionEventHandler (OnTypeDefinitionRemoved);
m_refs = new TypeReferenceCollection (this);
m_refs.OnTypeReferenceAdded += new TypeReferenceEventHandler (OnTypeReferenceAdded);
m_refs.OnTypeReferenceRemoved += new TypeReferenceEventHandler (OnTypeReferenceRemoved);
m_members = new MemberReferenceCollection (this);
m_controller = new ReflectionController (this);
}
void OnTypeDefinitionAdded (Object sender, TypeDefinitionEventArgs ea)
{
if (ea.TypeDefinition.Module != null)
throw new ReflectionException ("Type is already attached, clone it instead");
ea.TypeDefinition.Module = this;
ea.TypeDefinition.AttachToScope (this);
}
void OnTypeDefinitionRemoved (Object sender, TypeDefinitionEventArgs ea)
{
ea.TypeDefinition.Module = null;
}
void OnTypeReferenceAdded (Object sender, TypeReferenceEventArgs ea)
{
ea.TypeReference.Module = this;
}
void OnTypeReferenceRemoved (Object sender, TypeReferenceEventArgs ea)
{
ea.TypeReference.Module = null;
}
public IMetadataTokenProvider LookupByToken (MetadataToken token)
{
return m_controller.Reader.LookupByToken (token);
}
public IMetadataTokenProvider LookupByToken (TokenType table, int rid)
{
return LookupByToken (new MetadataToken (table, (uint) rid));
}
void CheckContext (TypeDefinition context)
{
if (context == null)
throw new ArgumentNullException ("context");
if (context.Module != this)
throw new ArgumentException ("The context parameter does not belongs to this module");
if (context.GenericParameters.Count == 0)
throw new ArithmeticException ("The context parameter is not a generic type");
}
ImportContext GetContext ()
{
return new ImportContext (m_controller.Helper);
}
ImportContext GetContext (TypeDefinition context)
{
return new ImportContext (m_controller.Helper, context);
}
public TypeReference Import (Type type)
{
if (type == null)
throw new ArgumentNullException ("type");
return m_controller.Helper.ImportSystemType (type, GetContext ());
}
public TypeReference Import (Type type, TypeDefinition context)
{
if (type == null)
throw new ArgumentNullException ("type");
CheckContext (context);
return m_controller.Helper.ImportSystemType (type, GetContext (context));
}
public MethodReference Import (SR.MethodBase meth)
{
if (meth == null)
throw new ArgumentNullException ("meth");
if (meth is SR.ConstructorInfo)
return m_controller.Helper.ImportConstructorInfo (
meth as SR.ConstructorInfo, GetContext ());
else
return m_controller.Helper.ImportMethodInfo (
meth as SR.MethodInfo, GetContext ());
}
public MethodReference Import (SR.MethodBase meth, TypeDefinition context)
{
if (meth == null)
throw new ArgumentNullException ("meth");
CheckContext (context);
if (meth is SR.ConstructorInfo)
return m_controller.Helper.ImportConstructorInfo (
meth as SR.ConstructorInfo, GetContext (context));
else
return m_controller.Helper.ImportMethodInfo (
meth as SR.MethodInfo, GetContext (context));
}
public FieldReference Import (SR.FieldInfo field)
{
if (field == null)
throw new ArgumentNullException ("field");
return m_controller.Helper.ImportFieldInfo (field, GetContext ());
}
public FieldReference Import (SR.FieldInfo field, TypeDefinition context)
{
if (field == null)
throw new ArgumentNullException ("field");
CheckContext (context);
return m_controller.Helper.ImportFieldInfo (field, GetContext (context));
}
public TypeReference Import (TypeReference type)
{
if (type == null)
throw new ArgumentNullException ("type");
return m_controller.Helper.ImportTypeReference (type, GetContext ());
}
public TypeReference Import (TypeReference type, TypeDefinition context)
{
if (type == null)
throw new ArgumentNullException ("type");
CheckContext (context);
return m_controller.Helper.ImportTypeReference (type, GetContext (context));
}
public MethodReference Import (MethodReference meth)
{
if (meth == null)
throw new ArgumentNullException ("meth");
return m_controller.Helper.ImportMethodReference (meth, GetContext ());
}
public MethodReference Import (MethodReference meth, TypeDefinition context)
{
if (meth == null)
throw new ArgumentNullException ("meth");
CheckContext (context);
return m_controller.Helper.ImportMethodReference (meth, GetContext (context));
}
public FieldReference Import (FieldReference field)
{
if (field == null)
throw new ArgumentNullException ("field");
return m_controller.Helper.ImportFieldReference (field, GetContext ());
}
public FieldReference Import (FieldReference field, TypeDefinition context)
{
if (field == null)
throw new ArgumentNullException ("field");
CheckContext (context);
return m_controller.Helper.ImportFieldReference (field, GetContext (context));
}
public TypeDefinition Inject (TypeDefinition type)
{
if (type == null)
throw new ArgumentNullException ("type");
return m_controller.Helper.ImportTypeDefinition (type, GetContext (type));
}
public TypeDefinition Inject (TypeDefinition type, TypeDefinition context)
{
if (type == null)
throw new ArgumentNullException ("type");
CheckContext (context);
return m_controller.Helper.ImportTypeDefinition (type, GetContext (context));
}
public MethodDefinition Inject (MethodDefinition meth)
{
if (meth == null)
throw new ArgumentNullException ("meth");
return m_controller.Helper.ImportMethodDefinition (meth, GetContext ());
}
public MethodDefinition Inject (MethodDefinition meth, TypeDefinition context)
{
if (meth == null)
throw new ArgumentNullException ("meth");
CheckContext (context);
return m_controller.Helper.ImportMethodDefinition (meth, GetContext (context));
}
public FieldDefinition Inject (FieldDefinition field)
{
if (field == null)
throw new ArgumentNullException ("field");
return m_controller.Helper.ImportFieldDefinition (field, GetContext ());
}
public FieldDefinition Inject (FieldDefinition field, TypeDefinition context)
{
if (field == null)
throw new ArgumentNullException ("field");
CheckContext (context);
return m_controller.Helper.ImportFieldDefinition (field, GetContext (context));
}
public void FullLoad ()
{
if (m_manifestOnly)
m_controller.Reader.VisitModuleDefinition (this);
foreach (TypeDefinition type in this.Types) {
foreach (MethodDefinition meth in type.Methods)
meth.LoadBody ();
foreach (MethodDefinition ctor in type.Constructors)
ctor.LoadBody ();
}
}
public byte [] GetAsByteArray (CustomAttribute ca)
{
CustomAttribute customAttr = ca;
if (!ca.IsReadable)
if (customAttr.Blob != null)
return customAttr.Blob;
else
return new byte [0];
return m_controller.Writer.SignatureWriter.CompressCustomAttribute (
m_controller.Writer.GetCustomAttributeSig (ca), ca.Constructor);
}
public byte [] GetAsByteArray (SecurityDeclaration dec)
{
// TODO - add support for 2.0 format
// note: the 1.x format is still supported in 2.0 so this isn't an immediate problem
if (!dec.IsReadable)
return dec.Blob;
#if !CF_1_0 && !CF_2_0
if (dec.PermissionSet != null)
return Encoding.Unicode.GetBytes (dec.PermissionSet.ToXml ().ToString ());
#endif
return new byte [0];
}
public CustomAttribute FromByteArray (MethodReference ctor, byte [] data)
{
return m_controller.Reader.GetCustomAttribute (ctor, data);
}
public SecurityDeclaration FromByteArray (SecurityAction action, byte [] declaration)
{
if (m_secReader == null)
m_secReader = new SecurityDeclarationReader (Image.MetadataRoot, m_controller.Reader);
return m_secReader.FromByteArray (action, declaration);
}
public override void Accept (IReflectionStructureVisitor visitor)
{
visitor.VisitModuleDefinition (this);
this.AssemblyReferences.Accept (visitor);
this.ModuleReferences.Accept (visitor);
this.Resources.Accept (visitor);
}
public void Accept (IReflectionVisitor visitor)
{
visitor.VisitModuleDefinition (this);
this.Types.Accept (visitor);
this.TypeReferences.Accept (visitor);
}
public override string ToString ()
{
string s = (m_main ? "(main), Mvid=" : "Mvid=");
return s + m_mvid.ToString ();
}
}
}
|