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

org.glassfish.jersey.server.ContainerFilteringStage Maven / Gradle / Ivy

Go to download

A bundle project producing JAX-RS RI bundles. The primary artifact is an "all-in-one" OSGi-fied JAX-RS RI bundle (jaxrs-ri.jar). Attached to that are two compressed JAX-RS RI archives. The first archive (jaxrs-ri.zip) consists of binary RI bits and contains the API jar (under "api" directory), RI libraries (under "lib" directory) as well as all external RI dependencies (under "ext" directory). The secondary archive (jaxrs-ri-src.zip) contains buildable JAX-RS RI source bundle and contains the API jar (under "api" directory), RI sources (under "src" directory) as well as all external RI dependencies (under "ext" directory). The second archive also contains "build.xml" ANT script that builds the RI sources. To build the JAX-RS RI simply unzip the archive, cd to the created jaxrs-ri directory and invoke "ant" from the command line.

There is a newer version: 3.1.8
Show newest version
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 2012-2013 Oracle and/or its affiliates. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * http://glassfish.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 *
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */
package org.glassfish.jersey.server;

import javax.ws.rs.container.ContainerRequestFilter;
import javax.ws.rs.container.ContainerResponseFilter;
import javax.ws.rs.core.Response;

import javax.inject.Inject;
import javax.inject.Provider;

import org.glassfish.jersey.internal.inject.Providers;
import org.glassfish.jersey.message.internal.TracingLogger;
import org.glassfish.jersey.model.internal.RankedComparator;
import org.glassfish.jersey.model.internal.RankedProvider;
import org.glassfish.jersey.process.internal.AbstractChainableStage;
import org.glassfish.jersey.process.internal.Stages;
import org.glassfish.jersey.server.internal.ServerTraceEvent;
import org.glassfish.jersey.server.internal.process.Endpoint;
import org.glassfish.jersey.server.internal.process.MappableException;
import org.glassfish.jersey.server.internal.process.RespondingContext;
import org.glassfish.jersey.server.internal.routing.RoutingContext;
import org.glassfish.jersey.server.monitoring.RequestEvent;

import org.glassfish.hk2.api.ServiceLocator;
import org.glassfish.hk2.utilities.binding.AbstractBinder;

/**
 * Container filtering stage responsible for execution of request and response filters
 * on each request-response message exchange.
 *
 * @author Marek Potociar (marek.potociar at oracle.com)
 * @author Martin Matula (martin.matula at oracle.com)
 */
class ContainerFilteringStage extends AbstractChainableStage {

    private ServiceLocator locator;
    private final Iterable> requestFilters;
    private final Iterable> responseFilters;
    private final Provider respondingContextFactory;

    /**
     * Injectable container filtering stage builder.
     */
    static class Builder {
        @Inject
        private ServiceLocator locator;

        @Inject
        private Provider respondingContextFactory;

