blob: c69771deba8e56be967dde018a63a7f36d723aa2 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache license, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the license for the specific language governing permissions and
* limitations under the license.
*/
package org.apache.logging.log4j.core.appender;
import java.io.Serializable;
import org.apache.logging.log4j.core.Appender;
import org.apache.logging.log4j.core.ErrorHandler;
import org.apache.logging.log4j.core.Filter;
import org.apache.logging.log4j.core.Layout;
import org.apache.logging.log4j.core.LogEvent;
import org.apache.logging.log4j.core.filter.AbstractFilterable;
import org.apache.logging.log4j.core.helpers.Integers;
/**
* Abstract base class for Appenders. Although Appenders do not have to extend this class, doing so
* will simplify their implementation.
*/
public abstract class AbstractAppender extends AbstractFilterable
implements Appender {
private final boolean ignoreExceptions;
private ErrorHandler handler = new DefaultErrorHandler(this);
private final Layout<? extends Serializable> layout;
private final String name;
/**
* Appenders set this by calling super.start().
*/
private boolean started = false;
public static int parseInt(String s, int defaultValue) {
try {
return Integers.parseInt(s, defaultValue);
} catch (NumberFormatException e) {
LOGGER.error("Could not parse \"{}\" as an integer, using default value {}: {}", s, defaultValue, e);
return defaultValue;
}
}
/**
* Constructor that defaults to suppressing exceptions.
* @param name The Appender name.
* @param filter The Filter to associate with the Appender.
* @param layout The layout to use to format the event.
*/
protected AbstractAppender(final String name, final Filter filter, final Layout<? extends Serializable> layout) {
this(name, filter, layout, true);
}
/**
* Constructor.
* @param name The Appender name.
* @param filter The Filter to associate with the Appender.
* @param layout The layout to use to format the event.
* @param ignoreExceptions If true, exceptions will be logged and suppressed. If false errors will be
* logged and then passed to the application.
*/
protected AbstractAppender(final String name, final Filter filter, final Layout<? extends Serializable> layout,
final boolean ignoreExceptions) {
super(filter);
this.name = name;
this.layout = layout;
this.ignoreExceptions = ignoreExceptions;
}
/**
* Handle an error with a message.
* @param msg The message.
*/
public void error(final String msg) {
handler.error(msg);
}
/**
* Handle an error with a message, and exception and a logging event.
* @param msg The message.
* @param event The LogEvent.
* @param t The Throwable.
*/
public void error(final String msg, final LogEvent event, final Throwable t) {
handler.error(msg, event, t);
}
/**
* Handle an error with a message and an exception.
* @param msg The message.
* @param t The Throwable.
*/
public void error(final String msg, final Throwable t) {
handler.error(msg, t);
}
/**
* Returns the ErrorHandler, if any.
* @return The ErrorHandler.
*/
@Override
public ErrorHandler getHandler() {
return handler;
}
/**
* Returns the Layout for the appender.
* @return The Layout used to format the event.
*/
@Override
public Layout<? extends Serializable> getLayout() {
return layout;
}
/**
* Returns the name of the Appender.
* @return The name of the Appender.
*/
@Override
public String getName() {
return name;
}
/**
* Some appenders need to propagate exceptions back to the application. When {@code ignoreExceptions} is
* {@code false} the AppenderControl will allow the exception to percolate.
*
* @return {@code true} if exceptions will be logged but now thrown, {@code false} otherwise.
*/
@Override
public boolean ignoreExceptions() {
return ignoreExceptions;
}
/**
* Returns true if the Appender is started, false otherwise.
* @return true if the Appender is started, false otherwise.
*/
@Override
public boolean isStarted() {
return started;
}
/**
* The handler must be set before the appender is started.
* @param handler The ErrorHandler to use.
*/
@Override
public void setHandler(final ErrorHandler handler) {
if (handler == null) {
LOGGER.error("The handler cannot be set to null");
}
if (isStarted()) {
LOGGER.error("The handler cannot be changed once the appender is started");
return;
}
this.handler = handler;
}
/**
* Start the Appender.
*/
@Override
public void start() {
startFilter();
this.started = true;
}
/**
* Stop the Appender.
*/
@Override
public void stop() {
this.started = false;
stopFilter();
}
@Override
public String toString() {
return name;
}
}