org.lockss.log.L4JLoggerContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lockss-util Show documentation
Show all versions of lockss-util Show documentation
Development and testing utilities common to most LOCKSS projects
The newest version!
/*
Copyright (c) 2000-2018 Board of Trustees of Leland Stanford Jr. University,
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, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
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. IN NO EVENT SHALL
STANFORD UNIVERSITY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of Stanford University shall not
be used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from Stanford University.
*/
package org.lockss.log;
import java.net.URI;
import java.util.*;
import org.apache.commons.collections4.SetValuedMap;
import org.apache.commons.collections4.multimap.HashSetValuedHashMap;
import org.apache.logging.log4j.*;
import org.apache.logging.log4j.core.*;
import org.apache.logging.log4j.core.config.*;
import org.apache.logging.log4j.message.MessageFactory;
import org.apache.logging.log4j.status.StatusLogger;
/**
* This LoggerContext:
*
* - arranges for Loggers returned by LogManager.getLogger() to be
* instances of L4JLogger.
*
* - maintains a map (nameMap) of logger short name to fully-qualified
* name, added to as loggers are created. This facilitates setting log
* levels using only the short name.
*
* - stackLevelMap contains {@value PARAM_STACKTRACE_LEVEL} and {@value
* PARAM_STACKTRACE_SEVERITY}, because this is an easy place for {@link
* L4JContextDataInjector} to find them.
*
*/
public class L4JLoggerContext extends LoggerContext {
private static org.apache.logging.log4j.Logger log =
StatusLogger.getLogger();
// Each short name may map to more than one fq name. Eg, creating
// loggers org.lockss.log.Logger and
// org.lockss.util.Logger results in Logger being
// mapped to both fq names
private SetValuedMap nameMap = new HashSetValuedHashMap<>();
private Map stackLevelMap = null;
public L4JLoggerContext(final String name,
final Object externalContext,
final URI configLocn) {
super(name, externalContext, configLocn);
}
public L4JLoggerContext(final String name) {
super(name);
}
@Override
protected org.apache.logging.log4j.core.Logger
newInstance(final LoggerContext ctx,
final String name,
final MessageFactory messageFactory) {
updateNameMap(name);
org.apache.logging.log4j.core.Logger res =
new L4JLogger(ctx, name, messageFactory);
return res;
}
/** Return Collection of fully-qualified names of loggers whose last
* component matches shortName.
*/
public synchronized Collection getFQNames(String shortName) {
Set res = nameMap.get(shortName);
return res != null
? Collections.unmodifiableSet(res)
: Collections.emptyList();
}
/** Set the configured logger levels. */
public void setStackLevelMap(Map stackLevelMap) {
this.stackLevelMap = stackLevelMap;
log.debug("L4JLoggerContext: Set stackLevelMap: {}", stackLevelMap);
}
/** Return the configured logger levels (and {@value
* PARAM_STACKTRACE_LEVEL} and {@value PARAM_STACKTRACE_SEVERITY}). */
public Map getStackLevelMap() {
return stackLevelMap;
}
/** For any LoggerConfig with an unqualified name, set the level
* of the LoggerConfig corresponding to each fq name ending with
* the unqualified name */
public void setFqLevels() {
Map map = getConfiguration().getLoggers();
for (String logname : map.keySet()) {
if (logname.indexOf(".") < 0) {
// no dot. Get its LoggerConfig.
LoggerConfig lcfg = map.get(logname);
Level shortLevel = lcfg.getLevel();
// Want to do this only if the short name's LoggerConfig has a
// level explicitly set, but don't know how to do that, as
// getLevel() inherits from parent.
if (shortLevel != null) {
for (String fqName : getFQNames(logname)) {
// If the fq logname has its own LoggerConfig, let it
// take precedence.
if (!fqName.equals(getConfiguration().getLoggerConfig(fqName).getName())) {
log.debug("L4JLoggerContext: Set level {} to {}",
fqName, shortLevel);
Configurator.setLevel(fqName, shortLevel);
}
}
}
}
}
}
/** Add a shortName -> fqName mapping for a newly created logger. If
* this is the first time we've see this fqName (why wouldn't it be?),
* and the shortname has a configured level, set the level for the new
* fq name. */
private synchronized void updateNameMap(String fqName) {
if (fqName.indexOf(".") > 0) {
String shortName = fqName.substring(fqName.lastIndexOf('.')+1);
if (nameMap.put(shortName, fqName)) {
log.trace("L4JLoggerContext: Added {} -> {}", shortName, fqName);
LoggerConfig lcfg = getConfiguration().getLoggerConfig(shortName);
if (shortName.equals(lcfg.getName())
&& !fqName.equals(getConfiguration().getLoggerConfig(fqName).getName())) {
Level shortLevel = lcfg.getLevel();
log.debug("L4JLoggerContext: Set level {} to {}",
fqName, shortLevel);
Configurator.setLevel(fqName, shortLevel);
}
}
}
}
}