Package ch.qos.logback.core.rolling.helper

Source Code of ch.qos.logback.core.rolling.helper.FileNamePattern

/**
* LOGBack: the reliable, fast and flexible logging library for Java.
*
* Copyright (C) 1999-2006, QOS.ch
*
* This library is free software, you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation.
*/

package ch.qos.logback.core.rolling.helper;

import java.util.Date;
import java.util.HashMap;
import java.util.Map;

import ch.qos.logback.core.Context;
import ch.qos.logback.core.pattern.Converter;
import ch.qos.logback.core.pattern.DynamicConverter;
import ch.qos.logback.core.pattern.parser.Node;
import ch.qos.logback.core.pattern.parser.Parser;
import ch.qos.logback.core.pattern.parser.ScanException;
import ch.qos.logback.core.spi.ContextAwareBase;


/**
*
* After parsing file name patterns, given a number or a date, instances of this class
* can be used to compute a file name according to the file name pattern and the given
* integer or date.
*
* @author Ceki Gülcü
*
*/
public class FileNamePattern extends ContextAwareBase {

  static final Map<String, String> CONVERTER_MAP = new HashMap<String, String>();
  static {
    CONVERTER_MAP.put("i", IntegerTokenConverter.class.getName());
    CONVERTER_MAP.put("d", DateTokenConverter.class.getName());
  }

  String pattern;
  Converter headTokenConverter;

  public FileNamePattern(String patternArg, Context contextArg) {
    setPattern(patternArg);
    setContext(contextArg);
    parse();
    DynamicConverter.startConverters(this.headTokenConverter);
  }

  void parse() {
    try {
      Parser p = new Parser(pattern);
      p.setStatusManager(getStatusManager());
      Node t = p.parse();
      this.headTokenConverter = p.compile(t, CONVERTER_MAP);

    } catch (ScanException sce) {
      addError("Failed to parse pattern \"" + pattern + "\".", sce);
    }
  }

  public String toString() {
    return pattern;
  }

  // void parsex() {
  // int lastIndex = 0;
  //
  // TokenConverter tc = null;
  //
  // MAIN_LOOP: while (true) {
  // int i = pattern.indexOf('%', lastIndex);
  //
  // if (i == -1) {
  // String remainingStr = pattern.substring(lastIndex);
  //
  // // System.out.println("adding the identity token, I");
  // addTokenConverter(tc, new IdentityTokenConverter(remainingStr));
  //
  // break;
  // } else {
  // // test for degenerate case where the '%' character is at the end.
  // if (i == (patternLength - 1)) {
  // String remainingStr = pattern.substring(lastIndex);
  // addTokenConverter(tc, new IdentityTokenConverter(remainingStr));
  //
  // break;
  // }
  //
  // // System.out.println("adding the identity token, II");
  // tc = addTokenConverter(tc, new IdentityTokenConverter(pattern
  // .substring(lastIndex, i)));
  //
  // // At this stage, we can suppose that i < patternLen -1
  // char nextChar = pattern.charAt(i + 1);
  //
  // switch (nextChar) {
  // case 'i':
  // tc = addTokenConverter(tc, new IntegerTokenConverter());
  // lastIndex = i + 2;
  //
  // break; // break from switch statement
  //
  // case 'd':
  //
  // int optionEnd = getOptionEnd(i + 2);
  //
  // String option;
  //
  // if (optionEnd != -1) {
  // option = pattern.substring(i + 3, optionEnd);
  // lastIndex = optionEnd + 1;
  // } else {
  // addInfo("Assuming daily rotation schedule");
  // option = "yyyy-MM-dd";
  // lastIndex = i + 2;
  // }
  // tc = addTokenConverter(tc, new DateTokenConverter(option));
  // break; // break from switch statement
  //
  // case '%':
  // tc = addTokenConverter(tc, new IdentityTokenConverter("%"));
  // lastIndex = i + 2;
  //
  // break;
  //
  // default:
  // throw new IllegalArgumentException("The pattern[" + pattern
  // + "] does not contain a valid specifer at position " + (i + 1));
  // }
  // }
  // }
  // }
  //
  // /**
  // * Find the position of the last character of option enclosed within the
  // '{}'
  // * characters inside the pattern
  // */
  // protected int getOptionEnd(int i) {
  // // logger.debug("Char at "+i+" "+pattern.charAt(i));
  // if ((i < patternLength) && (pattern.charAt(i) == '{')) {
  // int end = pattern.indexOf('}', i);
  //
  // if (end > i) {
  // return end;
  // } else {
  // return -1;
  // }
  // }
  //
  // return -1;
  // }
  //
  // TokenConverter addTokenConverter(TokenConverter tc,
  // TokenConverter newTokenConverter) {
  // if (tc == null) {
  // tc = headTokenConverter = newTokenConverter;
  // } else {
  // tc.next = newTokenConverter;
  // tc = newTokenConverter;
  // }
  //
  // return tc;
  // }

  public DateTokenConverter getDateTokenConverter() {
    Converter p = headTokenConverter;

    while (p != null) {
      if (p instanceof DateTokenConverter) {
        return (DateTokenConverter) p;
      }

      p = p.getNext();
    }

    return null;
  }

  public IntegerTokenConverter getIntegerTokenConverter() {
    Converter p = headTokenConverter;

    while (p != null) {
      if (p instanceof IntegerTokenConverter) {
        return (IntegerTokenConverter) p;
      }

      p = p.getNext();
    }
    return null;
  }

  public String convert(Object o) {
    Converter p = headTokenConverter;
    StringBuffer buf = new StringBuffer();
    while (p != null) {
      buf.append(p.convert(o));
      p = p.getNext();
    }
    return buf.toString();
  }

  public String convertInt(int i) {
    Integer integerArg = new Integer(i);
    return convert(integerArg);
  }

  public String convertDate(Date date) {
    return convert(date);
  }

  public void setPattern(String pattern) {
    if (pattern != null) {
      // Trailing spaces in the pattern are assumed to be undesired.
      this.pattern = pattern.trim();
    }
  }

  public String getPattern() {
    return pattern;
  }
}
TOP

Related Classes of ch.qos.logback.core.rolling.helper.FileNamePattern

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.