Package org.impalaframework.web.servlet

Source Code of org.impalaframework.web.servlet.ExternalModuleServlet

/*
* Copyright 2007-2008 the original author or authors.
*
* Licensed 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.
*/

package org.impalaframework.web.servlet;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.impalaframework.exception.ConfigurationException;
import org.impalaframework.module.bootstrap.ModuleManagementFactory;
import org.impalaframework.module.holder.ModuleStateChangeListener;
import org.impalaframework.module.holder.ModuleStateChangeNotifier;
import org.impalaframework.module.holder.ModuleStateHolder;
import org.impalaframework.module.modification.ModuleStateChange;
import org.impalaframework.module.modification.Transition;
import org.impalaframework.web.WebConstants;
import org.springframework.beans.BeansException;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.web.context.WebApplicationContext;

public class ExternalModuleServlet extends BaseImpalaServlet {

  private static final Log logger = LogFactory.getLog(ExternalModuleServlet.class);
 
  private static final long serialVersionUID = 1L;
 
  private boolean initialized;

  @Override
  protected WebApplicationContext createWebApplicationContext() throws BeansException {

    // the superclass closes the modules
    ModuleManagementFactory factory = (ModuleManagementFactory) getServletContext().getAttribute(
        WebConstants.IMPALA_FACTORY_ATTRIBUTE);

    if (factory == null) {
      throw new ConfigurationException("Unable to load " + ExternalModuleServlet.class.getName()
          + " as no attribute '" + WebConstants.IMPALA_FACTORY_ATTRIBUTE
          + "' has been set up. Have you set up your Impala ContextLoader correctly?");
    }

    String servletName = getServletName();
    ModuleStateHolder moduleStateHolder = factory.getModuleStateHolder();
   
    if (!initialized) {
     
      ModuleStateChangeNotifier moduleStateChangeNotifier = factory.getModuleStateChangeNotifier();
      moduleStateChangeNotifier.addListener(new ModuleStateChangeListener() {

        public void moduleStateChanged(ModuleStateHolder moduleStateHolder, ModuleStateChange change) {
          try {
            initServletBean();
          }
          catch (Exception e) {
            logger.error("Unable to reinitialize servlet " + getServletName(), e);
          }
        }

        public String getModuleName() {
          return getServletName();
        }

        public Transition getTransition() {
          return Transition.UNLOADED_TO_LOADED;
        }
       
      });
      this.initialized = true;
    }

    ConfigurableApplicationContext context = moduleStateHolder.getModule(servletName);
    if (context != null) {
      if (context instanceof WebApplicationContext) {
        return (WebApplicationContext) context;
      }
      else {
        throw new ConfigurationException("Module registered under name of servlet '" + servletName
            + "' needs to be an instance of " + WebApplicationContext.class.getName());
      }
    }
    else {
      throw new ConfigurationException("No module registered under the name of servlet '" + servletName + "'");
    }
  }

}
TOP

Related Classes of org.impalaframework.web.servlet.ExternalModuleServlet

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.