17 Jan
2009

Abstracting Request State

Category:General PostTag: :

Sometimes it’s useful to be able to store an object somewhere so you can easily access it for the duration of the current request, instead of having to pass it around with every method call that you make. That request could be an ASP.NET request, or a request in your WCF service layer. I used to resort to storing these objects in ThreadStatic fields (which is basically a static reference for each thread), thinking that it would be safe because only one thread handles a complete request. Last week i read somewhere (can’t find the link again, sorry) that under heavy load, some requests can be paused and resumed by another thread. If you’re using ThreadStatic fields, this could lead so major issues which would be a royal pain in the ass to debug. In order to prevent this possible problem, i wanted to have a safe way to keep state that should be available for the duration of a single request.

If your code executes in an ASP.NET environment, you can safely use the HttpContext.Current.Items dictionary for this. If your code executes in a WCF environment, you can store these things in the OperationContext. I don’t want my code to be tightly coupled to either ASP.NET or WCF, so i wanted some kind of abstraction. This is the approach that i came up with.

First, we have the IRequestState interface:

    public interface IRequestState

    {

        T Get<T>(string key);

        void Store(string key, object something);

    }

This just offers a way to store objects and retrieve them. That’s pretty much al we need, right?

Then we have the ASP.NET implementation:

    public class AspNetRequestState : IRequestState

    {

        public T Get<T>(string key)

        {

            return (T)HttpContext.Current.Items[key];

        }

 

        public void Store(string key, object something)

        {

            HttpContext.Current.Items[key] = something;

        }

    }

Very simple stuff… the AspNetRequestState implementation simply uses the HttpContext.Current.Items dictionary underneith to store and retrieve the objects.

For WCF, it is slightly more complicated. Every WCF call is an operation and it has a context as well, which is provided through the OperationContext class. The OperationContext class doesn’t have an Items dictionary like HttpContext does, but it does have a way to add extensions to the context. We can use this extensions mechanism to store state which should be kept around for the duration of the current WCF operation. First, we need to define our Extension:

    public class MyExtension : IExtension<OperationContext>

    {

        public MyExtension()

        {

            State = new Dictionary<string, object>();

        }

 

        public IDictionary<string, object> State { get; private set; }

 

        // we don't really need implementations for these methods in this case

        public void Attach(OperationContext owner) { }

        public void Detach(OperationContext owner) { }

    }

The IExtension interface that we must implement defines the Attach and Detach methods but we don’t really need them for what we’re trying to do. This extension simply initializes a Dictionary instance and exposes it with a public getter. Now we can easily create our WcfRequestState implementation:

    public class WcfRequestState : IRequestState

    {

        private static IDictionary<string, object> State

        {

            get

            {

                var extension = OperationContext.Current.Extensions.Find<MyExtension>();

 

                if (extension == null)

                {

                    extension = new MyExtension();

                    OperationContext.Current.Extensions.Add(extension);

                }

 

                return extension.State;

            }

        }

 

        public T Get<T>(string key)

        {

            return (T)State[key];

        }

 

        public void Store(string key, object something)

        {

            State[key] = something;

        }

    }

Pretty simple as well, and pretty similar to the AspNetRequestState implementation. The AspNetRequestState implementation is able to simply use the HttpContext.Current.Items dictionary, which we can’t use here. So when we want to access the ‘State’ dictionary in this implementation, we look it up in the current OperationContext’s Extensions collection. If it’s not there yet, we add a new instance of our MyExtension class to the OperationContext’s Extensions collection.

Now we can use this wherever we need to store something for the duration of the current request, regardless of whether we’re executing in an ASP.NET or WCF context. Just configure your IoC container to create instances of AspNetRequestState whenever an IRequestState instance is needed in your WebApplication, or configure it to return WcfRequestState instances in your WCF service. The code that needs to store some request state will no longer have to resort to using ThreadStatic fields, and it doesn’t need to know about it’s runtime environment either. It merely needs an instance of IRequestState.

3 thoughts on “Abstracting Request State

  1. Nice, just implemented something based on this where I wanted to share a data schema between a web service and a web app – thanks for the inspiration/guide!

Comments are closed.