blob: cbaf02164d78b5b37fefa11529469e218c2b651d [file] [log] [blame]
/**
* Copyright (C) 2008 Google Inc.
*
* 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.google.inject.servlet;
import com.google.inject.Inject;
import com.google.inject.Injector;
import com.google.inject.Provider;
import com.google.inject.Singleton;
import java.io.IOException;
import java.util.Collections;
import java.util.List;
import javax.servlet.FilterChain;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletRequestWrapper;
/**
* Central routing/dispatch class handles lifecycle of managed filters, and delegates to the servlet
* pipeline.
*
* @author dhanji@gmail.com (Dhanji R. Prasanna)
*/
@Singleton
class ManagedFilterPipeline implements FilterPipeline{
private final List<FilterDefinition> filterDefinitions;
//TODO make these setter for testing?
@Inject
private final ManagedServletPipeline servletPipeline = null;
@Inject
private final Provider<ServletContext> servletContext = null;
//Unfortunately, we need the injector itself in order to create filters + servlets
@Inject
private final Injector injector = null;
//Guards a DCL, so needs to be volatile
private volatile boolean initialized = false;
public ManagedFilterPipeline(List<FilterDefinition> filterDefinitions) {
this.filterDefinitions = Collections.unmodifiableList(filterDefinitions);
}
public synchronized void initPipeline(ServletContext servletContext)
throws ServletException {
//double-checked lock, prevents duplicate initialization
if (initialized)
return;
for (FilterDefinition filterDefinition : filterDefinitions) {
filterDefinition.init(servletContext, injector);
}
//next, initialize servlets...
servletPipeline.init(servletContext, injector);
//everything was ok...
initialized = true;
}
public void dispatch(ServletRequest request, ServletResponse response,
FilterChain proceedingFilterChain) throws IOException, ServletException {
//lazy init of filter pipeline (OK by the servlet specification). This is needed
//in order for us not to force users to create a GuiceServletContextListener subclass.
if (!initialized) {
initPipeline(servletContext.get());
}
//obtain the servlet pipeline to dispatch against (we use getInstance() to avoid holding refs)
new FilterChainInvocation(filterDefinitions, servletPipeline, proceedingFilterChain)
.doFilter(withDispatcher(request, servletPipeline), response);
}
/**
* Used to create an proxy that dispatches either to the guice-servlet pipeline or the regular
* pipeline based on uri-path match. This proxy also provides minimal forwarding support.
*
* We cannot forward from a web.xml Servlet/JSP to a guice-servlet (because the filter pipeline
* is not called again). However, we can wrap requests with our own dispatcher to forward the
* *other* way. web.xml Servlets/JSPs can forward to themselves as per normal.
*
* This is not a problem cuz we intend for people to migrate from web.xml to guice-servlet,
* incrementally, but not the other way around (which, we should actively discourage).
*/
@SuppressWarnings({ "JavaDoc", "deprecation" })
private ServletRequest withDispatcher(ServletRequest servletRequest,
final ManagedServletPipeline servletPipeline) {
HttpServletRequest request = (HttpServletRequest) servletRequest;
//noinspection OverlyComplexAnonymousInnerClass
return new HttpServletRequestWrapper(request) {
@Override
public RequestDispatcher getRequestDispatcher(String path) {
final RequestDispatcher dispatcher = servletPipeline.getRequestDispatcher(path);
return (null != dispatcher) ? dispatcher : super.getRequestDispatcher(path);
}
};
}
public void destroyPipeline() {
//destroy servlets first
servletPipeline.destroy();
//go down chain and destroy all our filters
//TODO check servlet spec if we should continue destroying even if exceptions are thrown
for (FilterDefinition filterDefinition : filterDefinitions) {
filterDefinition.destroy();
}
}
}