package org.alfresco.filesys.debug; /* * Copyright (C) 2007-2010 Alfresco Software Limited. * * This file is part of Alfresco * * Alfresco 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. * * Alfresco 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 Alfresco. If not, see . */ import org.springframework.extensions.config.ConfigElement; import org.alfresco.jlan.debug.Debug; import org.alfresco.jlan.debug.DebugInterface; import org.alfresco.jlan.debug.DebugInterfaceBase; import org.alfresco.jlan.server.config.ServerConfiguration; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; /** * Alfresco File Server Debug Interface Class * * Adapts JLAN's debug information out to Alfresco's logging * * @author gkspencer */ public class FileServerDebugInterface implements DebugInterface { // Logger to use for all file server debug output private static final Log logger = LogFactory.getLog("org.alfresco.fileserver"); // temporary buffer for debugPrint // MER TODO - Not thread safe - probably needs to be in a thread slot. Would be much better to fix DebugInterface. private StringBuilder m_printBuf; /** * Class constructor */ public FileServerDebugInterface() { m_printBuf = new StringBuilder(120); } /** * Output a debug string. * * @param str String */ public void debugPrint(String str, int level) { if ( level <= getLogLevel()) m_printBuf.append( str); } /** * Output a debug string, and a newline. * * @param str String */ public void debugPrintln(String str, int level) { // Check if there is any buffered output if ( level <= getLogLevel()) if ( m_printBuf.length() > 0) { m_printBuf.append( str); logOutput( m_printBuf.toString(), level); m_printBuf.setLength( 0); } else { logOutput( str, level); } } /** * Output an exception * * @param ex Throwable * @param level int */ public void debugPrintln( Throwable ex, int level) { // Check if the logging level is enabled switch ( level) { case Debug.Debug: logger.debug( "Debug from JLAN", ex); break; case Debug.Info: logger.info( "Info from JLAN", ex); break; case Debug.Warn: logger.warn( "Warning from JLAN", ex); break; case Debug.Fatal: logger.fatal("Fatal from JLAN", ex); break; case Debug.Error: logger.error("Error from JLAN", ex); break; } } /** * Output to the logger at the appropriate log level * * @param str String * @param level int */ protected void logOutput(String str, int level) { switch ( level) { case Debug.Debug: logger.debug( str); break; case Debug.Info: logger.info( str); break; case Debug.Warn: logger.warn( str); break; case Debug.Fatal: logger.fatal( str); break; case Debug.Error: logger.error( str); break; } } /** * Initialize the debug interface using the specified named parameters. * * @param params ConfigElement * @exception Exception */ public void initialize(ConfigElement params) throws Exception { } /** * Map logger level to JLAN debug level */ public int getLogLevel() { int logLevel = Debug.Error; if ( logger.isDebugEnabled()) logLevel = Debug.Debug; else if ( logger.isInfoEnabled()) logLevel = Debug.Info; else if ( logger.isWarnEnabled()) logLevel = Debug.Warn; else if ( logger.isErrorEnabled()) logLevel = Debug.Error; else if ( logger.isFatalEnabled()) logLevel = Debug.Fatal; return logLevel; } @Override public void close() { // Nothing to do } @Override public void debugPrint(String str) { debugPrint(str, Debug.Debug); } @Override public void debugPrintln(String str) { debugPrintln(str, Debug.Debug); } @Override public void debugPrintln(Exception ex, int level) { switch ( level) { case Debug.Debug: logger.debug( "Debug from JLAN", ex); break; case Debug.Info: logger.info( "Info from JLAN", ex); break; case Debug.Warn: logger.warn( "Warning from JLAN", ex); break; case Debug.Fatal: logger.fatal("Fatal from JLAN", ex); break; case Debug.Error: logger.error("Error from JLAN", ex); break; } } @Override public void initialize(ConfigElement params, ServerConfiguration config) throws Exception { // TODO Auto-generated method stub } }