Click here to Skip to main content
6,596,602 members and growing! (20,808 online)
Email Password   helpLost your password?
Languages » C# » General     Advanced License: The Code Project Open License (CPOL)

Fast Dynamic Property Access with C#

By James Nies

Reflecting on Properties is nice, but often it can be too slow. This article describes an alternative method for dynamic property access.
C#, MSIL, Windows, .NET 1.1VS.NET2003, Dev
Posted:22 Mar 2005
Views:118,781
Bookmarked:107 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
37 votes for this article.
Popularity: 7.59 Rating: 4.84 out of 5

1

2
1 vote, 2.7%
3
5 votes, 13.5%
4
31 votes, 83.8%
5

Sample Image - Fast_Dynamic_Properties.png

Introduction

Reflection is very useful for dynamic processing. However, if you have to repeatedly reflect on a property, say in a processing loop, you'll soon find that it can lead to performance problems. I ran into this particular problem in developing a rules engine that will be able to validate collections. I thought I would share this snippet of code, since I think it could be used in a variety of situations.

In this article I'll provide a fast, alternative solution for dynamic property access.

Implementation

My goal was to develop a class that could create a Type at runtime for direct access to the Get and Set methods of a property. This class would be provided with the target object Type and the property name it should access. I had considered runtime compiling, but then I learned about Reflection.Emit and its ability to create types at runtime through the use of MSIL. This was my first experience writing MSIL code and I found Ben Ratzlaff's Populating a PropertyGrid using Reflection.Emit to be a very helpful start.

In order to be able to compile code against against a Type that will be generated at runtime, an interface had to be created to define the generated types.

/// <summary>

/// The IPropertyAccessor interface defines a property

/// accessor.

/// </summary>

public interface IPropertyAccessor
{
    /// <summary>

    /// Gets the value stored in the property for

    /// the specified target.

    /// </summary>

    /// <param name="target">Object to retrieve

    /// the property from.</param>

    /// <returns>Property value.</returns>

    object Get(object target);
    /// <summary>

    /// Sets the value for the property of

    /// the specified target.

    /// </summary>

    /// <param name="target">Object to set the

    /// property on.</param>

    /// <param name="value">Property value.</param>

    void Set(object target, object value);
}

The concrete PropertyAccessor class generates a Type at runtime that conforms to this interface and serves as a proxy layer to the generated Type. In its constructor it simply needs to be provided with the target object Type and the name of the property it should provide access to. All of the Reflection.Emit code is performed in the EmitAssembly method.

/// <summary>

/// The PropertyAccessor class provides fast dynamic access

/// to a property of a specified target class.

/// </summary>

public class PropertyAccessor : IPropertyAccessor
{
    /// <summary>

    /// Creates a new property accessor.

    /// </summary>

    /// <param name="targetType">Target object type.</param>

    /// <param name="property">Property name.</param>

    public PropertyAccessor(Type targetType, string property)
    {
        this.mTargetType = targetType;
        this.mProperty = property;
        PropertyInfo propertyInfo = 
            targetType.GetProperty(property);
        //

        // Make sure the property exists

        //

        if(propertyInfo == null)
        {
            throw new 
              PropertyAccessorException(string.Format("Property \"{0}\" does" + 
              " not exist for type " + "{1}.", property, targetType));
        }
        else
        {
            this.mCanRead = propertyInfo.CanRead;
            this.mCanWrite = propertyInfo.CanWrite;
            this.mPropertyType = propertyInfo.PropertyType;
        }
    }

    /// <summary>

    /// Gets the property value from the specified target.

    /// </summary>

    /// <param name="target">Target object.</param>

    /// <returns>Property value.</returns>

    public object Get(object target)
    {
        if(mCanRead)
        {
            if(this.mEmittedPropertyAccessor == null)
            {
                this.Init();
            }
            return this.mEmittedPropertyAccessor.Get(target);
        }
        else
        {
            throw new 
              PropertyAccessorException(string.Format("Property \"{0}\" does" + 
              " not have a get method.", mProperty));
        }
    }

    /// <summary>

    /// Sets the property for the specified target.

    /// </summary>

    /// <param name="target">Target object.</param>

    /// <param name="value">Value to set.</param>

    public void Set(object target, object value)
    {
        if(mCanWrite)
        {
            if(this.mEmittedPropertyAccessor == null)
            {
                this.Init();
            }
            //

            // Set the property value

            //

            this.mEmittedPropertyAccessor.Set(target, value);
        }
        else
        {
            throw new 
              PropertyAccessorException(string.Format("Property \"{0}\" does" + 
              " not have a set method.", mProperty));
        }
    }

    /// <summary>

    /// Whether or not the Property supports read access.

    /// </summary>

    public bool CanRead
    {
        get
        {
            return this.mCanRead;
        }
    }

    /// <summary>

    /// Whether or not the Property supports write access.

    /// </summary>

    public bool CanWrite
    {
        get
        {
            return this.mCanWrite;
        }
    }

    /// <summary>

    /// The Type of object this property accessor was

    /// created for.

    /// </summary>

