package pt.ist.renderers.plugin; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.struts.action.Action; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionForward; import org.apache.struts.action.ActionMapping; import org.apache.struts.action.ActionServlet; import org.apache.struts.action.RequestProcessor; import org.apache.struts.config.ModuleConfig; import pt.ist.renderers.components.state.ComponentLifeCycle; import pt.ist.renderers.components.state.EditRequest.ViewStateUserChangedException; import pt.ist.renderers.components.state.IViewState; import pt.ist.renderers.components.state.ViewDestination; import pt.ist.renderers.utils.RenderUtils; import pt.ist.struts.dispatch.annotation.MessageResources; import pt.ist.struts.dispatch.annotation.StrutsConfiguration; /** * The standard renderers request processor. This processor is responsible for * handling any viewstate present in the request. It will parse the request, * retrieve all viewstates, and start the necessary lifecycle associated with * them before continuing with the standard struts processing. * *
* If any exception is thrown during the processing of a viewstate it will be * handled by struts like if the exceptions occured in the destiny action. This * default behaviour can be overriden by making the destiny action implement the * {@link pt.ist.renderers.plugin.ExceptionHandler} interface. * *
* The processor ensures that the current request and context are available * through {@link #getCurrentRequest()} and {@link #getCurrentContext()} * respectively during the entire request lifetime. The processor also process * multipart requests to allow any renderer to retrieve on uploaded file with * {@link #getUploadedFile(String)}. * *
* This processor extends the tiles processor to easily integrate in an * application that uses the tiles plugin. * * @author cfgi */ @StrutsConfiguration(controllerType = SimpleRenderersRequestProcessor.class, resources = { @MessageResources(key = "RENDERER_RESOURCES", parameter = "RendererResources") }) public class SimpleRenderersRequestProcessor extends RequestProcessor { @Override public void init(final ActionServlet servlet, final ModuleConfig moduleConfig) throws ServletException { RenderersRequestProcessorImpl.implementationClass = SimpleRenderersRequestProcessor.class; super.init(servlet, moduleConfig); } @Override public void process(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { RenderersRequestProcessorImpl.currentRequest.set(request); RenderersRequestProcessorImpl.currentContext.set(getServletContext()); try { super.process(request, response); } finally { RenderersRequestProcessorImpl.currentRequest.set(null); RenderersRequestProcessorImpl.currentContext.set(null); RenderersRequestProcessorImpl.fileItems.set(null); } } @Override protected Action processActionCreate(HttpServletRequest request, HttpServletResponse response, ActionMapping mapping) throws IOException { Action action = super.processActionCreate(request, response, mapping); if (action == null) { return new VoidAction(); } return action; } @Override protected ActionForward processActionPerform(HttpServletRequest request, HttpServletResponse response, Action action, ActionForm form, ActionMapping mapping) throws IOException, ServletException { RenderersRequestProcessorImpl.currentRequest.set(RenderersRequestProcessorImpl.parseMultipartRequest(request, form)); HttpServletRequest initialRequest = RenderersRequestProcessorImpl.currentRequest.get(); if (RenderersRequestProcessorImpl.hasViewState(initialRequest)) { try { RenderersRequestProcessorImpl.setViewStateProcessed(request); ActionForward forward = ComponentLifeCycle.execute(initialRequest); if (forward != null) { return forward; } return super.processActionPerform(request, response, action, form, mapping); } catch (ViewStateUserChangedException e) { throw e; } catch (Exception e) { e.printStackTrace(); if (action instanceof ExceptionHandler) { ExceptionHandler handler = (ExceptionHandler) action; ActionForward input = null; IViewState viewState = RenderUtils.getViewState(); if (viewState != null) { ViewDestination destination = viewState.getInputDestination(); input = destination.getActionForward(); } ActionForward forward = handler.processException(request, mapping, input, e); if (forward != null) { return forward; } else { // return processException(request, response, e, form, // mapping); } } else { // return processException(request, response, e, form, // mapping); } throw new ServletException(e); } } else { return super.processActionPerform(request, response, action, form, mapping); } } }