/** * * Copyright 2014 The Darks ORM Project (Liu lihua) * * 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 darks.orm.log; import java.lang.reflect.Constructor; import darks.orm.exceptions.LogException; public class LoggerFactory { private static volatile Constructor<? extends Logger> logConstructor; static { setLogConstructor("darks.orm.log.impl.Slf4jLogger"); setLogConstructor("darks.orm.log.impl.Log4jLogger"); setLogConstructor("darks.orm.log.impl.Jdk14Logger"); setLogConstructor("darks.orm.log.impl.StdIOLogger"); setLogConstructor("darks.orm.log.impl.NoOpLogger"); } public static Logger getLogger(Class<?> aClass) { return getLogger(aClass.getName()); } public static Logger getLogger(String logger) { try { return (Logger)logConstructor.newInstance(new Object[] {logger}); } catch (Throwable t) { throw new LogException("Error creating logger for logger " + logger + ". Cause: " + t, t); } } @SuppressWarnings("unchecked") private static void setLogConstructor(String className) { if (logConstructor == null) { try { Class<?> implClass = Class.forName(className); Constructor<?> candidate = implClass.getConstructor(new Class[] {String.class}); candidate.newInstance(new Object[] {LoggerFactory.class.getName()}); System.out.println("Logging initialized using '" + className + "' adapter."); logConstructor = (Constructor<? extends Logger>)candidate; } catch (Exception e) { } } } }