    public Type TargetType
    {
        get
        {
            return this.mTargetType;
        }
    }

    /// <summary>

    /// The Type of the Property being accessed.

    /// </summary>

    public Type PropertyType
    {
        get
        {
            return this.mPropertyType;
        }
    }

    private Type mTargetType;
    private string mProperty;
    private Type mPropertyType;
    private IPropertyAccessor mEmittedPropertyAccessor;
    private Hashtable mTypeHash;
    private bool mCanRead;
    private bool mCanWrite;

    /// <summary>

    /// This method generates creates a new assembly containing

    /// the Type that will provide dynamic access.

    /// </summary>

    private void Init()
    {
        this.InitTypes();
        // Create the assembly and an instance of the 

        // property accessor class.

        Assembly assembly = EmitAssembly();
        mEmittedPropertyAccessor = 
          assembly.CreateInstance("Property") as IPropertyAccessor;
        if(mEmittedPropertyAccessor == null)
        {
            throw new Exception("Unable to create property accessor.");
        }
    }

    /// <summary>

    /// Thanks to Ben Ratzlaff for this snippet of code

    /// http://www.codeproject.com/cs/miscctrl/CustomPropGrid.asp

    /// 

    /// "Initialize a private hashtable with type-opCode pairs 

    /// so i dont have to write a long if/else statement when outputting msil"

    /// </summary>

    private void InitTypes()
    {
        mTypeHash=new Hashtable();
        mTypeHash[typeof(sbyte)]=OpCodes.Ldind_I1;
        mTypeHash[typeof(byte)]=OpCodes.Ldind_U1;
        mTypeHash[typeof(char)]=OpCodes.Ldind_U2;
        mTypeHash[typeof(short)]=OpCodes.Ldind_I2;
        mTypeHash[typeof(ushort)]=OpCodes.Ldind_U2;
        mTypeHash[typeof(int)]=OpCodes.Ldind_I4;
        mTypeHash[typeof(uint)]=OpCodes.Ldind_U4;
        mTypeHash[typeof(long)]=OpCodes.Ldind_I8;
        mTypeHash[typeof(ulong)]=OpCodes.Ldind_I8;
        mTypeHash[typeof(bool)]=OpCodes.Ldind_I1;
        mTypeHash[typeof(double)]=OpCodes.Ldind_R8;
        mTypeHash[typeof(float)]=OpCodes.Ldind_R4;
    }

    /// <summary>

    /// Create an assembly that will provide the get and set methods.

    /// </summary>

    private Assembly EmitAssembly()
    {
        //

        // Create an assembly name

        //

        AssemblyName assemblyName = new AssemblyName();
        assemblyName.Name = "PropertyAccessorAssembly";
        //

        // Create a new assembly with one module

        //

        AssemblyBuilder newAssembly = 
           Thread.GetDomain().DefineDynamicAssembly(assemblyName, 
           AssemblyBuilderAccess.Run);
        ModuleBuilder newModule = 
           newAssembly.DefineDynamicModule("Module");
        //

        // Define a public class named "Property" in the assembly.

        //

        TypeBuilder myType = 
           newModule.DefineType("Property", TypeAttributes.Public);
        //

        // Mark the class as implementing IPropertyAccessor. 

        //

        myType.AddInterfaceImplementation(typeof(IPropertyAccessor));
        // Add a constructor

        ConstructorBuilder constructor = 
           myType.DefineDefaultConstructor(MethodAttributes.Public);
        //

        // Define a method for the get operation. 

        //

        Type[] getParamTypes = new Type[] {typeof(object)};
        Type getReturnType = typeof(object);
        MethodBuilder getMethod = 
          myType.DefineMethod("Get", 
          MethodAttributes.Public | MethodAttributes.Virtual, 
          getReturnType, 
          getParamTypes);
        //

        // From the method, get an ILGenerator. This is used to

        // emit the IL that we want.

        //

        ILGenerator getIL = getMethod.GetILGenerator();

        //

        // Emit the IL. 

        //

        MethodInfo targetGetMethod = this.mTargetType.GetMethod("get_" + 
                                                    this.mProperty);
        if(targetGetMethod != null)
        {
            getIL.DeclareLocal(typeof(object));
            getIL.Emit(OpCodes.Ldarg_1); //Load the first argument

            //(target object)

            //Cast to the source type

            getIL.Emit(OpCodes.Castclass, this.mTargetType);
            //Get the property value

            getIL.EmitCall(OpCodes.Call, targetGetMethod, null);
            if(targetGetMethod.ReturnType.IsValueType)
            {
                getIL.Emit(OpCodes.Box, targetGetMethod.ReturnType);
                //Box if necessary

            }
            getIL.Emit(OpCodes.Stloc_0); //Store it


            getIL.Emit(OpCodes.Ldloc_0);
        }
        else
        {
            getIL.ThrowException(typeof(MissingMethodException));
        }
        getIL.Emit(OpCodes.Ret);

        //

        // Define a method for the set operation.

        //

        Type[] setParamTypes = new Type[] {typeof(object), typeof(object)};
        Type setReturnType = null;
        MethodBuilder setMethod = 
            myType.DefineMethod("Set", 
           MethodAttributes.Public | MethodAttributes.Virtual, 
           setReturnType, 
           setParamTypes);
        //

        // From the method, get an ILGenerator. This is used to

        // emit the IL that we want.

        //

        ILGenerator setIL = setMethod.GetILGenerator();
        //

        // Emit the IL. 

        //

        MethodInfo targetSetMethod = 
            this.mTargetType.GetMethod("set_" + this.mProperty);
        if(targetSetMethod != null)
        {
            Type paramType = targetSetMethod.GetParameters()[0].ParameterType;
            setIL.DeclareLocal(paramType);
            setIL.Emit(OpCodes.Ldarg_1); //Load the first argument 

            //(target object)

            //Cast to the source type

            setIL.Emit(OpCodes.Castclass, this.mTargetType);            
            setIL.Emit(OpCodes.Ldarg_2); //Load the second argument 

            //(value object)

            if(paramType.IsValueType)
            {
                setIL.Emit(OpCodes.Unbox, paramType); //Unbox it 

                if(mTypeHash[paramType]!=null) //and load

                {
                    OpCode load = (OpCode)mTypeHash[paramType];
                    setIL.Emit(load);
                }
                else
                {
                    setIL.Emit(OpCodes.Ldobj,paramType);
                }
            }
            else
            {
                setIL.Emit(OpCodes.Castclass, paramType); //Cast class

            }

            setIL.EmitCall(OpCodes.Callvirt, 
               targetSetMethod, null); //Set the property value

        }
        else
        {
            setIL.ThrowException(typeof(MissingMethodException));
        }
        setIL.Emit(OpCodes.Ret);
        //

        // Load the type

        //

        myType.CreateType();
        return newAssembly;
    }
}

