All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.slf4j.impl.BrillienLoggerAdapter Maven / Gradle / Ivy

/*
 * Copyright (c) 2011 Imre Fazekas.
 * All rights reserved.
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 *
 * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 * Neither the name of the Brillien nor the names of its
 * terms and concepts may be used to endorse or promote products derived from this
 * software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

package org.slf4j.impl;

import org.slf4j.Logger;
import org.slf4j.Marker;
import org.slf4j.helpers.FormattingTuple;
import org.slf4j.helpers.MarkerIgnoringBase;
import org.slf4j.helpers.MessageFormatter;
import org.slf4j.spi.LocationAwareLogger;

import java.util.logging.ConsoleHandler;
import java.util.logging.Level;
import java.util.logging.LogRecord;
import java.util.logging.SimpleFormatter;

/**
 * A wrapper over {@link java.util.logging.Logger java.util.logging.Logger} in
 * conformity with the {@link Logger} interface. Note that the logging levels
 * mentioned in this class refer to those defined in the java.util.logging
 * package.
 *
 * @author Ceki Gülcü
 * @author Peter Royal
 */
public final class BrillienLoggerAdapter extends MarkerIgnoringBase implements
        LocationAwareLogger {

    private static final long               serialVersionUID = -8053026990503422791L;

    public static Level                     DEFAULT_LEVEL;

    public static java.util.logging.Logger  mainLogger;

    public final java.util.logging.Logger   logger;

    static{
        mainLogger  = java.util.logging.Logger.getLogger("BrillienLoggerAdapter");

        mainLogger.setUseParentHandlers( false );

        ConsoleHandler handler = new ConsoleHandler();
        handler.setLevel( Level.ALL );
        handler.setFormatter( new SimpleFormatter() );
        mainLogger.addHandler( handler );

        mainLogger.setLevel( Level.ALL );

        DEFAULT_LEVEL = Level.FINER;
    }

    // WARN: BrillienLoggerAdapter constructor should have only package access so
    // that only JDK14LoggerFactory be able to create one.
    BrillienLoggerAdapter( ) {
        this.logger = mainLogger;
        this.name = logger.getName();
    }
    
    // WARN: JDK14LoggerAdapter constructor should have only package access so
    // that only JDK14LoggerFactory be able to create one.

    BrillienLoggerAdapter(java.util.logging.Logger logger) {
        this.logger = logger;
        this.name = logger.getName();
    }

    /**
     * Is this logger instance enabled for the FINEST level?
     *
     * @return True if this Logger is enabled for level FINEST, false otherwise.
     */
    public boolean isTraceEnabled() {
        return logger.isLoggable(Level.FINEST);
    }

    /**
     * Log a message object at level FINEST.
     *
     * @param msg - the message object to be logged
     */
    public void trace(String msg) {
        if (logger.isLoggable(Level.FINEST)) {
            log(SELF, Level.FINEST, msg, null);
        }
    }

    /**
     * Log a message at level FINEST according to the specified format and
     * argument.
     * 

*

* This form avoids superfluous object creation when the logger is disabled * for level FINEST. *

* * @param format the format string * @param arg the argument */ public void trace(String format, Object arg) { if (logger.isLoggable(Level.FINEST)) { FormattingTuple ft = MessageFormatter.format(format, arg); log(SELF, Level.FINEST, ft.getMessage(), ft.getThrowable()); } } /** * Log a message at level FINEST according to the specified format and * arguments. *

*

* This form avoids superfluous object creation when the logger is disabled * for the FINEST level. *

* * @param format the format string * @param arg1 the first argument * @param arg2 the second argument */ public void trace(String format, Object arg1, Object arg2) { if (logger.isLoggable(Level.FINEST)) { FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); log(SELF, Level.FINEST, ft.getMessage(), ft.getThrowable()); } } /** * Log a message at level FINEST according to the specified format and * arguments. *

*

* This form avoids superfluous object creation when the logger is disabled * for the FINEST level. *

* * @param format the format string * @param argArray an array of arguments */ public void trace(String format, Object[] argArray) { if (logger.isLoggable(Level.FINEST)) { FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); log(SELF, Level.FINEST, ft.getMessage(), ft.getThrowable()); } } /** * Log an exception (throwable) at level FINEST with an accompanying message. * * @param msg the message accompanying the exception * @param t the exception (throwable) to log */ public void trace(String msg, Throwable t) { if (logger.isLoggable(Level.FINEST)) { log(SELF, Level.FINEST, msg, t); } } /** * Is this logger instance enabled for the FINE level? * * @return True if this Logger is enabled for level FINE, false otherwise. */ public boolean isDebugEnabled() { return logger.isLoggable(Level.FINER); } /** * Log a message object at level FINE. * * @param msg - the message object to be logged */ public void debug(String msg) { if (logger.isLoggable(Level.FINER)) { log(SELF, Level.FINER, msg, null); } } /** * Log a message at level FINE according to the specified format and argument. *

*

* This form avoids superfluous object creation when the logger is disabled * for level FINE. *

* * @param format the format string * @param arg the argument */ public void debug(String format, Object arg) { if (logger.isLoggable(Level.FINER)) { FormattingTuple ft = MessageFormatter.format(format, arg); log(SELF, Level.FINER, ft.getMessage(), ft.getThrowable()); } } /** * Log a message at level FINE according to the specified format and * arguments. *

*

* This form avoids superfluous object creation when the logger is disabled * for the FINE level. *

* * @param format the format string * @param arg1 the first argument * @param arg2 the second argument */ public void debug(String format, Object arg1, Object arg2) { if (logger.isLoggable(Level.FINER)) { FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); log(SELF, Level.FINER, ft.getMessage(), ft.getThrowable()); } } /** * Log a message at level FINE according to the specified format and * arguments. *

*

* This form avoids superfluous object creation when the logger is disabled * for the FINE level. *

* * @param format the format string * @param argArray an array of arguments */ public void debug(String format, Object[] argArray) { if (logger.isLoggable(Level.FINER)) { FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); log(SELF, Level.FINER, ft.getMessage(), ft.getThrowable()); } } /** * Log an exception (throwable) at level FINE with an accompanying message. * * @param msg the message accompanying the exception * @param t the exception (throwable) to log */ public void debug(String msg, Throwable t) { if (logger.isLoggable(Level.FINER)) { log(SELF, Level.FINER, msg, t); } } /** * Is this logger instance enabled for the INFO level? * * @return True if this Logger is enabled for the INFO level, false otherwise. */ public boolean isInfoEnabled() { return logger.isLoggable(Level.INFO); } /** * Log a message object at the INFO level. * * @param msg - the message object to be logged */ public void info(String msg) { if (logger.isLoggable(Level.INFO)) { log(SELF, Level.INFO, msg, null); } } /** * Log a message at level INFO according to the specified format and argument. *

*

* This form avoids superfluous object creation when the logger is disabled * for the INFO level. *

* * @param format the format string * @param arg the argument */ public void info(String format, Object arg) { if (logger.isLoggable(Level.INFO)) { FormattingTuple ft = MessageFormatter.format(format, arg); log(SELF, Level.INFO, ft.getMessage(), ft.getThrowable()); } } /** * Log a message at the INFO level according to the specified format and * arguments. *

*

* This form avoids superfluous object creation when the logger is disabled * for the INFO level. *

* * @param format the format string * @param arg1 the first argument * @param arg2 the second argument */ public void info(String format, Object arg1, Object arg2) { if (logger.isLoggable(Level.INFO)) { FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); log(SELF, Level.INFO, ft.getMessage(), ft.getThrowable()); } } /** * Log a message at level INFO according to the specified format and * arguments. *

*

* This form avoids superfluous object creation when the logger is disabled * for the INFO level. *

* * @param format the format string * @param argArray an array of arguments */ public void info(String format, Object[] argArray) { if (logger.isLoggable(Level.INFO)) { FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); log(SELF, Level.INFO, ft.getMessage(), ft.getThrowable()); } } /** * Log an exception (throwable) at the INFO level with an accompanying * message. * * @param msg the message accompanying the exception * @param t the exception (throwable) to log */ public void info(String msg, Throwable t) { if (logger.isLoggable(Level.INFO)) { log(SELF, Level.INFO, msg, t); } } /** * Is this logger instance enabled for the WARNING level? * * @return True if this Logger is enabled for the WARNING level, false * otherwise. */ public boolean isWarnEnabled() { return logger.isLoggable(Level.WARNING); } /** * Log a message object at the WARNING level. * * @param msg - the message object to be logged */ public void warn(String msg) { if (logger.isLoggable(Level.WARNING)) { log(SELF, Level.WARNING, msg, null); } } /** * Log a message at the WARNING level according to the specified format and * argument. *

*

* This form avoids superfluous object creation when the logger is disabled * for the WARNING level. *

* * @param format the format string * @param arg the argument */ public void warn(String format, Object arg) { if (logger.isLoggable(Level.WARNING)) { FormattingTuple ft = MessageFormatter.format(format, arg); log(SELF, Level.WARNING, ft.getMessage(), ft.getThrowable()); } } /** * Log a message at the WARNING level according to the specified format and * arguments. *

*

* This form avoids superfluous object creation when the logger is disabled * for the WARNING level. *

* * @param format the format string * @param arg1 the first argument * @param arg2 the second argument */ public void warn(String format, Object arg1, Object arg2) { if (logger.isLoggable(Level.WARNING)) { FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); log(SELF, Level.WARNING, ft.getMessage(), ft.getThrowable()); } } /** * Log a message at level WARNING according to the specified format and * arguments. *

*

* This form avoids superfluous object creation when the logger is disabled * for the WARNING level. *

* * @param format the format string * @param argArray an array of arguments */ public void warn(String format, Object[] argArray) { if (logger.isLoggable(Level.WARNING)) { FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); log(SELF, Level.WARNING, ft.getMessage(), ft.getThrowable()); } } /** * Log an exception (throwable) at the WARNING level with an accompanying * message. * * @param msg the message accompanying the exception * @param t the exception (throwable) to log */ public void warn(String msg, Throwable t) { if (logger.isLoggable(Level.WARNING)) { log(SELF, Level.WARNING, msg, t); } } /** * Is this logger instance enabled for level SEVERE? * * @return True if this Logger is enabled for level SEVERE, false otherwise. */ public boolean isErrorEnabled() { return logger.isLoggable(Level.SEVERE); } /** * Log a message object at the SEVERE level. * * @param msg - the message object to be logged */ public void error(String msg) { if (logger.isLoggable(Level.SEVERE)) { log(SELF, Level.SEVERE, msg, null); } } /** * Log a message at the SEVERE level according to the specified format and * argument. *

*

* This form avoids superfluous object creation when the logger is disabled * for the SEVERE level. *

* * @param format the format string * @param arg the argument */ public void error(String format, Object arg) { if (logger.isLoggable(Level.SEVERE)) { FormattingTuple ft = MessageFormatter.format(format, arg); log(SELF, Level.SEVERE, ft.getMessage(), ft.getThrowable()); } } /** * Log a message at the SEVERE level according to the specified format and * arguments. *

*

* This form avoids superfluous object creation when the logger is disabled * for the SEVERE level. *

* * @param format the format string * @param arg1 the first argument * @param arg2 the second argument */ public void error(String format, Object arg1, Object arg2) { if (logger.isLoggable(Level.SEVERE)) { FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); log(SELF, Level.SEVERE, ft.getMessage(), ft.getThrowable()); } } /** * Log a message at level SEVERE according to the specified format and * arguments. *

*

* This form avoids superfluous object creation when the logger is disabled * for the SEVERE level. *

* * @param format the format string * @param argArray an array of arguments */ public void error(String format, Object[] argArray) { if (logger.isLoggable(Level.SEVERE)) { FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); log(SELF, Level.SEVERE, ft.getMessage(), ft.getThrowable()); } } /** * Log an exception (throwable) at the SEVERE level with an accompanying * message. * * @param msg the message accompanying the exception * @param t the exception (throwable) to log */ public void error(String msg, Throwable t) { if (logger.isLoggable(Level.SEVERE)) { log(SELF, Level.SEVERE, msg, t); } } /** * Log the message at the specified level with the specified throwable if any. * This method creates a LogRecord and fills in caller date before calling * this instance's JDK14 logger. *

* See bug report #13 for more details. * * @param level * @param msg * @param t */ private void log(String callerFQCN, Level level, String msg, Throwable t) { // millis and thread are filled by the constructor LogRecord record = new LogRecord(level, msg); record.setLoggerName(getName()); record.setThrown(t); fillCallerData(callerFQCN, record); logger.log(record); } static String SELF = BrillienLoggerAdapter.class.getName(); static String SUPER = MarkerIgnoringBase.class.getName(); /** * Fill in caller data if possible. * * @param record The record to update */ final private void fillCallerData(String callerFQCN, LogRecord record) { StackTraceElement[] steArray = new Throwable().getStackTrace(); int selfIndex = -1; for (int i = 0; i < steArray.length; i++) { final String className = steArray[i].getClassName(); if (className.equals(callerFQCN) || className.equals(SUPER)) { selfIndex = i; break; } } int found = -1; for (int i = selfIndex + 1; i < steArray.length; i++) { final String className = steArray[i].getClassName(); if (!(className.equals(callerFQCN) || className.equals(SUPER))) { found = i; break; } } if (found != -1) { StackTraceElement ste = steArray[found]; // setting the class name has the side effect of setting // the needToInferCaller variable to false. record.setSourceClassName(ste.getClassName()); record.setSourceMethodName(ste.getMethodName()); } } public void log(Marker marker, String callerFQCN, int level, String message, Object[] argArray, Throwable t) { Level julLevel; switch (level) { case LocationAwareLogger.TRACE_INT: julLevel = Level.FINEST; break; case LocationAwareLogger.DEBUG_INT: julLevel = Level.FINE; break; case LocationAwareLogger.INFO_INT: julLevel = Level.INFO; break; case LocationAwareLogger.WARN_INT: julLevel = Level.WARNING; break; case LocationAwareLogger.ERROR_INT: julLevel = Level.SEVERE; break; default: julLevel = DEFAULT_LEVEL; } // the logger.isLoggable check avoids the unconditional // construction of location data for disabled log // statements. As of 2008-07-31, callers of this method // do not perform this check. See also // http://bugzilla.slf4j.org/show_bug.cgi?id=90 if (logger.isLoggable(julLevel)) { log(callerFQCN, julLevel, message, t); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy