view artifact-database/src/main/java/de/intevation/artifactdatabase/DefaultServiceFactory.java @ 93:e27cf9c84eb8

Unified imports. artifacts/trunk@849 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Sun, 28 Mar 2010 15:57:40 +0000
parents 68285f7bc476
children 933bbc9fc11f
line wrap: on
line source
package de.intevation.artifactdatabase;

import de.intevation.artifacts.Service;
import de.intevation.artifacts.ServiceFactory;

import org.apache.log4j.Logger;

import org.w3c.dom.Document;
import org.w3c.dom.Node;

/**
 * Trivial implementation of the ServiceFactory interface.
 * Name and an description are configured by the given Node given to
 * #setup(Document, Node) via the 'name' and 'description' attributes.
 * The name of the class that provides the concrete serice is configured
 * by the 'service' attribute.
 *
 * @author <a href="mailto:sascha.teichmann@intevation.de">Sascha L. Teichmann</a>
 */
public class DefaultServiceFactory
implements   ServiceFactory
{
    private static Logger logger =
        Logger.getLogger(DefaultServiceFactory.class);

    /**
     * XPath to access the name of the service.
     */
    public static final String XPATH_NAME        = "@name";
    /**
     * XPath to access the description of the service.
     */
    public static final String XPATH_DESCRIPTION = "@description";
    /**
     * XPath to access the class name of the service to be build by
     * this factory.
     */
    public static final String XPATH_SERVICE     = "@service";

    /**
     * Default description if no description is given in configuration.
     */
    public static final String DEFAULT_DESCRIPTION =
        "No description available";

    /**
     * Loaded service class if no class name is given in the configuration.
     */
    public static final String DEFAULT_SERVICE =
        "de.intevation.artifactdatabase.DefaultService";

    /**
     * The name of the service factory.
     */
    protected String name;

    /**
     * The description of the service factory.
     */
    protected String description;

    /**
     * The loaded class used to build the concrete service.
     */
    protected Class  serviceClass;

    /**
     * Default constructor.
     */
    public DefaultServiceFactory() {
    }

    public String getName() {
        return name;
    }

    public String getDescription() {
        return description;
    }

    public Service createService(Object globalContext) {
        try {
            Service service = (Service)serviceClass.newInstance();

            service.setup(this, globalContext);

            return service;
        }
        catch (InstantiationException ie) {
            logger.error(ie.getLocalizedMessage(), ie);
        }
        catch (IllegalAccessException iae) {
            logger.error(iae.getLocalizedMessage(), iae);
        }
        catch (ClassCastException cce) {
            logger.error(cce.getLocalizedMessage(), cce);
        }

        return null;
    }

    public void setup(Document config, Node factoryNode) {

        description = Config.getStringXPath(
            factoryNode, XPATH_DESCRIPTION, DEFAULT_DESCRIPTION);

        name = Config.getStringXPath(
            factoryNode, XPATH_NAME, toString());

        String service = Config.getStringXPath(
            factoryNode, XPATH_SERVICE, DEFAULT_SERVICE);

        try {
            serviceClass = Class.forName(service);
        }
        catch (ClassNotFoundException cnfe) {
            logger.error(cnfe.getLocalizedMessage(), cnfe);
        }

        if (serviceClass == null) {
            serviceClass = DefaultService.class;
        }
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org