blob: 554b050cd36269ddbcd3782aa0036e48576012df [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.rewrite;
import org.apache.logging.log4j.core.Appender;
import org.apache.logging.log4j.core.Filter;
import org.apache.logging.log4j.core.LogEvent;
import org.apache.logging.log4j.core.appender.AbstractAppender;
import org.apache.logging.log4j.core.config.AppenderControl;
import org.apache.logging.log4j.core.config.AppenderRef;
import org.apache.logging.log4j.core.config.Configuration;
import org.apache.logging.log4j.core.config.plugins.Plugin;
import org.apache.logging.log4j.core.config.plugins.PluginAttr;
import org.apache.logging.log4j.core.config.plugins.PluginConfiguration;
import org.apache.logging.log4j.core.config.plugins.PluginElement;
import org.apache.logging.log4j.core.config.plugins.PluginFactory;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
/**
* This Appender allows the logging event to be manipulated before it is processed by other Appenders.
*/
@Plugin(name = "Rewrite", type = "Core", elementType = "appender", printObject = true)
public final class RewriteAppender extends AbstractAppender {
private final Configuration config;
private final ConcurrentMap<String, AppenderControl> appenders = new ConcurrentHashMap<String, AppenderControl>();
private final RewritePolicy rewritePolicy;
private final AppenderRef[] appenderRefs;
private RewriteAppender(final String name, final Filter filter, final boolean handleException,
final AppenderRef[] appenderRefs, final RewritePolicy rewritePolicy,
final Configuration config) {
super(name, filter, null, handleException);
this.config = config;
this.rewritePolicy = rewritePolicy;
this.appenderRefs = appenderRefs;
}
@Override
public void start() {
final Map<String, Appender> map = config.getAppenders();
for (final AppenderRef ref : appenderRefs) {
final String name = ref.getRef();
final Appender appender = map.get(name);
if (appender != null) {
appenders.put(name, new AppenderControl(appender, ref.getLevel(), null));
} else {
LOGGER.error("Appender " + ref + " cannot be located. Reference ignored");
}
}
super.start();
}
@Override
public void stop() {
super.stop();
}
/**
* Modify the event and pass to the subordinate Appenders.
* @param event The LogEvent.
*/
public void append(LogEvent event) {
if (rewritePolicy != null) {
event = rewritePolicy.rewrite(event);
}
for (final AppenderControl control : appenders.values()) {
control.callAppender(event);
}
}
/**
* Create a RewriteAppender.
* @param name The name of the Appender.
* @param suppress If true, exceptions will be handled in the Appender.
* @param appenderRefs An array of Appender names to call.
* @param config The Configuration.
* @param rewritePolicy The policy to use to modify the event.
* @param filter A Filter to filter events.
* @return The created RewriteAppender.
*/
@PluginFactory
public static RewriteAppender createAppender(@PluginAttr("name") final String name,
@PluginAttr("suppressExceptions") final String suppress,
@PluginElement("appender-ref") final AppenderRef[] appenderRefs,
@PluginConfiguration final Configuration config,
@PluginElement("rewritePolicy") final RewritePolicy rewritePolicy,
@PluginElement("filter") final Filter filter) {
final boolean handleExceptions = suppress == null ? true : Boolean.valueOf(suppress);
if (name == null) {
LOGGER.error("No name provided for RewriteAppender");
return null;
}
if (appenderRefs == null) {
LOGGER.error("No appender references defined for RewriteAppender");
return null;
}
return new RewriteAppender(name, filter, handleExceptions, appenderRefs, rewritePolicy, config);
}
}