Pages

Wednesday, March 7, 2012

2 Implementations of "Chain of Responsibility" Pattern with Java







Chain of Responsibility design pattern is needed when a few processors should exist for performing an operation and a particular order should be defined for those processors. Also the changeability of the order of processors on runtime are important.

UML represantation of the pattern is as below:


Handler defines the general structure of processor objects. "HandleRequest" here is the abstract processor method. Handler also has a reference of its own type, which represents the next handler. For this a public "setNextHandler" method should be defined and exactly the handler is an abstract class. 
ConcreteHandler define different representations of processors. At last, Client is responsible with creating required handlers (processors) and define a chain order between them.

Generally two diffent implementation may exist for this pattern. Difference is related with the "location of the chain routing business logic". Chain routing business logic may be either in Handler abstract class or ConcreteHandler classes, or both of them. Sample of first two approaches will be given below:

1. "Handler" has chain routing business logic:

  1. public abstract class Processor {
  2.     protected Processor next;
  3.     protected int threshold;
  4.     public void setNextProcessor(Processor p) {
  5.         next = p;
  6.     }
  7.     public void process(String data, int value) {
  8.         if (value <= threshold) {
  9.             process(data);
  10.         }
  11.         if (next != null) {
  12.             next.message(data, threshold);
  13.         }
  14.     }
  15.     abstract protected void processData(String data);
  16. }
  17. public class ProcessorA extends Processor {
  18.    
  19.     public ProcessorA (int threshold) {
  20.         this.threshold = threshold;
  21.     }
  22.     protected void processData(String data) {
  23.         System.out.println("Processing with A: " + data);
  24.     }
  25. }
  26. public class ProcessorB extends Processor {
  27.    
  28.     public ProcessorB (int threshold) {
  29.         this.threshold = threshold;
  30.     }
  31.     protected void writeMessage(String data) {
  32.         System.err.println("Processing with B: " + data);
  33.     }
  34. }
  35. public class Client {
  36.     public static void main(String[] args) {
  37.         Processor p, p1, p2;
  38.         p1 = p = new ProcessorA(2);
  39.         p2 = new ProcessorB(1);
  40.         p1.setNextProcessor(p2);
  41.         // Handled by ProcessorA
  42.         p.process("data1", 2);
  43.         // Handled by ProcessorA and ProcessorB
  44.         p.process("data2", 1);
  45.     }
  46. }

2. "ConcreteHandler"s have chain routing business logic:

  1. public abstract class Processor {
  2.     protected Processor next;
  3.     protected int threshold;
  4.     public void setNextProcessor(Processor p) {
  5.         next = p;
  6.     }
  7.     abstract protected void processData(String data);
  8. }
  9. public class ProcessorA extends Processor {
  10.    
  11.     public ProcessorA (int threshold) {
  12.         this.threshold = threshold;
  13.     }
  14.     protected void processData(String data, int value) {
  15.         System.out.println("Processing with A: " + data);
  16.         if (value >= threshold && next != null) {
  17.             next.processData(data, value);
  18.         }
  19.     }
  20. }
  21. public class ProcessorB extends Processor {
  22.    
  23.     public ProcessorB (int threshold) {
  24.         this.threshold = threshold;
  25.     }
  26.     protected void processData(String data, int value) {
  27.         System.out.println("Processing with B: " + data);
  28.         if (value >= threshold && next != null) {
  29.             next.processData(data, value);
  30.         }
  31.     }
  32. }
  33. public class Client {
  34.     public static void main(String[] args) {
  35.         Processor p, p1, p2;
  36.         p1 = p = new ProcessorA(2);
  37.         p2 = new ProcessorB(1);
  38.         p1.setNextProcessor(p2);
  39.         // Handled by ProcessorA
  40.         p.processData("data1", 1);
  41.         // Handled by ProcessorA and ProcessorB
  42.         p.processData("data2", 2);
  43.     }
  44. }

No comments:

Post a Comment