Package org.apache.beehive.netui.script

Source Code of org.apache.beehive.netui.script.ExpressionEvaluatorFactory

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*
* $Header:$
*/
package org.apache.beehive.netui.script;

import java.util.HashMap;
import java.util.Map;

import org.apache.beehive.netui.util.config.ConfigUtil;
import org.apache.beehive.netui.util.config.bean.NetUIConfig;
import org.apache.beehive.netui.util.config.bean.ExpressionLanguagesConfig;
import org.apache.beehive.netui.util.config.bean.ExpressionLanguageConfig;
import org.apache.beehive.netui.util.logging.Logger;

/**
* Factory used to obtain {@link ExpressionEvaluator} instances.
*/
public class ExpressionEvaluatorFactory {

    private static final Logger LOGGER = Logger.getInstance(ExpressionEvaluatorFactory.class);

    /**
     * {@link Map} that maps String keys naming a type of {@link ExpressionEvaluator} to a
     * {@link ExpressionEngineFactory} that creates an instance of an {@link ExpressionEvaluator}.
     */
    private static final HashMap FACTORY_MAP = new HashMap();
    private static ExpressionEngineFactory DEFAULT_FACTORY;

    static {
        /* todo: add default beahvrior */
        try {
            DEFAULT_FACTORY = initialize(FACTORY_MAP);
        }
        catch(Exception e) {
            DEFAULT_FACTORY = null;
            LOGGER.error("An exception occurred loading the expression evaluator configuration.  Cause: " + e, e);
        }
    }

    /**
     * Get the default instance of an expression evaluator.
     *
     * @return an {@link ExpressionEvaluator}
     */
    public static ExpressionEvaluator getInstance() {
        return getInstance(null);
    }

    /**
     * Get an {@link ExpressionEvaluator} named <code>name</code>.
     *
     * @param name the name of the {@link ExpressionEvaluator} to obtain.
     * @return an {@link ExpressionEvaluator} matching the given name.
     * @throws IllegalArgumentException if an {@link ExpressionEvaluator} matching the name is not found
     */
    public static ExpressionEvaluator getInstance(String name) {
        assert DEFAULT_FACTORY != null;
        assert FACTORY_MAP != null;

        if(name == null)
            return DEFAULT_FACTORY.getInstance();
        else if(FACTORY_MAP.containsKey(name))
            return ((ExpressionEngineFactory)FACTORY_MAP.get(name)).getInstance();

        String msg = "An ExpressionEvaluator named \"" + name + "\" is not available.";
        LOGGER.error(msg);
        throw new IllegalArgumentException(msg);
    }

    private static ExpressionEngineFactory initialize(Map factoryMap) {
        assert factoryMap != null;

        NetUIConfig config = ConfigUtil.getConfig();

        ExpressionLanguagesConfig elConfig = config.getExpressionLanguages();
        assert elConfig != null;

        ExpressionLanguageConfig[] els = elConfig.getExpressionLanguages();
        assert els != null;
       
        if(els != null) {
            for(int i = 0; i < els.length; i++) {
                String name = els[i].getName();
                String className = els[i].getFactoryClass();

                ExpressionEngineFactory factory = null;
                try {
                    Class type = Class.forName(className);
                    factory = (ExpressionEngineFactory)type.newInstance();
                }
                catch(ClassNotFoundException cnf) {
                    LOGGER.warn("Could not create an ExpressionEngineFactory for type \"" + className +
                        "\" because the implementation class could not be found.");
                    continue;
                }
                catch(Exception ex) {
                    assert ex instanceof IllegalAccessException || ex instanceof InstantiationException;
                    LOGGER.warn("Could not create an ExpressionEngineFactory for type \"" + className +
                        "\" because an error occurred creating the factory.  Cause: " + ex, ex);
                    continue;
                }

                if(factoryMap.containsKey(name))
                    if(LOGGER.isWarnEnabled())
                        LOGGER.warn("Overwriting a previously defined ExpressionEngineFactory named \"" + name +
                            "\" with a new ExpressionEngineFactory of type \"" + className + "\"");
                    else
                        LOGGER.info("Adding an ExpressionEngineFactory named \"" + name + "\" with implementation \"" + className + "\"");

                factoryMap.put(name, factory);
            }
        }

        ExpressionEngineFactory defaultEngineFactory = null;
        String defaultLanguage = elConfig.getDefaultLanguage();

        if(defaultLanguage != null) {
            defaultEngineFactory = (ExpressionEngineFactory)factoryMap.get(defaultLanguage);
            if(defaultEngineFactory != null) {
                LOGGER.info("Using a default expression evaluator of type \"" + factoryMap.get(defaultLanguage).getClass().getName() + "\"");
            }
            else {
                String msg =
                    "The default ExpressionEvaluator named \"" + defaultLanguage + "\" was specified, but the ExpressionEngineFactory could not be found.";
                LOGGER.warn(msg);

                throw new RuntimeException(msg);
            }
        }
        else {
            String msg = "There is no default expression engine specified.";
            LOGGER.error(msg);
            throw new RuntimeException(msg);
        }

        return defaultEngineFactory;
    }
}
TOP

Related Classes of org.apache.beehive.netui.script.ExpressionEvaluatorFactory

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.