Package org.apache.stratum.component

Source Code of org.apache.stratum.component.ComponentLoader

package org.apache.stratum.component;

/* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001-2002 The Apache Software Foundation.  All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
*    notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
*    notice, this list of conditions and the following disclaimer in
*    the documentation and/or other materials provided with the
*    distribution.
*
* 3. The end-user documentation included with the redistribution,
*    if any, must include the following acknowledgment:
*       "This product includes software developed by the
*        Apache Software Foundation (http://www.apache.org/)."
*    Alternately, this acknowledgment may appear in the software itself,
*    if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Apache" and "Apache Software Foundation" and
*    "Apache Turbine" must not be used to endorse or promote products
*    derived from this software without prior written permission. For
*    written permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache",
*    "Apache Turbine", nor may "Apache" appear in their name, without
*    prior written permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation.  For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*/

import java.io.IOException;
import java.util.Vector;
import org.apache.log4j.Category;
import org.apache.stratum.configuration.Configuration;
import org.apache.stratum.configuration.PropertiesConfiguration;
import org.apache.stratum.lifecycle.Configurable;
import org.apache.stratum.lifecycle.Initializable;

/**
* Loader for Components implementing the lifecyle Interfaces.
*
* NOTE: This class is in its infancy and will more than likely
*       change.
*
* @author <a href="mailto:eric NOSPAM dobbse.net">Eric Dobbs</a>
* @author <a href="mailto:mpoeschl@marmot.at">Martin Poeschl</a>
* @version $Id: ComponentLoader.java,v 1.6 2002/03/14 00:36:43 jvanzyl Exp $
*/
public class ComponentLoader
{
    /**
     * Log4j category used for logging. NOTE: we should change this to
     * use the commons-logging API.
     */
    private static Category log = Category.getInstance(ComponentLoader.class);
   
    /**
     * Component tag used in Configurations
     */
    private static String COMPONENT = "component";
   
    /**
     * Class name tag used in Configurations
     */
    private static String CLASSNAME = "classname";
   
    /**
     *  Extension used for Configuration files.
     */
    private static String CONFIG    = "config";
   
    /**
     * Name tag used in Configurations
     */
    private static String NAME      = "name";
   
    /**
     * Configuration used by this ComponentLoader.
     */
    private Configuration configuration;

    /**
     * Constructor
     *
     * @param configuration
     */
    public ComponentLoader(Configuration configuration)
    {
        this.configuration = configuration;
    }

    /**
     * Set the configuration for this ComponentLoader
     *
     * @param configuration Configuration
     */
    public void setConfiguration(Configuration configuration)
    {
        this.configuration = configuration;
    }

    /**
     * Support method for testing the constructor
     *
     * @return the configuration
     */
    public Configuration getConfiguration()
    {
        return configuration;
    }

    /**
     * <p>Load all the components listed in the ComponentLoader's
     * configuration.  Log any errors, but throw no exceptions if
     * components cannot be loaded.</p>
     *
     * Configuration notes:<br/>
     * Components are identified in the properties file as
     * follows:<br/>
     * <code>
     * component.name=NAME
     * component.NAME.classname = com.mycompany.components.SomeComponent
     * component.NAME.config    = path/to/SomeComponent.properties
     * </code>
     */
    public void load()
    {
        Vector components = configuration.getVector(COMPONENT + '.' + NAME);

        String componentName;
        String componentClassName;
        String componentConfig;

        for (int i = 0; i < components.size(); i++)
        {
            componentName      = (String) components.get(i);
            componentClassName = getComponentClassname(componentName);
            componentConfig    = getComponentConfigFile(componentName);

            log.info("loading component: name=" + componentName + " class="
                    + componentClassName + " config=" + componentConfig);

            loadComponent(componentClassName, componentConfig);
        }
    }

    /**
     * load the given component, configure it with the given config
     * file, and initialize it. <br>
     * The component must implement the <code>Initializable</code> and
     * <code>Configurable</code> interfaces.
     *
     * @see Initializable
     * @see Configurable
     * @param className the String class name of the component to load
     * @param configFile the String path name of the component's config file
     */
    public void loadComponent(String className, String configFile)
    {
        if (log.isDebugEnabled())
        {
            log.debug("attempting to load '" + className
                      + "' with the config file '" + configFile + "'.");
        }

        try
        {
            Object component = Class.forName(className).newInstance();

            // configure component using the given config file
            ((Configurable) component)
                .configure(new PropertiesConfiguration(configFile));

            // initialize component
            ((Initializable) component).initialize();

            if (log.isDebugEnabled())
            {
                log.debug("good news! " + className
                          + " successfully configured and initialized");
            }
        }
        catch (IOException ioe)
        {
            log.error(className + " could not be configured with file '"
                      + configFile + "'.", ioe);
        }
        catch (Exception e)
        {
            log.error(className + " could not be initialized!", e);
        }
    }

    /**
     * <p>Get the component's classname as defined in the ComponentLoader
     * configuration.</p>
     *
     * <p>Example property:<br/>
     * component.NAME.classname=com.mycompany.components.MyComponent</p>
     *
     * @param name the String NAME of the component in the classfile
     * @return the configured classname
     */
    private String getComponentClassname(String name)
    {
        return configuration.getString(COMPONENT + '.' + name
                                       + '.' + CLASSNAME);
    }

    /**
     * <p>Get the component's config file as defined in the ComponentLoader
     * configuration.</p>
     *
     * <p>Example property:<br/>
     * component.NAME.config=path/to/your/config</p>
     *
     * @param name the String NAME of the component in the classfile
     * @return the configured config file
     */
    private String getComponentConfigFile(String name)
    {
        return configuration.getString(COMPONENT + '.' + name + '.' + CONFIG);
    }
}
TOP

Related Classes of org.apache.stratum.component.ComponentLoader

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.