Source Code for SLF4J 1.7.31 Bridge to Log4J 1.3

SLF4J Bridge to Log4J 1.3 is a binding bridge that implements the SLF4J API with Log4J 1.3 library.

Here is the source code for SLF4J Bridge 1.0.1 to Log4J 1.3. You can download its pre-compiled version slf4j-log4j13-1.0.1.jar at SLF4J Download Website.

✍: FYIcenter.com

org/slf4j/impl/MessageFormatter.java

/* 
 * Copyright (c) 2004-2005 SLF4J.ORG
 * Copyright (c) 2004-2005 QOS.ch
 *
 * All rights reserved.
 * 
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to  deal in  the Software without  restriction, including
 * without limitation  the rights to  use, copy, modify,  merge, publish,
 * distribute, and/or sell copies of  the Software, and to permit persons
 * to whom  the Software is furnished  to do so, provided  that the above
 * copyright notice(s) and this permission notice appear in all copies of
 * the  Software and  that both  the above  copyright notice(s)  and this
 * permission notice appear in supporting documentation.
 * 
 * THE  SOFTWARE IS  PROVIDED  "AS  IS", WITHOUT  WARRANTY  OF ANY  KIND,
 * EXPRESS OR  IMPLIED, INCLUDING  BUT NOT LIMITED  TO THE  WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR  A PARTICULAR PURPOSE AND NONINFRINGEMENT
 * OF  THIRD PARTY  RIGHTS. IN  NO EVENT  SHALL THE  COPYRIGHT  HOLDER OR
 * HOLDERS  INCLUDED IN  THIS  NOTICE BE  LIABLE  FOR ANY  CLAIM, OR  ANY
 * SPECIAL INDIRECT  OR CONSEQUENTIAL DAMAGES, OR  ANY DAMAGES WHATSOEVER
 * RESULTING FROM LOSS  OF USE, DATA OR PROFITS, WHETHER  IN AN ACTION OF
 * CONTRACT, NEGLIGENCE  OR OTHER TORTIOUS  ACTION, ARISING OUT OF  OR IN
 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 * 
 * Except as  contained in  this notice, the  name of a  copyright holder
 * shall not be used in advertising or otherwise to promote the sale, use
 * or other dealings in this Software without prior written authorization
 * of the copyright holder.
 *
 */

package org.slf4j.impl;


/**
  * Formats messages according to very simple substitution rules. Substitutions can be
  * made 1, 2 or more arguments.
  * <p>
  * For example, 
  * <pre>MessageFormatter.format("Hi {}.", "there");</pre> will
  * return the string "Hi there.".
  * <p>
  * The {} pair is called the <em>formatting anchor</em>. It serves to designate the
  * location where arguments need to be substituted within the message pattern.
  * <p>
  * In the rare case where you need to place the '{' or '}' in the message pattern 
  * itself but do not want them to be interpreted as a formatting anchors, you can
  * espace the '{' character with '\', that is the backslash character. Only the
  * '{' character should be escaped. There is no need to escape the '}' character.  
  * For example, <pre>MessageFormatter.format("File name is \\{{}}.", "App folder.zip");</pre>
  * will return the string "File name is {App folder.zip}.". 
  * 
  * See {@link #format(String, Object)}, {@link #format(String, Object, Object)} 
  * and {@link #arrayFormat(String, Object[])} methods for more details.
  *
  * @author Ceki G&uuml;lc&uuml;
  */
public class MessageFormatter {
  static final char DELIM_START = '{';
  static final char DELIM_STOP = '}';

  /**
   * Performs single argument substitution for the 'messagePattern' passed as
   * parameter.
   * <p>
   * For example, <pre>MessageFormatter.format("Hi {}.", "there");</pre> will
   * return the string "Hi there.".
   * <p>
   * @param messagePattern The message pattern which will be parsed and formatted
   * @param argument The argument to be substituted in place of the formatting anchor
   * @return The formatted message
   */
  public static String format(String messagePattern, Object arg) {
    return arrayFormat(messagePattern, new Object[] {arg});   
   }
  
  /**
   *
   * Performs a two argument substitution for the 'messagePattern' passed as
   * parameter.
   * <p>
   * For example, 
   * <pre>MessageFormatter.format("Hi {}. My name is {}.", "Alice", "Bob");</pre> will 
   * return the string "Hi Alice. My name is Bob.".
   * 
   * @param messagePattern The message pattern which will be parsed and formatted
   * @param arg1 The argument to be substituted in place of the first formatting anchor 
   * @param arg2 The argument to be substituted in place of the second formatting anchor 
   * @return The formatted message
   */
  public static String format(String messagePattern, Object arg1, Object arg2) {
   return arrayFormat(messagePattern, new Object[] {arg1, arg2});   
  }
  
  /**
   * Same principle as the {@link #format(String, Object)} and 
   * {@link #format(String, Object, Object)} methods except that
   * any number of arguments can be passed in an array.
   * 
   * @param messagePattern The message pattern which will be parsed and formatted
   * @param argArray An array of arguments to be substituted in place of formatting anchors
   * @return The formatted message
   */
  public static String arrayFormat(String messagePattern, Object[] argArray) {
    if(messagePattern == null) {
      return null;
    }
    int i = 0;
    int len = messagePattern.length();
    int j = messagePattern.indexOf(DELIM_START);
    
  
    
    StringBuffer sbuf = new StringBuffer(messagePattern.length() + 50);

    for (int L = 0; L < argArray.length; L++) {
      
      char escape = 'x';
      
      j = messagePattern.indexOf(DELIM_START, i);

      if (j == -1 || (j+1 == len)) {
        // no more variables
        if (i == 0) { // this is a simple string
          return messagePattern;
        } else { // add the tail string which contains no variables and return the result.
          sbuf.append(messagePattern.substring(i, messagePattern.length()));
          return sbuf.toString();
        }
      } else {
        char delimStop = messagePattern.charAt(j + 1);
        if (j > 0) {
          escape = messagePattern.charAt(j - 1);
        }
        
        if(escape == '\\') {
          L--; // DELIM_START was escaped, thus should not be incremented
          sbuf.append(messagePattern.substring(i, j-1));
          sbuf.append(DELIM_START);
          i = j + 1;
        } else if ((delimStop != DELIM_STOP)) {
          // invalid DELIM_START/DELIM_STOP pair
          sbuf.append(messagePattern.substring(i, messagePattern.length()));
          return sbuf.toString();
        } else {
          // normal case
          sbuf.append(messagePattern.substring(i, j));
          sbuf.append(argArray[L]);
          i = j + 2;
        }
      }
    }
    // append the characters following the second {} pair.
    sbuf.append(messagePattern.substring(i, messagePattern.length()));
    return sbuf.toString();
  }
}

org/slf4j/impl/MessageFormatter.java

 

Or download all of them as a single archive file:

File name: slf4j-log4j13-1.7.31-sources.jar
File size: 30039 bytes
Release date: 2021-06-17
Download 

 

Source Code for SLF4J 1.7.31 Extensions

Source Code for SLF4J 1.7.31 Bridge to JDK

Downloading and Reviewing SLF4J Packages

⇑⇑ SLF4J - Simple Logging Facade for Java

2013-09-05, 7586👍, 0💬