mirror of
https://github.com/apache/poi.git
synced 2026-02-27 20:40:08 +08:00
https://svn.apache.org/repos/asf/poi/trunk ........ r638803 | nick | 2008-03-19 11:57:38 +0000 (Wed, 19 Mar 2008) | 1 line Added test to show that bug #41546 is already fixed. Also rename a test file to be more consistent ........ r638804 | nick | 2008-03-19 12:01:32 +0000 (Wed, 19 Mar 2008) | 1 line Add test to show that bug #43251 is already fixed ........ r638812 | nick | 2008-03-19 12:28:56 +0000 (Wed, 19 Mar 2008) | 1 line Patch from Dmitriy from bug #30311 - Support for conditional formatting records ........ r638815 | nick | 2008-03-19 12:49:35 +0000 (Wed, 19 Mar 2008) | 1 line Fix bug #44627 - improve the thread safety of POILogFactory ........ r639231 | nick | 2008-03-20 10:06:59 +0000 (Thu, 20 Mar 2008) | 1 line Test relating to bug #44636 ........ r639232 | nick | 2008-03-20 10:16:15 +0000 (Thu, 20 Mar 2008) | 1 line Simple patch from Josh from bug #44636 - fix for RefVPtg and edit-in-excel oddness ........ r639242 | nick | 2008-03-20 11:02:39 +0000 (Thu, 20 Mar 2008) | 1 line Fix for readCompressedUnicode not moaning about length=0, from bug #44643 ........ r639254 | nick | 2008-03-20 11:43:14 +0000 (Thu, 20 Mar 2008) | 1 line Make junit happy ........ r639836 | nick | 2008-03-21 21:04:47 +0000 (Fri, 21 Mar 2008) | 1 line Tweak how you get dataformat strings out of cell styles, to be more logical, and in keeping with how we'll want to do things for xssf too ........ git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@642557 13f79535-47bb-0310-9956-ffa450edef68
127 lines
3.9 KiB
Java
127 lines
3.9 KiB
Java
|
|
/* ====================================================================
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
this work for additional information regarding copyright ownership.
|
|
The ASF licenses this file to You 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 org.apache.poi.util;
|
|
|
|
import java.util.*;
|
|
|
|
/**
|
|
* Provides logging without clients having to mess with
|
|
* configuration/initialization.
|
|
*
|
|
* @author Andrew C. Oliver (acoliver at apache dot org)
|
|
* @author Marc Johnson (mjohnson at apache dot org)
|
|
* @author Nicola Ken Barozzi (nicolaken at apache.org)
|
|
*/
|
|
|
|
public class POILogFactory
|
|
{
|
|
|
|
/**
|
|
* Map of POILogger instances, with classes as keys
|
|
*/
|
|
private static Map _loggers = new HashMap();;
|
|
|
|
/**
|
|
* A common instance of NullLogger, as it does nothing
|
|
* we only need the one
|
|
*/
|
|
private static POILogger _nullLogger = new NullLogger();
|
|
/**
|
|
* The name of the class to use. Initialised the
|
|
* first time we need it
|
|
*/
|
|
private static String _loggerClassName = null;
|
|
|
|
/**
|
|
* Construct a POILogFactory.
|
|
*/
|
|
private POILogFactory()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Get a logger, based on a class name
|
|
*
|
|
* @param theclass the class whose name defines the log
|
|
*
|
|
* @return a POILogger for the specified class
|
|
*/
|
|
|
|
public static POILogger getLogger(final Class theclass)
|
|
{
|
|
return getLogger(theclass.getName());
|
|
}
|
|
|
|
/**
|
|
* Get a logger, based on a String
|
|
*
|
|
* @param cat the String that defines the log
|
|
*
|
|
* @return a POILogger for the specified class
|
|
*/
|
|
|
|
public static POILogger getLogger(final String cat)
|
|
{
|
|
POILogger logger = null;
|
|
|
|
// If we haven't found out what logger to use yet,
|
|
// then do so now
|
|
// Don't look it up until we're first asked, so
|
|
// that our users can set the system property
|
|
// between class loading and first use
|
|
if(_loggerClassName == null) {
|
|
try {
|
|
_loggerClassName = System.getProperty("org.apache.poi.util.POILogger");
|
|
} catch(Exception e) {}
|
|
|
|
// Use the default logger if none specified,
|
|
// or none could be fetched
|
|
if(_loggerClassName == null) {
|
|
_loggerClassName = _nullLogger.getClass().getName();
|
|
}
|
|
}
|
|
|
|
// Short circuit for the null logger, which
|
|
// ignores all categories
|
|
if(_loggerClassName.equals(_nullLogger.getClass().getName())) {
|
|
return _nullLogger;
|
|
}
|
|
|
|
|
|
// Fetch the right logger for them, creating
|
|
// it if that's required
|
|
if (_loggers.containsKey(cat)) {
|
|
logger = ( POILogger ) _loggers.get(cat);
|
|
} else {
|
|
try {
|
|
Class loggerClass = Class.forName(_loggerClassName);
|
|
logger = ( POILogger ) loggerClass.newInstance();
|
|
logger.initialize(cat);
|
|
} catch(Exception e) {
|
|
// Give up and use the null logger
|
|
logger = _nullLogger;
|
|
}
|
|
|
|
// Save for next time
|
|
_loggers.put(cat, logger);
|
|
}
|
|
return logger;
|
|
}
|
|
} // end public class POILogFactory |