Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
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.
/*
* Copyright (c) 2011, 2022 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package org.glassfish.jersey.server.model;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.CancellationException;
import java.util.concurrent.CompletionStage;
import java.util.function.BiConsumer;
import java.util.function.Supplier;
import java.util.stream.Collectors;
import java.util.stream.StreamSupport;
import jakarta.ws.rs.ProcessingException;
import jakarta.ws.rs.container.ContainerRequestFilter;
import jakarta.ws.rs.container.ContainerResponseFilter;
import jakarta.ws.rs.container.DynamicFeature;
import jakarta.ws.rs.container.ResourceInfo;
import jakarta.ws.rs.core.Configuration;
import jakarta.ws.rs.core.MultivaluedHashMap;
import jakarta.ws.rs.core.MultivaluedMap;
import jakarta.ws.rs.core.Response;
import jakarta.ws.rs.ext.ReaderInterceptor;
import jakarta.ws.rs.ext.WriterInterceptor;
import org.glassfish.jersey.internal.inject.AbstractBinder;
import org.glassfish.jersey.internal.inject.InjectionManager;
import org.glassfish.jersey.internal.inject.Injections;
import org.glassfish.jersey.internal.inject.Providers;
import org.glassfish.jersey.model.ContractProvider;
import org.glassfish.jersey.model.NameBound;
import org.glassfish.jersey.model.internal.ComponentBag;
import org.glassfish.jersey.model.internal.RankedComparator;
import org.glassfish.jersey.model.internal.RankedProvider;
import org.glassfish.jersey.process.Inflector;
import org.glassfish.jersey.server.ContainerRequest;
import org.glassfish.jersey.server.ContainerResponse;
import org.glassfish.jersey.server.ServerProperties;
import org.glassfish.jersey.server.internal.LocalizationMessages;
import org.glassfish.jersey.server.internal.ProcessingProviders;
import org.glassfish.jersey.server.internal.inject.ConfiguredValidator;
import org.glassfish.jersey.server.internal.process.Endpoint;
import org.glassfish.jersey.server.internal.process.RequestProcessingContext;
import org.glassfish.jersey.server.model.internal.ResourceMethodDispatcherFactory;
import org.glassfish.jersey.server.model.internal.ResourceMethodInvocationHandlerFactory;
import org.glassfish.jersey.server.monitoring.RequestEvent;
import org.glassfish.jersey.server.spi.internal.ResourceMethodDispatcher;
import org.glassfish.jersey.server.spi.internal.ResourceMethodInvocationHandlerProvider;
/**
* Server-side request-response {@link Inflector inflector} for invoking methods
* of annotation-based resource classes.
*
* @author Marek Potociar
* @author Martin Matula
*/
public class ResourceMethodInvoker implements Endpoint, ResourceInfo {
private final ResourceMethod method;
private final Annotation[] methodAnnotations;
private final Type invocableResponseType;
private final boolean canUseInvocableResponseType;
private final boolean isCompletionStageResponseType;
private final boolean isCompletionStageResponseResponseType; // CompletionStage
private final Type completionStageResponseType;
private final ResourceMethodDispatcher dispatcher;
private final Method resourceMethod;
private final Class> resourceClass;
private final List> requestFilters = new ArrayList<>();
private final List> responseFilters = new ArrayList<>();
private final Iterable readerInterceptors;
private final Iterable writerInterceptors;
/**
* Resource method invoker helper.
*
* The builder API provides means for constructing a properly initialized
* {@link ResourceMethodInvoker resource method invoker} instances.
*/
public static class Builder {
private ResourceMethodDispatcherFactory resourceMethodDispatcherFactory;
private ResourceMethodInvocationHandlerFactory resourceMethodInvocationHandlerFactory;
private InjectionManager injectionManager;
private Configuration configuration;
private Supplier configurationValidator;
/**
* Set resource method dispatcher factory.
*
* @param resourceMethodDispatcherFactory resource method dispatcher factory.
* @return updated builder.
*/
public Builder resourceMethodDispatcherFactory(ResourceMethodDispatcherFactory resourceMethodDispatcherFactory) {
this.resourceMethodDispatcherFactory = resourceMethodDispatcherFactory;
return this;
}
/**
* Set resource method invocation handler factory.
*
* @param resourceMethodInvocationHandlerFactory resource method invocation handler factory.
* @return updated builder.
*/
public Builder resourceMethodInvocationHandlerFactory(
ResourceMethodInvocationHandlerFactory resourceMethodInvocationHandlerFactory) {
this.resourceMethodInvocationHandlerFactory = resourceMethodInvocationHandlerFactory;
return this;
}
/**
* Set runtime DI injection manager.
*
* @param injectionManager DI injection manager.
* @return updated builder.
*/
public Builder injectionManager(InjectionManager injectionManager) {
this.injectionManager = injectionManager;
return this;
}
/**
* Set global configuration.
*
* @param configuration global configuration.
* @return updated builder.
*/
public Builder configuration(Configuration configuration) {
this.configuration = configuration;
return this;
}
/**
* Set global configuration validator.
*
* @param configurationValidator configuration validator.
* @return updated builder.
*/
public Builder configurationValidator(Supplier configurationValidator) {
this.configurationValidator = configurationValidator;
return this;
}
/**
* Build a new resource method invoker instance.
*
* @param method resource method model.
* @param processingProviders Processing providers.
* @return new resource method invoker instance.
*/
public ResourceMethodInvoker build(ResourceMethod method, ProcessingProviders processingProviders) {
if (resourceMethodDispatcherFactory == null) {
throw new NullPointerException("ResourceMethodDispatcherFactory is not set.");
}
if (resourceMethodInvocationHandlerFactory == null) {
throw new NullPointerException("ResourceMethodInvocationHandlerFactory is not set.");
}
if (injectionManager == null) {
throw new NullPointerException("DI injection manager is not set.");
}
if (configuration == null) {
throw new NullPointerException("Configuration is not set.");
}
if (configurationValidator == null) {
throw new NullPointerException("Configuration validator is not set.");
}
return new ResourceMethodInvoker(
resourceMethodDispatcherFactory,
resourceMethodInvocationHandlerFactory,
method,
processingProviders, injectionManager,
configuration,
configurationValidator.get());
}
}
private ResourceMethodInvoker(
final ResourceMethodDispatcher.Provider dispatcherProvider,
final ResourceMethodInvocationHandlerProvider invocationHandlerProvider,
final ResourceMethod method,
final ProcessingProviders processingProviders,
InjectionManager injectionManager,
final Configuration globalConfig,
final ConfiguredValidator validator) {
this.method = method;
final Invocable invocable = method.getInvocable();
this.dispatcher = dispatcherProvider.create(invocable,
invocationHandlerProvider.create(invocable), validator);
this.resourceMethod = invocable.getHandlingMethod();
this.resourceClass = invocable.getHandler().getHandlerClass();
// Configure dynamic features.
final ResourceMethodConfig config = new ResourceMethodConfig(globalConfig.getProperties());
for (final DynamicFeature dynamicFeature : processingProviders.getDynamicFeatures()) {
dynamicFeature.configure(this, config);
}
final ComponentBag componentBag = config.getComponentBag();
final List