org.cleverbus.core.common.extension.AbstractExtensionConfigurationLoader.java Source code

Java tutorial

Introduction

Here is the source code for org.cleverbus.core.common.extension.AbstractExtensionConfigurationLoader.java

Source

/*
 * Copyright (C) 2015
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package org.cleverbus.core.common.extension;

import java.util.Map;

import org.cleverbus.api.route.AbstractExtRoute;
import org.cleverbus.common.log.Log;

import org.apache.camel.CamelContext;
import org.apache.camel.CamelContextAware;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.util.Assert;

/**
 * Parent class for loading CleverBus extensions.
 * There is collection of Spring XML configurations and each XML configuration represents root configuration
 * for each extension. New child Spring context will be created for each extension - see {@link #loadExtensions(String...)}.
 * <p/>
 * If {@link #isAutoRouteAdding()} is true then route definitions which extends {@link AbstractExtRoute})
 * will be automatically added to {@link CamelContext}.
 *
 * @author <a href="mailto:petr.juza@cleverlance.com">Petr Juza</a>
 * @see ClassPathXmlApplicationContext
 */
public abstract class AbstractExtensionConfigurationLoader implements ApplicationContextAware, CamelContextAware {

    private ApplicationContext parentContext;

    private CamelContext camelContext;

    private boolean autoRouteAdding = true;

    /**
     * Creates new configuration loader.
     */
    protected AbstractExtensionConfigurationLoader() {
    }

    /**
     * Creates new configuration loader.
     *
     * @param parentContext the Spring parent context
     * @param camelContext the Camel context
     */
    protected AbstractExtensionConfigurationLoader(ApplicationContext parentContext, CamelContext camelContext) {
        Assert.notNull(parentContext, "parentContext must not be null");
        Assert.notNull(camelContext, "camelContext must not be null");

        this.parentContext = parentContext;
        this.camelContext = camelContext;
    }

    /**
     * Loads Spring configuration files.
     * Each config represents root configuration file for one extension and new child Spring context will be
     * created for each extension.
     *
     * @param extConfigLocations Extension configuration locations
     */
    protected final void loadExtensions(String... extConfigLocations) {
        Assert.state(parentContext != null, "parent context is not defined");
        Assert.state(camelContext != null, "camel context is not defined");

        if (extConfigLocations == null) {
            return;
        }

        int count = 0;
        for (String extConfigLocation : extConfigLocations) {
            try {
                loadExtension(extConfigLocation, ++count);
            } catch (Exception ex) {
                String msg = "error during extension configuration '" + extConfigLocation + "' loading";

                Log.error(msg, ex);

                throw new ExtensionConfigurationException(msg, ex);
            }
        }
    }

    private void loadExtension(String extConfigLocation, int extNumber) throws Exception {
        Log.debug("new extension context for '" + extConfigLocation + "' started ...");

        ClassPathXmlApplicationContext extContext = new ClassPathXmlApplicationContext(parentContext);
        extContext.setId("CleverBus extension nr. " + extNumber);
        extContext.setDisplayName("CleverBus extension context for '" + extConfigLocation + '"');
        extContext.setConfigLocation(extConfigLocation);

        extContext.refresh();

        // add routes into Camel context
        if (isAutoRouteAdding()) {
            Map<String, AbstractExtRoute> beansOfType = extContext.getBeansOfType(AbstractExtRoute.class);
            for (Map.Entry<String, AbstractExtRoute> entry : beansOfType.entrySet()) {
                AbstractExtRoute route = entry.getValue();

                // note: route with existing route ID will override the previous one
                //  it's not possible automatically change route ID before adding to Camel context
                camelContext.addRoutes(route);
            }
        }

        Log.debug("new extension context for '" + extConfigLocation + "' was successfully created");
    }

    /**
     * Sets parent Spring application context.
     *
     * @param parentContext the application context
     */
    @Override
    public void setApplicationContext(ApplicationContext parentContext) {
        this.parentContext = parentContext;
    }

    /**
     * Sets Camel context.
     *
     * @param camelContext the Camel context
     */
    @Override
    public void setCamelContext(CamelContext camelContext) {
        this.camelContext = camelContext;
    }

    @Override
    public CamelContext getCamelContext() {
        return camelContext;
    }

    /**
     * Returns whether automatically detect Camel routes (those which extends {@link AbstractExtRoute}) and add them
     * to Camel context.
     *
     * @return {@code true} for automatic adding routes, otherwise {@code false}
     */
    public boolean isAutoRouteAdding() {
        return autoRouteAdding;
    }

    /**
     * Sets whether automatically detect Camel routes (those which extends {@link AbstractExtRoute}) and add them
     * to Camel context.
     * <p/>
     * There is possibility to create own Camel context for specific extension and then it's not suitable
     * to add routes automatically.
     * <p/>Default value is {@code true}.
     *
     * @param autoRouteAdding {@code true} for automatic adding routes, otherwise {@code false}
     */
    public void setAutoRouteAdding(boolean autoRouteAdding) {
        this.autoRouteAdding = autoRouteAdding;
    }
}