人在江湖

            BlogJava :: 首頁 :: 聯系 :: 聚合  :: 管理
            82 Posts :: 10 Stories :: 169 Comments :: 0 Trackbacks

          The following Java code illustrates the pattern with the example of a logging class. Each logging handler decides if any action is to be taken at this log level and then passes the message on to the next logging handler. The output is:

          Writing to stdout: Entering function y. Writing to stdout: Step1 completed. Sending via e-mail: Step1 completed. Writing to stdout: An error has occurred. Sending via e-mail: An error has occurred. Writing to stderr: An error has occurred.

          Note that this example should not be seen as a recommendation on how to write logging classes.

          Also, note that in a 'pure' implementation of the chain of responsibility pattern, a logger would not pass responsibility further down the chain after handling a message. In this example, a message will be passed down the chain whether it is handled or not.

          import java.util.*;
          abstract class Logger
          {
              public static int ERR = 3;
              public static int NOTICE = 5;
              public static int DEBUG = 7;
              protected int mask;
              // The next element in the chain of responsibility
              protected Logger next;
              public Logger setNext( Logger l )
              {
                  next = l;
                  return l;
              }
              public void message( String msg, int priority )
              {
                  if ( priority <= mask )
                  {
                      writeMessage( msg );
                  }
                  if ( next != null )
                  {
                      next.message( msg, priority );
                  }
              }
              abstract protected void writeMessage( String msg );
          }
          class StdoutLogger extends Logger
          {
              public StdoutLogger( int mask ) { this.mask = mask; }
              protected void writeMessage( String msg )
              {
                  System.out.println( "Writing to stdout: " + msg );
              }
          }
          class EmailLogger extends Logger
          {
              public EmailLogger( int mask ) { this.mask = mask; }
              protected void writeMessage( String msg )
              {
                  System.out.println( "Sending via email: " + msg );
              }
          }
          class StderrLogger extends Logger
          {
              public StderrLogger( int mask ) { this.mask = mask; }
              protected void writeMessage( String msg )
              {
                  System.err.println( "Sending to stderr: " + msg );
              }
          }
          public class ChainOfResponsibilityExample
          {
              public static void main( String[] args )
              {
                  // Build the chain of responsibility
                  Logger l,l1;
                  l1 = l = new StdoutLogger( Logger.DEBUG );
                  l1 = l1.setNext(new EmailLogger( Logger.NOTICE ));
                  l1 = l1.setNext(new StderrLogger( Logger.ERR ));
                  // Handled by StdoutLogger
                  l.message( "Entering function y.", Logger.DEBUG );
                  // Handled by StdoutLogger and EmailLogger
                  l.message( "Step1 completed.", Logger.NOTICE );
                  // Handled by all three loggers
                  l.message( "An error has occurred.", Logger.ERR );
              }
          }

          posted on 2011-02-12 23:17 人在江湖 閱讀(1712) 評論(0)  編輯  收藏 所屬分類: design pattern
          主站蜘蛛池模板: 潍坊市| 潜山县| 申扎县| 宜兴市| 徐水县| 盐边县| 乐清市| 香格里拉县| 肇庆市| 佛教| 德清县| 商河县| 怀化市| 大竹县| 兰州市| 西安市| 阿克| 辽阳市| 资溪县| 滨海县| 衢州市| 开鲁县| 高清| 本溪| 潞西市| 福州市| 治多县| 万山特区| 宜宾市| 正镶白旗| 新绛县| 岳普湖县| 儋州市| 固镇县| 兴仁县| 灯塔市| 赣州市| 东方市| 聂荣县| 称多县| 乌鲁木齐市|