Discussion

Although the PropertyAccessor class must reflect on the target Type the first time the property is accessed (for either read or write), this reflection only has to be done once. All subsequent calls to Get or Set will use the generated IL code.

Run the sample project for a performance demonstration. I've also included an NUnit test fixture.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

James Nies


Member
James Nies is a graduate of the University of Wyoming's Department of Computer Science. He is currently employed as a software developer and has been programming in C#, his favorite language, for the last 5 years. James recently formed a small software development and web design company, Astral Softworks, LLC.
Occupation: Software Developer
Company: Astral Softworks, LLC
Location: United States United States

Other popular C# articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 42 (Total in Forum: 42) (Refresh)FirstPrevNext
QuestionDynamic properties work fine but what about dynamic Methods and ctors? [modified] PinmemberDoomii11:50 5 Aug '08  
GeneralVariant with lambda PinmemberMaskaev4:05 9 Apr '08  
GeneralRe: Variant with lambda PinmemberAnastasiosyal3:54 22 Oct '08  
GeneralRe: Variant with lambda PinmemberMaskaev4:37 22 Oct '08  
Generalpagefile grows boundlessly Pinmemberbobman7717:35 19 Sep '07  
GeneralRe: pagefile grows boundlessly PinmemberJames Nies22:33 22 Sep '07  
GeneralModuleBuilder's DefineType throws exception occasionally PinmemberMandeep Singh Bhatia0:12 5 Jun '07  
GeneralQuick Port to Generics PinmemberTobias Hertkorn16:20 30 May '06  
QuestionRe: Quick Port to Generics PinmemberLeela Krishna0:34 21 Jan '07  
GeneralRe: Quick Port to Generics PinmemberTobias Hertkorn11:52 13 Apr '07  
GeneralProblem with Value Types PinmemberWasp.NET23:26 11 May '06  
QuestionModify to getting all properties Pinmembersavasorama4:21 6 Jan '06  
AnswerRe: Modify to getting all properties Pinmembersgheeren7:27 16 May '06  
GeneralCall method PinmemberNetTry4:18 9 Nov '05  
QuestionSetting null values gives an Exception PinmemberPatrick Heymans22:35 2 Nov '05  
AnswerRe: Setting null values gives an Exception PinmemberJames Nies12:23 6 Nov '05  
GeneralExtended for field accessors Pinmembersgheeren5:54 22 Jul '05  
GeneralRe: Extended for field accessors PinmemberMarc Brooks9:24 15 May '06  
GeneralRe: Extended for field accessors Pinmembersgheeren6:37 16 May '06  
AnswerRe: Extended for field accessors [modified] Pinmembersgheeren5:31 26 May '06  
GeneralRe: Extended for field accessors Pinmembersgheeren6:50 16 May '06  
Generalcongratulations!! and a question Pinmemberrurum13:10 22 Jun '05  
GeneralRe: congratulations!! and a question PinmemberJames Nies20:34 15 Jul '05  
GeneralNice Pinmemberreinux11:42 4 Apr '05  
GeneralA few optimizations PinmemberKris Vandermotten9:12 29 Mar '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 22 Mar 2005
Editor: Smitha Vijayan
Copyright 2005 by James Nies
Everything else Copyright © CodeProject, 1999-2009
Web12 | Advertise on the Code Project