All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibm.commons.runtime.servlet.ServletDispatcher Maven / Gradle / Ivy

The newest version!
/*
 * © Copyright IBM Corp. 2012
 * 
 * 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 com.ibm.commons.runtime.servlet;

import java.io.IOException;
import java.util.ArrayList;

import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import com.ibm.commons.Platform;

/**
 * Servlet dispatcher.
 * 
 * This servlet handles a request from a servlet container and dynamically dispatches it to another servlet
 * using a series of ServletFactory factories.
 * It allows a Java developer to execute servlets without having to get them registered in web.xml
 * 
 * @author priand
 */
public class ServletDispatcher extends BaseToolkitServlet {

	private static final long serialVersionUID = 1L;
	
	private ArrayList factories = new ArrayList();
	
    public ServletDispatcher() {
    }
    
    public synchronized void register(ServletFactory factory) {
    	factories.add(factory);
    	if(getServletConfig()!=null) {
			try {
				factory.init(getServletConfig());
			} catch(Exception ex) {
				// Make sure that all the factories had been initialized
				Platform.getInstance().log(ex);
			}
    	}
    }
    
    public synchronized void unregister(ServletFactory factory) {
    	if(factories.remove(factory)) {
        	if(getServletConfig()!=null) {
    			try {
    	    		factory.destroy();
    			} catch(Exception ex) {
    				// Make sure that all the factories had been initialized
    				Platform.getInstance().log(ex);
    			}
        	}
    	}
    }
    
    @Override
	public void init(ServletConfig servletConfig) throws ServletException {
		super.init(servletConfig);
		// Init the factories already registered
		if(!factories.isEmpty()) {
			for(ServletFactory f: factories) {
				try {
					f.init(servletConfig);
				} catch(Exception ex) {
					// Make sure that all the factories had been initialized
					Platform.getInstance().log(ex);
				}
			}
		}
	}

	@Override
	public void destroy() {
		// Destroy the factories
		if(!factories.isEmpty()) {
			for(ServletFactory f: factories) {
				try {
					f.destroy();
				} catch(Exception ex) {
					// Make sure that all the factories had been destroyed
					Platform.getInstance().log(ex);
				}
			}
		}
		super.destroy();
	}

	@Override
	public void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		int match = -1;
		ServletFactory factory = null;
		
		// Select the best factory for this request
		ServletMatcher matcher = null;
		int count = factories.size();
		for(int i=0; imatcher.matchLengh() ) {
					matcher = m;
				}
			}
		}
		
		// If there is a matching factory, then delegate the request
		if(matcher!=null) {
			matcher.service(request, response);
		} else {
	        // No factory is not available so it is a 404
	        String message = "Invalid service handler {0}";
	        service404(request,response,message,request.getPathInfo());
		}
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy