Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
Copyright 2015-2019 Futeh Kao
Licensed 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 net.e6tech.elements.common.logging;
import net.e6tech.elements.common.util.SystemException;
import org.apache.logging.log4j.ThreadContext;
import org.slf4j.LoggerFactory;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
/**
* Created by futeh.
*/
@SuppressWarnings({"squid:S106", "squid:S1604", "squid:S1188", "squid:S2696", "squid:MethodCyclomaticComplexity"}) // we need to use System.out
public class LogHandler implements InvocationHandler {
private static final String LOG_DIR = "logDir";
private static String logDir;
static {
System.setProperty("java.util.logging.manager", "net.e6tech.elements.common.logging.jul.LogManager");
}
private static ConsoleLogger consoleLogger = new ConsoleLogger();
private org.slf4j.Logger slf4jLogger;
private Class loggingClass;
private String loggingName;
private LogLevel level = LogLevel.ERROR;
private LoggerExtension loggerExtension = new LoggerExtension() {
@Override
public Logger logger(LogLevel level) {
LogHandler handler = new LogHandler(slf4jLogger);
handler.level = level;
if (loggingClass != null)
handler.loggingClass = loggingClass;
if (loggingName != null)
handler.loggingName = loggingName;
return (Logger) Proxy.newProxyInstance(Logger.class.getClassLoader(), new Class[]{Logger.class},
handler);
}
public void log(String msg, Throwable e) {
logWithLevel(level, msg, e);
}
public Logger log(LogLevel l, String msg, Throwable e) {
Logger logger = logger(l);
logger.log(msg, e);
return logger;
}
@Override
public SystemException systemException(String msg, Throwable th) {
SystemException t = LoggerExtension.super.systemException(msg, th);
logWithLevel(level, msg, th);
return t;
}
@Override
public T exception(Class exceptionClass, String msg, Throwable e) {
T t = LoggerExtension.super.exception(exceptionClass, msg, e);
logWithLevel(level, msg, e);
return t;
}
private void logWithLevel(LogLevel l, String msg, Throwable e) {
if (getLogger() != null) {
switch (l) {
case FATAL:
case ERROR:
getLogger().error(msg, e);
break;
case WARN:
getLogger().warn(msg, e);
break;
case INFO:
getLogger().info(msg, e);
break;
case DEBUG:
getLogger().debug(msg, e);
break;
case TRACE:
getLogger().trace(msg, e);
break;
default:
getLogger().warn(msg, e);
break;
}
} else {
System.out.println(msg);
e.printStackTrace(System.out);
}
}
};
LogHandler(org.slf4j.Logger slf4jLogger) {
this.slf4jLogger = slf4jLogger;
}
LogHandler(Class cls) {
loggingClass = cls;
}
LogHandler(String name) {
loggingName = name;
}
// This level of indirection is needed, otherwise, Log4j will look at the system property
// prematurely.
// this method should only be called when the caller starts to log output.
@SuppressWarnings("squid:S3776")
protected org.slf4j.Logger getLogger() {
if (slf4jLogger != null)
return slf4jLogger;
synchronized (this) {
if (slf4jLogger != null)
return slf4jLogger;
if (loggingClass == null && loggingName == null)
return null;
if (System.getProperty("log4j.configurationFile") == null) {
return consoleLogger;
}
// if logDir is not configured we should just use consoleLogger.
if (ThreadContext.get(LOG_DIR) == null) {
if (logDir == null) {
if (System.getProperty(LOG_DIR) != null)
logDir = System.getProperty(LOG_DIR);
else if (System.getProperty(Logger.logDir) != null)
logDir = System.getProperty(Logger.logDir);
}
if (logDir == null)
return consoleLogger;
else ThreadContext.put(LOG_DIR, logDir);
}
// calling LoggerFactory.getLogger will trigger log4j being initialized.
if (loggingClass != null)
slf4jLogger = LoggerFactory.getLogger(loggingClass);
else
slf4jLogger = LoggerFactory.getLogger(loggingName);
loggingClass = null;
loggingName = null;
}
return slf4jLogger;
}
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
if (method.getDeclaringClass().equals(LoggerExtension.class)) {
return method.invoke(loggerExtension, args);
} else {
org.slf4j.Logger logger = getLogger();
if (logger == null) {
return null;
} else {
return method.invoke(logger, args);
}
}
}
}