Package org.apache.sis.util.logging
Class LoggerFactory<L>
- Object
-
- LoggerFactory<L>
-
- Type Parameters:
L- the type of loggers used for the implementation backend. This is the type used by external frameworks like Log4J.
public abstract class LoggerFactory<L> extends Object
A factory for JavaLoggerwrapping an other logging framework. This factory is used only when an application wants to redirect SIS logs to an other framework than JDK logging. An instance ofLoggerFactorycan be registered to SIS in two ways:- By declaring the fully qualified classname of the
LoggerFactoryimplementation in theMETA-INF/services/org.apache.sis.util.logging.LoggerFactoryfile. Note that thesis-logging-commons.jarandsis-logging-log4j.jarfiles provide such declaration. - By explicit invocation of
Logging.setLoggerFactory(LoggerFactory)at application initialization time.
getLogger(String)method shall return someLoggersubclass (typicallyLoggerAdapter) which forwards directly all log methods to the other framework.Thread safetyThis base class is safe for multi-threads usage. Subclasses registered inMETA-INF/services/shall make sure that any overridden methods remain safe to call from multiple threads.- Since:
- 0.3
- See Also:
Logging,LoggerAdapter
Defined in the
sis-utilitymodule
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedLoggerFactory(Class<L> loggerClass)Creates a new factory.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract LgetImplementation(String name)Returns the implementation to use for the logger of the specified name.Class<L>getImplementationClass()Returns the base class of objects to be returned bygetImplementation(String).LoggergetLogger(String name)Returns the logger of the specified name, ornullif the JDK logging framework should be used.abstract StringgetName()Returns the name of the logging framework.protected abstract Lunwrap(Logger logger)Returns the implementation wrapped by the specified logger, ornullif none.protected abstract Loggerwrap(String name, L implementation)Wraps the specified implementation in a JDK logger.
-
-
-
Method Detail
-
getName
public abstract String getName()
Returns the name of the logging framework.- Returns:
- the logging framework name.
-
getLogger
public Logger getLogger(String name)
Returns the logger of the specified name, ornullif the JDK logging framework should be used.- Parameters:
name- the name of the logger.- Returns:
- the logger, or
nullif the JDK logging framework should be used.
-
getImplementationClass
public Class<L> getImplementationClass()
Returns the base class of objects to be returned bygetImplementation(String). The class depends on the underlying logging framework (Log4J, SLF4J, etc.).- Returns:
- the type of loggers used for the implementation backend.
-
getImplementation
protected abstract L getImplementation(String name)
Returns the implementation to use for the logger of the specified name. The object to be returned depends on the logging framework (Log4J, SLF4J, etc.). If the target framework redirects logging events to JDK logging, then this method shall returnnullsince we should not use wrapper at all.- Parameters:
name- the name of the logger.- Returns:
- the logger as an object of the target logging framework (Log4J, SLF4J,
etc.), or
nullif the target framework would redirect to the JDK logging framework.
-
wrap
protected abstract Logger wrap(String name, L implementation)
Wraps the specified implementation in a JDK logger.- Parameters:
name- the name of the logger.implementation- an implementation returned bygetImplementation(String).- Returns:
- a new logger wrapping the specified implementation.
-
unwrap
protected abstract L unwrap(Logger logger)
Returns the implementation wrapped by the specified logger, ornullif none. If the specified logger is not an instance of the expected class, then this method should returnsnull.- Parameters:
logger- the logger to test.- Returns:
- the implementation wrapped by the specified logger, or
nullif none.
-
-