I have been using a design pattern for quite some time and have been calling/referring to it as a "Chain-of-Responsibility pattern" but now I realise there are differences, and it may not be appropriate to do so. So my question is 1, "is the following an instance of this pattern, or should it be called something else?", and 2, "is there any reason I should prefer the traditional way?".

I often use the following pattern when developing software. I have an interface that defines a functor, something like this.

interface FooBar{
    boolean isFooBar( Object o );
}

These are usually search, filtering, or processing classes; usually something like Comparator. The implementation method is usually functional (i.e. side-effect free). Eventually, I find myself creating an implementation of the interface that looks like:

class FooBarChain implements FooBar{
    FooBar[] foobars;

    FooBarChain( FooBar... fubars ){
         foobars = fubars;
    }

    boolean isFooBar( Object o ){
         for( FooBar f : foobars )
             if(  f.isFooBar( o )  )
                 return true;

         return false;
    }
}

Its not always booleans either -I've used this pattern with mutable objects as well- but there is always a short-circuiting condition (e.g. returns true, the String is empty String, a flag gets set etc).

Until now I have generally calling this a "Chain of Responsibility" pattern, considering the issue of inheriting from a base class to be an implementation detail. However, today I have realised an important difference: the objects along the chain cannot interrupt the rest of chain. There is no way for an implementation to say "this is false, and I can guarantee it will be false for any condition" (nb: short-circuits only on true ).

So, should this be called something other than a chain-of-responsibility pattern? Are there any concerns or issues I should consider when using this approach over the traditional having the instances pass the message along.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

I wouldn't call this chain of Chain of Responsibility.

In Chain of Responsibility, the "short-circuit" is roughly "I can handle this, so the next guy in the chain doesn't have to" rather than being a return value of any kind. It's normal for each object in the chain to know who is next in the chain and to pass control to that next object as necessary. They normally do something rather than returning a value.

The example you've presented it is perfectly reasonable, though I'm not sure it's a named pattern. I'm not too clear right now on the other variants you describe.

link|improve this answer
I think the key was your "normally do something rather than returning a value" comment. A variant I've used is a series of text filters. One filter removes curse words, another stop words, another numbers etc. The returned result is passed on to the next one. If the a filter returns a empty string (e.g. a string only consisting of curse words being processed by a curse filter), then it short circuits. My point was the pattern is not boolean specific, I can imagine using it with image filters. – ArtB Jun 29 '11 at 16:00
feedback

What you have is a chain-of-responsibility, but you can make a 'pure' chain of responsibility by adding a few small changes.

You can create an enum that will represent the 3 different results that you are expecting from this function.

 public enum Validity{
     Invalid,
     Indeterminate,
     Valid
 }

You can change the interface to be chain-able like so:

 public interface ChainFooBar{
     public boolean isFooBar(Object o);
     public Validity checkFooBar(Object o);
 }

Most of your FooBars would then have to implement a method like this:

public abstract class AbstractFooBar implements FooBar{
    public Validity checkFooBar(Object o){
        return this.isFooBar(o) ? Validity.Valid : Validity.Indeterminate;
    }
}

Then you can change your chain to check for either of the definite answers.

public class FooBarChain implements FooBar{
    private FooBar[] fooBars;

    public FooBarChain(FooBar... fooBars){
        this.fooBars = fooBars;
    }

    public Validity isFooBar(Object o){
        for(FooBar fooBar : this.fooBars){
            Validity validity = fooBar.checkFooBar(o);
            if(validity != Validity.Indeterminate){
                return validity == Validity.Valid;
            }
        }
        return false;
    }
}
link|improve this answer
I suppose I could, but I don't think that is a good idea at all I'm sorry to say. 1) it doesn't work with existing interfaces, 2) you don't really want to return Inderterminate since you want definitive answers in each one. Usually I find that each instance represents a specific constraint. You don't want Interdeterminate answers. Also, Indeterminate only exists for when you are chaining them, for times when you are dealing with just a single class, that becomes just more state to handle. Also, you didn't answer whether you'd still call it a CoR pattern. – ArtB Jun 28 '11 at 16:11
I updated my answer. The CoR question is hard because it's somewhere in-between. When you add the option to short-circuit with the positive either negative answer, then you're doing a pure CoR, but as it is it's still CoR, but just not pure. – Kyle Jun 28 '11 at 16:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.