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

com.tsc9526.monalisa.tools.logger.ConsoleLoggerFactory Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
/*******************************************************************************************
 *	Copyright (c) 2016, zzg.zhou([email protected])
 * 
 *  Monalisa is free software: you can redistribute it and/or modify
 *	it under the terms of the GNU Lesser General Public License as published by
 *	the Free Software Foundation, either version 3 of the License, or
 *	(at your option) any later version.

 *	This program is distributed in the hope that it will be useful,
 *	but WITHOUT ANY WARRANTY; without even the implied warranty of
 *	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *	GNU Lesser General Public License for more details.

 *	You should have received a copy of the GNU Lesser General Public License
 *	along with this program.  If not, see .
 *******************************************************************************************/
package com.tsc9526.monalisa.tools.logger;

import java.io.PrintWriter;
import java.io.StringWriter;

import javax.annotation.processing.Messager;
import javax.tools.Diagnostic.Kind;

/**
 * 
 * @author zzg.zhou([email protected])
 */
public class ConsoleLoggerFactory implements LoggerFactory {
	static Messager messager=null;
	 
	ConsoleLoggerFactory() {
	}

	public Logger getLogger(String category) {
		return LOGGER;
	}

	static final ConsoleLogger LOGGER= new ConsoleLogger();
	
	public static class ConsoleLogger extends Logger {
		public void trace(String message){	
		}
		
		public void trace(String message, Throwable t){
		}
		
		public void trace(Throwable t){
			
		}
		
		public void debug(String message) {
			println("DEBUG",message);
		}

		public void debug(String message, Throwable t) {
			println("DEBUG",message,t);
		}

		public void error(String message) {
			println("ERROR",message);
		}

		public void error(String message, Throwable t) {
			println("ERROR",message,t);
		}

		public void info(String message) {
			println("INFO",message);
		}

		public void info(String message, Throwable t) {
			println("INFO",message,t);
		}

		public void warn(String message) {
			println("WARN",message);
		}

		public void warn(String message, Throwable t) {
			println("WARN",message,t);
		}

		public boolean isDebugEnabled() {
			return false;
		}

		public boolean isInfoEnabled() {
			return true;
		}

		public boolean isWarnEnabled() {
			return true;
		}

		public boolean isErrorEnabled() {
			return true;
		}

		public boolean isFatalEnabled() {
			return true;
		}
		
		protected void println(String level,String message){
			println(level,message,null);
		}
		
		protected void println(String level,String message, Throwable t){
			StringBuilder sb=new StringBuilder();
			
			sb.append("[").append(level).append("] ").append(message);
			
			if(t!=null){
				StringWriter writer=new StringWriter(4*1024);
				t.printStackTrace(new PrintWriter(writer));
				sb.append("\r\n").append(writer.getBuffer().toString());
			}
			
			write(level,sb.toString());
		}
		
		protected void write(String level,String message) {
			if(messager!=null){
				if(isError(level)){
					messager.printMessage(Kind.ERROR, message);
				}else{
					messager.printMessage(Kind.NOTE, message);
				}
			}else{
				if(isError(level)){
					System.err.println(message);
				}else{
					System.out.println(message);
				}
			}
		}
		
		protected boolean isError(String level) {
			return "ERROR".equals(level) || "FATAL".equals(level);
		}
	};
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy