| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- //
- // FieldDefinition.cs
- //
- // Author:
- // Jb Evain (jbevain@gmail.com)
- //
- // Copyright (c) 2008 - 2011 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.
- //
- using Mono.Collections.Generic;
- namespace Mono.Cecil {
- public sealed class FieldDefinition : FieldReference, IMemberDefinition, IConstantProvider, IMarshalInfoProvider {
- ushort attributes;
- Collection<CustomAttribute> custom_attributes;
- int offset = Mixin.NotResolvedMarker;
- internal int rva = Mixin.NotResolvedMarker;
- byte [] initial_value;
- object constant = Mixin.NotResolved;
- MarshalInfo marshal_info;
- void ResolveLayout ()
- {
- if (offset != Mixin.NotResolvedMarker)
- return;
- if (!HasImage) {
- offset = Mixin.NoDataMarker;
- return;
- }
- offset = Module.Read (this, (field, reader) => reader.ReadFieldLayout (field));
- }
- public bool HasLayoutInfo {
- get {
- if (offset >= 0)
- return true;
- ResolveLayout ();
- return offset >= 0;
- }
- }
- public int Offset {
- get {
- if (offset >= 0)
- return offset;
- ResolveLayout ();
- return offset >= 0 ? offset : -1;
- }
- set { offset = value; }
- }
- void ResolveRVA ()
- {
- if (rva != Mixin.NotResolvedMarker)
- return;
- if (!HasImage)
- return;
- rva = Module.Read (this, (field, reader) => reader.ReadFieldRVA (field));
- }
- public int RVA {
- get {
- if (rva > 0)
- return rva;
- ResolveRVA ();
- return rva > 0 ? rva : 0;
- }
- }
- public byte [] InitialValue {
- get {
- if (initial_value != null)
- return initial_value;
- ResolveRVA ();
- if (initial_value == null)
- initial_value = Empty<byte>.Array;
- return initial_value;
- }
- set { initial_value = value; }
- }
- public FieldAttributes Attributes {
- get { return (FieldAttributes) attributes; }
- set { attributes = (ushort) value; }
- }
- public bool HasConstant {
- get {
- Mixin.ResolveConstant(this, ref constant, Module);
- return constant != Mixin.NoValue;
- }
- set { if (!value) constant = Mixin.NoValue; }
- }
- public object Constant {
- get { return HasConstant ? constant : null; }
- set { constant = value; }
- }
- public bool HasCustomAttributes {
- get {
- if (custom_attributes != null)
- return custom_attributes.Count > 0;
- return Mixin.GetHasCustomAttributes(this, Module);
- }
- }
- public Collection<CustomAttribute> CustomAttributes {
- get { return custom_attributes ?? (Mixin.GetCustomAttributes(this, ref custom_attributes, Module)); }
- }
- public bool HasMarshalInfo {
- get {
- if (marshal_info != null)
- return true;
- return Mixin.GetHasMarshalInfo(this, Module);
- }
- }
- public MarshalInfo MarshalInfo {
- get { return marshal_info ?? (Mixin.GetMarshalInfo(this, ref marshal_info, Module)); }
- set { marshal_info = value; }
- }
- #region FieldAttributes
- public bool IsCompilerControlled {
- get { return Mixin.GetMaskedAttributes(attributes,(ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.CompilerControlled); }
- set { attributes = Mixin.SetMaskedAttributes(attributes,(ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.CompilerControlled, value); }
- }
- public bool IsPrivate {
- get { return Mixin.GetMaskedAttributes(attributes,(ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.Private); }
- set { attributes = Mixin.SetMaskedAttributes(attributes,(ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.Private, value); }
- }
- public bool IsFamilyAndAssembly {
- get { return Mixin.GetMaskedAttributes(attributes,(ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.FamANDAssem); }
- set { attributes = Mixin.SetMaskedAttributes(attributes,(ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.FamANDAssem, value); }
- }
- public bool IsAssembly {
- get { return Mixin.GetMaskedAttributes(attributes,(ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.Assembly); }
- set { attributes = Mixin.SetMaskedAttributes(attributes,(ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.Assembly, value); }
- }
- public bool IsFamily {
- get { return Mixin.GetMaskedAttributes(attributes,(ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.Family); }
- set { attributes = Mixin.SetMaskedAttributes(attributes,(ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.Family, value); }
- }
- public bool IsFamilyOrAssembly {
- get { return Mixin.GetMaskedAttributes(attributes,(ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.FamORAssem); }
- set { attributes = Mixin.SetMaskedAttributes(attributes,(ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.FamORAssem, value); }
- }
- public bool IsPublic {
- get { return Mixin.GetMaskedAttributes(attributes,(ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.Public); }
- set { attributes = Mixin.SetMaskedAttributes(attributes,(ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.Public, value); }
- }
- public bool IsStatic {
- get { return Mixin.GetAttributes(attributes,(ushort) FieldAttributes.Static); }
- set { attributes =Mixin.SetAttributes(attributes,(ushort) FieldAttributes.Static, value); }
- }
- public bool IsInitOnly {
- get { return Mixin.GetAttributes(attributes,(ushort) FieldAttributes.InitOnly); }
- set { attributes =Mixin.SetAttributes(attributes,(ushort) FieldAttributes.InitOnly, value); }
- }
- public bool IsLiteral {
- get { return Mixin.GetAttributes(attributes,(ushort) FieldAttributes.Literal); }
- set { attributes =Mixin.SetAttributes(attributes,(ushort) FieldAttributes.Literal, value); }
- }
- public bool IsNotSerialized {
- get { return Mixin.GetAttributes(attributes,(ushort) FieldAttributes.NotSerialized); }
- set { attributes =Mixin.SetAttributes(attributes,(ushort) FieldAttributes.NotSerialized, value); }
- }
- public bool IsSpecialName {
- get { return Mixin.GetAttributes(attributes,(ushort) FieldAttributes.SpecialName); }
- set { attributes =Mixin.SetAttributes(attributes,(ushort) FieldAttributes.SpecialName, value); }
- }
- public bool IsPInvokeImpl {
- get { return Mixin.GetAttributes(attributes,(ushort) FieldAttributes.PInvokeImpl); }
- set { attributes =Mixin.SetAttributes(attributes,(ushort) FieldAttributes.PInvokeImpl, value); }
- }
- public bool IsRuntimeSpecialName {
- get { return Mixin.GetAttributes(attributes,(ushort) FieldAttributes.RTSpecialName); }
- set { attributes =Mixin.SetAttributes(attributes,(ushort) FieldAttributes.RTSpecialName, value); }
- }
- public bool HasDefault {
- get { return Mixin.GetAttributes(attributes,(ushort) FieldAttributes.HasDefault); }
- set { attributes =Mixin.SetAttributes(attributes,(ushort) FieldAttributes.HasDefault, value); }
- }
- #endregion
- public override bool IsDefinition {
- get { return true; }
- }
- public new TypeDefinition DeclaringType {
- get { return (TypeDefinition) base.DeclaringType; }
- set { base.DeclaringType = value; }
- }
- public FieldDefinition (string name, FieldAttributes attributes, TypeReference fieldType)
- : base (name, fieldType)
- {
- this.attributes = (ushort) attributes;
- }
- public override FieldDefinition Resolve ()
- {
- return this;
- }
- }
- static partial class Mixin {
- public const int NotResolvedMarker = -2;
- public const int NoDataMarker = -1;
- }
- }
|