All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zusmart.base.logging.support.JdkLogger Maven / Gradle / Ivy

Go to download

提供基础的工具类及方法类,Logging,Scanner,Buffer,NetWork,Future,Thread

There is a newer version: 1.0.6
Show newest version
/*
 * Copyright 2019 The ZuSmart Project
 *  
 * 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 com.zusmart.base.logging.support;

import java.util.logging.Level;
import java.util.logging.LogRecord;
import java.util.logging.Logger;

import com.zusmart.base.logging.format.Formatter;
import com.zusmart.base.logging.format.FormatterTuple;

public class JdkLogger extends AbstractLogger {

	private static final long serialVersionUID = 3957556851161294085L;
	private static final String SELF = JdkLogger.class.getName();
	private static final String SUPER = AbstractLogger.class.getName();

	private final transient Logger logger;

	public JdkLogger(Logger logger) {
		super(logger.getName());
		this.logger = logger;
	}

	@Override
	public boolean isTraceEnabled() {
		return logger.isLoggable(Level.FINEST);
	}

	@Override
	public boolean isDebugEnabled() {
		return this.logger.isLoggable(Level.FINE);
	}

	@Override
	public boolean isInfoEnabled() {
		return this.logger.isLoggable(Level.INFO);
	}

	@Override
	public boolean isWarnEnabled() {
		return this.logger.isLoggable(Level.WARNING);
	}

	@Override
	public boolean isErrorEnabled() {
		return logger.isLoggable(Level.SEVERE);
	}

	@Override
	public void trace(String msg) {
		if (this.logger.isLoggable(Level.FINEST)) {
			this.log(SELF, Level.FINEST, msg, null);
		}
	}

	@Override
	public void trace(String format, Object arg) {
		if (this.logger.isLoggable(Level.FINEST)) {
			FormatterTuple ft = Formatter.format(format, arg);
			this.log(SELF, Level.FINEST, ft.getMessage(), ft.getThrowable());
		}
	}

	@Override
	public void trace(String format, Object argA, Object argB) {
		if (this.logger.isLoggable(Level.FINEST)) {
			FormatterTuple ft = Formatter.format(format, argA, argB);
			this.log(SELF, Level.FINEST, ft.getMessage(), ft.getThrowable());
		}
	}

	@Override
	public void trace(String format, Object... argArray) {
		if (this.logger.isLoggable(Level.FINEST)) {
			FormatterTuple ft = Formatter.format(format, argArray);
			this.log(SELF, Level.FINEST, ft.getMessage(), ft.getThrowable());
		}
	}

	@Override
	public void trace(String msg, Throwable t) {
		if (this.logger.isLoggable(Level.FINEST)) {
			this.log(SELF, Level.FINEST, msg, t);
		}
	}

	@Override
	public void debug(String msg) {
		if (this.logger.isLoggable(Level.FINE)) {
			this.log(SELF, Level.FINE, msg, null);
		}
	}

	@Override
	public void debug(String format, Object arg) {
		if (this.logger.isLoggable(Level.FINE)) {
			FormatterTuple ft = Formatter.format(format, arg);
			this.log(SELF, Level.FINE, ft.getMessage(), ft.getThrowable());
		}
	}

	@Override
	public void debug(String format, Object argA, Object argB) {
		if (this.logger.isLoggable(Level.FINE)) {
			FormatterTuple ft = Formatter.format(format, argA, argB);
			this.log(SELF, Level.FINE, ft.getMessage(), ft.getThrowable());
		}
	}

	@Override
	public void debug(String format, Object... argArray) {
		if (this.logger.isLoggable(Level.FINE)) {
			FormatterTuple ft = Formatter.format(format, argArray);
			this.log(SELF, Level.FINE, ft.getMessage(), ft.getThrowable());
		}
	}

	@Override
	public void debug(String msg, Throwable t) {
		if (this.logger.isLoggable(Level.FINE)) {
			this.log(SELF, Level.FINE, msg, t);
		}
	}

	@Override
	public void info(String msg) {
		if (this.logger.isLoggable(Level.INFO)) {
			this.log(SELF, Level.INFO, msg, null);
		}
	}

	@Override
	public void info(String format, Object arg) {
		if (this.logger.isLoggable(Level.INFO)) {
			FormatterTuple ft = Formatter.format(format, arg);
			this.log(SELF, Level.INFO, ft.getMessage(), ft.getThrowable());
		}
	}

	@Override
	public void info(String format, Object argA, Object argB) {
		if (this.logger.isLoggable(Level.INFO)) {
			FormatterTuple ft = Formatter.format(format, argA, argB);
			this.log(SELF, Level.INFO, ft.getMessage(), ft.getThrowable());
		}
	}

	@Override
	public void info(String format, Object... argArray) {
		if (this.logger.isLoggable(Level.INFO)) {
			FormatterTuple ft = Formatter.format(format, argArray);
			this.log(SELF, Level.INFO, ft.getMessage(), ft.getThrowable());
		}
	}

	@Override
	public void info(String msg, Throwable t) {
		if (this.logger.isLoggable(Level.INFO)) {
			this.log(SELF, Level.INFO, msg, t);
		}
	}

	@Override
	public void warn(String msg) {
		if (this.logger.isLoggable(Level.WARNING)) {
			this.log(SELF, Level.WARNING, msg, null);
		}
	}

	@Override
	public void warn(String format, Object arg) {
		if (this.logger.isLoggable(Level.WARNING)) {
			FormatterTuple ft = Formatter.format(format, arg);
			this.log(SELF, Level.WARNING, ft.getMessage(), ft.getThrowable());
		}
	}

	@Override
	public void warn(String format, Object argA, Object argB) {
		if (this.logger.isLoggable(Level.WARNING)) {
			FormatterTuple ft = Formatter.format(format, argA, argB);
			this.log(SELF, Level.WARNING, ft.getMessage(), ft.getThrowable());
		}
	}

	@Override
	public void warn(String format, Object... argArray) {
		if (this.logger.isLoggable(Level.WARNING)) {
			FormatterTuple ft = Formatter.format(format, argArray);
			this.log(SELF, Level.WARNING, ft.getMessage(), ft.getThrowable());
		}
	}

	@Override
	public void warn(String msg, Throwable t) {
		if (this.logger.isLoggable(Level.WARNING)) {
			this.log(SELF, Level.WARNING, msg, t);
		}
	}

	@Override
	public void error(String msg) {
		if (this.logger.isLoggable(Level.SEVERE)) {
			this.log(SELF, Level.SEVERE, msg, null);
		}
	}

	@Override
	public void error(String format, Object arg) {
		if (this.logger.isLoggable(Level.SEVERE)) {
			FormatterTuple ft = Formatter.format(format, arg);
			this.log(SELF, Level.SEVERE, ft.getMessage(), ft.getThrowable());
		}
	}

	@Override
	public void error(String format, Object argA, Object argB) {
		if (this.logger.isLoggable(Level.SEVERE)) {
			FormatterTuple ft = Formatter.format(format, argA, argB);
			this.log(SELF, Level.SEVERE, ft.getMessage(), ft.getThrowable());
		}
	}

	@Override
	public void error(String format, Object... arguments) {
		if (this.logger.isLoggable(Level.SEVERE)) {
			FormatterTuple ft = Formatter.format(format, arguments);
			this.log(SELF, Level.SEVERE, ft.getMessage(), ft.getThrowable());
		}
	}

	@Override
	public void error(String msg, Throwable t) {
		if (this.logger.isLoggable(Level.SEVERE)) {
			this.log(SELF, Level.SEVERE, msg, t);
		}
	}

	private void log(String callerFQCN, Level level, String msg, Throwable t) {
		LogRecord record = new LogRecord(level, msg);
		record.setLoggerName(this.getName());
		record.setThrown(t);
		fillCallerData(callerFQCN, record);
		this.logger.log(record);
	}

	private static void fillCallerData(String callerFQCN, LogRecord record) {
		StackTraceElement[] steArray = new Throwable().getStackTrace();
		int selfIndex = -1;
		for (int i = 0; i < steArray.length; i++) {
			final String className = steArray[i].getClassName();
			if (className.equals(callerFQCN) || className.equals(SUPER)) {
				selfIndex = i;
				break;
			}
		}
		int found = -1;
		for (int i = selfIndex + 1; i < steArray.length; i++) {
			final String className = steArray[i].getClassName();
			if (!(className.equals(callerFQCN) || className.equals(SUPER))) {
				found = i;
				break;
			}
		}
		if (found != -1) {
			StackTraceElement ste = steArray[found];
			record.setSourceClassName(ste.getClassName());
			record.setSourceMethodName(ste.getMethodName());
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy