/******************************************************************************* * $Id$ * $Author$ * $Date$ * * Copyright 2002-2003 YAJUL Developers, Joshua Davis, Kent Vogel. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * ******************************************************************************/ package org.yajul.util; import java.io.File; import java.io.IOException; import java.net.URL; import java.util.Properties; import java.util.logging.Level; import java.util.logging.Logger; /** * Provides utility methods for instantiating objects with * dynamic, or 'soft' linkages. This is particularly useful * for instantiating abstract singletons, or replacing 'hard' * dependencies (often circular) with soft linkages that are resolved * at run-time. * Or... you could just use Guice. :) * <br> * User: josh * Date: Oct 21, 2003 * Time: 8:23:12 AM */ public class ObjectFactory { private static Logger log = Logger.getLogger(ObjectFactory.class.getName()); /** * Creates an instance from the specified property in the specified properties-file * resource, which will be loaded from the current thread's class loader. If the * class implements Initializeable, it will be initialized. * * @param resourceName The name of the resource to load. * @param propertyName The name of the property to look for in the resource. * @param defaultClassName The default class name to use, if the resource was not found. * @param resourceAndPropertyRequired Set to true if the resource and property name are required. * @return Object - The new instance. * @throws InitializationException if the resource could not be loaded. * @throws java.io.IOException if the properties resource could not be read */ public static Object createInstanceFromPropertiesResource(String resourceName, String propertyName, String defaultClassName, boolean resourceAndPropertyRequired) throws InitializationException, IOException { Properties properties = ResourceUtil.loadProperties(resourceName); if (properties == null) { String message = "Properties resource " + resourceName + " was not found."; if (resourceAndPropertyRequired) throw new InitializationException(message); if (log.isLoggable(Level.FINE)) log.log(Level.FINE, message + " Using default class name '" + defaultClassName + "'."); } return createInstanceFromProperties(properties, propertyName, defaultClassName, resourceAndPropertyRequired); } /** * Creates an instance from the specified set of properties If the * class implements Initializeable, it will be initialized. * * @param properties The properties to use. * @param propertyName The name of the property to look for. * @param defaultClassName The default class name to use, if the property was not found. * @param propertyRequired Set to true if the property name is required. * @return Object - The new instance. * @throws InitializationException if the resource could not be loaded. */ public static Object createInstanceFromProperties(Properties properties, String propertyName, String defaultClassName, boolean propertyRequired) throws InitializationException { String className = defaultClassName; if (properties == null) { String message = "No properties specified."; if (propertyRequired) throw new InitializationException(message); if (log.isLoggable(Level.FINE)) log.log(Level.FINE, message + " Using default class name '" + defaultClassName + "'."); } else className = getClassName(properties, propertyName, null, propertyRequired, defaultClassName); return createInstance(className, properties); } /** * Returns the base part of the classpath where the specified class can be found. * * @param c The class to look up. * @return the base part of the classpath where the class was found. */ public static String getClasspathRoot(Class c) { String resourceName = ReflectionUtil.getClassResourceName(c); ClassLoader loader = ReflectionUtil.getCurrentClassLoader(); URL url = loader.getResource(resourceName); String protocol = url.getProtocol(); if ("file".equals(protocol)) { String fileString = url.getFile(); if (fileString.endsWith(resourceName)) { String rv = fileString.substring(0, fileString.length() - resourceName.length()); return new File(rv).getAbsolutePath(); } else return null; } else return null; } // --- Implementation methods --- private static Object createInstance(String className, Properties properties) throws InitializationException { // Create the instance. Object inst = ReflectionUtil.createInstance(className); // If the instance supports the Initializeable interface, initialize it. if (inst instanceof Initializeable) { Initializeable initializeableObject = (Initializeable) inst; initializeableObject.initialize(properties); } return inst; } private static String getClassName(Properties properties, String propertyName, String resourceName, boolean resourceAndPropertyRequired, String defaultClassName) throws InitializationException { String className; className = (properties == null) ? null : properties.getProperty(propertyName); if (StringUtil.isEmpty(className)) { String message = "Properties " + ((resourceName == null) ? "" : ("resource " + resourceName)) + " did not contain a value for " + propertyName + "."; if (resourceAndPropertyRequired) throw new InitializationException(message); if (log.isLoggable(Level.FINE)) log.log(Level.FINE, message + " Using default class name '" + defaultClassName + "'."); className = defaultClassName; } return className; } }