Usage Guidelines for Using Castle DynamicProxy in .NET .NET Applications

I start with Castle DynamicProxy and I have this sample to track changes to the properties of an object.

Questions:

  • Should I cache (in a static field) an instance of ProxyGenerator (), which I use in AsTrackable ()? I'm going to use ASP.NET in a web application, and I was not sure if the class is thread safe? Is it expensive to create?
  • If I leave the code as is, will the generated proxy types be reused by various instances of ProxyGenerator. I read the caching tutorial , but not sure what the "module area" means.
  • Is there any other performance tip for improving code?

the code:

class Program
{
    static void Main(string[] args)
    {
        var p = new Person { Name = "Jay" }.AsTrackable();

        //here changed properties list should be empty.
        var changedProperties = p.GetChangedProperties();

        p.Name = "May";

        //here changed properties list should have one item.
        changedProperties = p.GetChangedProperties();
    }
}

public static class Ext
{
    public static T AsTrackable<T>(this T instance) where T : class
    {
        return new ProxyGenerator().CreateClassProxyWithTarget
        (
          instance, 
          new PropertyChangeTrackingInterceptor()
        );
    }

    public static HashSet<string> GetChangedProperties<T>(this T instance) 
    where T : class
    {
        var proxy = instance as IProxyTargetAccessor;

        if (proxy != null)
        {
            var interceptor = proxy.GetInterceptors()
                                   .Select(i => i as IChangedProperties)
                                   .First();

            if (interceptor != null)
            {
                return interceptor.Properties;
            }
        }

        return new HashSet<string>();
    }
}

interface IChangedProperties
{
    HashSet<string> Properties { get; }
}

public class PropertyChangeTrackingInterceptor : IInterceptor, IChangedProperties
{
    public void Intercept(IInvocation invocation)
    {
        invocation.Proceed();

        this.Properties.Add(invocation.Method.Name);
    }

    private HashSet<string> properties = new HashSet<string>();

    public HashSet<string> Properties
    {
        get { return this.properties; }
        private set { this.properties = value; }
    }
}

public class Person
{
    public virtual string Name { get; set; }
    public virtual int Age { get; set; }
}

}

+3
1

-, . API, , , - .

+4

All Articles