        /**
         * Build a new container filtering stage specifying global request and response filters. This stage class
         * is reused for both pre and post match filtering phases.
         * 

* All global response filters are passed in the pre-match stage, since if a pre-match filter aborts, * response filters should still be executed. For the post-match filter stage creation, {@code null} is passed * to the responseFilters parameter. *

* * @param requestFilters list of global (unbound) request filters (either pre or post match - depending on the * stage being created). * @param responseFilters list of global response filters (for pre-match stage) or {@code null} (for post-match * stage). * @return new container filtering stage. */ public ContainerFilteringStage build(Iterable> requestFilters, Iterable> responseFilters) { return new ContainerFilteringStage(respondingContextFactory, locator, requestFilters, responseFilters); } } /** * Injection constructor. * * @param respondingContextFactory responding context factory. * @param locator HK2 service locator. * @param requestFilters global request filters (pre or post match). * @param responseFilters global response filters or {@code null}. */ private ContainerFilteringStage( Provider respondingContextFactory, ServiceLocator locator, Iterable> requestFilters, Iterable> responseFilters) { this.respondingContextFactory = respondingContextFactory; this.locator = locator; this.requestFilters = requestFilters; this.responseFilters = responseFilters; } @Override @SuppressWarnings("unchecked") public Continuation apply(ContainerRequest requestContext) { Iterable sortedRequestFilters; final boolean postMatching = responseFilters == null; final TracingLogger tracingLogger = TracingLogger.getInstance(requestContext); if (postMatching) { // post-matching RoutingContext rc = locator.getService(RoutingContext.class); sortedRequestFilters = Providers.sortRankedProviders(new RankedComparator(), requestFilters, rc.getBoundRequestFilters()); requestContext.getRequestEventBuilder().setContainerRequestFilters(sortedRequestFilters); requestContext.triggerEvent(RequestEvent.Type.REQUEST_MATCHED); } else { // pre-matching (response filter stage is pushed in pre-matching phase, so that if pre-matching filter // throws exception, response filters get still invoked) respondingContextFactory.get().push(new ResponseFilterStage(responseFilters, locator, tracingLogger)); sortedRequestFilters = Providers.sortRankedProviders(new RankedComparator(), requestFilters); } final TracingLogger.Event summaryEvent = (postMatching ? ServerTraceEvent.REQUEST_FILTER_SUMMARY : ServerTraceEvent.PRE_MATCH_SUMMARY); final long timestamp = tracingLogger.timestamp(summaryEvent); int processedCount = 0; try { final TracingLogger.Event filterEvent = (postMatching ? ServerTraceEvent.REQUEST_FILTER : ServerTraceEvent.PRE_MATCH); for (ContainerRequestFilter filter : sortedRequestFilters) { final long filterTimestamp = tracingLogger.timestamp(filterEvent); try { filter.filter(requestContext); } catch (Exception exception) { throw new MappableException(exception); } finally { processedCount++; tracingLogger.logDuration(filterEvent, filterTimestamp, filter); } final Response abortResponse = requestContext.getAbortResponse(); if (abortResponse != null) { // abort accepting & return response return Continuation.of(requestContext, Stages.asStage( new Endpoint() { @Override public ContainerResponse apply( final ContainerRequest requestContext) { return new ContainerResponse(requestContext, abortResponse); } })); } } } finally { if (postMatching) { requestContext.triggerEvent(RequestEvent.Type.REQUEST_FILTERED); } tracingLogger.logDuration(summaryEvent, timestamp, processedCount); } return Continuation.of(requestContext, getDefaultNext()); } private static class ResponseFilterStage extends AbstractChainableStage { private final Iterable> filters; private final ServiceLocator locator; private final TracingLogger tracingLogger; private ResponseFilterStage(Iterable> filters, ServiceLocator locator, TracingLogger tracingLogger) { this.filters = filters; this.locator = locator; this.tracingLogger = tracingLogger; } @Override @SuppressWarnings("unchecked") public Continuation apply(ContainerResponse responseContext) { RoutingContext rc = locator.getService(RoutingContext.class); Iterable sortedResponseFilters = Providers.sortRankedProviders( new RankedComparator(RankedComparator.Order.DESCENDING), filters, rc.getBoundResponseFilters() ); final ContainerRequest request = responseContext.getRequestContext(); request.getRequestEventBuilder().setContainerResponseFilters(sortedResponseFilters); request.triggerEvent(RequestEvent.Type.RESP_FILTERS_START); final long timestamp = tracingLogger.timestamp(ServerTraceEvent.RESPONSE_FILTER_SUMMARY); int processedCount = 0; try { for (ContainerResponseFilter filter : sortedResponseFilters) { final long filterTimestamp = tracingLogger.timestamp(ServerTraceEvent.RESPONSE_FILTER); try { filter.filter(request, responseContext); } catch (Exception ex) { throw new MappableException(ex); } finally { processedCount++; tracingLogger.logDuration(ServerTraceEvent.RESPONSE_FILTER, filterTimestamp, filter); } } } finally { request.triggerEvent(RequestEvent.Type.RESP_FILTERS_FINISHED); tracingLogger.logDuration(ServerTraceEvent.RESPONSE_FILTER_SUMMARY, timestamp, processedCount); } return Continuation.of(responseContext, getDefaultNext()); } } /** * Container filter processing injection binder. */ static class Binder extends AbstractBinder { @Override protected void configure() { bindAsContract(ContainerFilteringStage.Builder.class); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy