Using “hole in the middle” pattern with methods to insure pre and post processing

By | 2009-03-30

Note: I have transferred this blog from my old blog site: http://dcarapic.blogspot.com/ so I am reposting most of the stuff from there

Sometimes it is important to do processing before and after executing a piece of code (or a function). This is usually necessary when you have unmanaged components that you wish to use. C# solves this by using the using keyword. Example of this would be the various ASP.NET connections.

var connectionString = GetConnectionString();
using (var adapter = new SqlConnection(connectionString))
{
    // do something
}

While using using is a good solution it does require the programmer to be disciplined and not to forget it. Another drawback of this solution is that requires that you have a component which implements IDisposable and you must always instantiate it in order to use it.
Another possible solution would be to use "hole in the middle pattern" to achieve the similar functionality. In short "hole in the middle" refers to having some sort of activity/processing where a part of processing is provided by an external source and this is exactly what we need.

We need to ensure that we will execute some code before and after the 'main' code gets executed. Here is how we could organize the code so that we ensure that SqlConnection gets properly disposed

public static class ContinuationTest1
{
    public static void ExecuteSql(Action methodToExecute)
    {
        var connectionString = GetConnectionString();
        using (var adapter = new SqlConnection(connectionString))
        {
            methodToExecute(adapter);
        }
    }
}

Using this new method is relatively simple

public void UseContinuationTest1()
{
    ContinuationTest1.ExecuteSql((con) =>
    {
        con.CreateCommand();
        // do something
    });
}

Note that I am using new Lambda style method definitions as it makes this sort of programming style really easy to use. Here is another example of how we could achieve exception wrapping

public static void ExceptionWrap(Action methodToExecute)
{
    try
    {
        methodToExecute();
    }
    catch (Exception ex)
    {
        var exceptionHandler = GetExceptionHandler();
        exceptionHandler.Handle(ex);
    }
}

Using it is, again, simple

public void UseContinuationTest2()
{
    ContinuationTest2.ExceptionWrap(() =>
    {
        // do something that might throw an exception
    });
}

Another advantage that we get from this is that we can hide the creation of parameters that we provide to our "method in the middle". This could be used as (simple) (or with) Dependency Injection mechanism where we want to ensure a consistent way to access components or services in our code. Here is a variant of the first example where we do not provide the SqlConnection but rather an interface (IDbConnection). I have also added a variant where we can ensure that everything is done inside a transaction.

public static class ContinuationTest3
{
    public static void ExecuteSql(Action methodToExecute)
    {
        var connectionString = GetConnectionString();
        using (var adapter = new SqlConnection(connectionString))
        {
            methodToExecute(adapter);
        }
    }
    public static void ExecuteSqlInTransaction(Action methodToExecute)
    {
        using (var ts = new TransactionScope())
        {
            ExecuteWithAdapter(methodToExecute);
            ts.Complete();
        }
    }
}

And using it

public void UseContinuationTest3()
{
    ContinuationTest3.ExecuteSqlInTransaction((con) =>
    {
        con.CreateCommand();
        // do something, transaction will be automaticaly commited
    });
}

While this kind of programming looks great, there are some drawbacks to it if you are using the Lambda style methods to define the "middle method" that will get executed. Drawbacks with Lambdas are: Uglier stack trace - Lambda is just a nicer way to define an inline method. It is still a method and the C# compiler will give it an ugly name Method inside a method - This might be the a subjective issue to some. Wherever you are using this style you will need to have two methods, the outside method and the "middle" method.
Using Lambdas makes the "middle" method look like it is not there, but it still is. Variable in outer scope - Make sure that you understand what happens if you use an outer scope variable inside the lambda method. This is something that is good to know in general 🙂 I hope that you can see that the power that we can get from this style of programming.

One thought on “Using “hole in the middle” pattern with methods to insure pre and post processing

Leave a Reply to Ari Candra Rahmanaga Cancel reply

Your email address will not be published. Required fields are marked *