org.glassfish.jersey.client.InboundJaxrsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaxrs-ri Show documentation
Show all versions of jaxrs-ri Show documentation
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) 2012, 2020 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.client;
import java.lang.annotation.Annotation;
import java.net.URI;
import java.util.Date;
import java.util.Locale;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.atomic.AtomicBoolean;
import jakarta.ws.rs.ProcessingException;
import jakarta.ws.rs.core.EntityTag;
import jakarta.ws.rs.core.GenericType;
import jakarta.ws.rs.core.Link;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.MultivaluedMap;
import jakarta.ws.rs.core.NewCookie;
import jakarta.ws.rs.core.Response;
import org.glassfish.jersey.internal.util.Producer;
import org.glassfish.jersey.process.internal.RequestContext;
import org.glassfish.jersey.process.internal.RequestScope;
/**
* Implementation of an inbound client-side JAX-RS {@link Response} message.
*
* This response delegates method calls to the underlying
* {@link org.glassfish.jersey.client.ClientResponse client response context} and
* ensures that all request-scoped method invocations are run in the proper request scope.
*
*
* @author Marek Potociar
*/
class InboundJaxrsResponse extends Response {
private final ClientResponse context;
private final RequestScope scope;
private final RequestContext requestContext;
private final AtomicBoolean isClosed = new AtomicBoolean(false);
/**
* Create new scoped client response.
*
* @param context jersey client response context.
* @param scope request scope instance.
*/
public InboundJaxrsResponse(final ClientResponse context, final RequestScope scope) {
this.context = context;
this.scope = scope;
if (this.scope != null) {
this.requestContext = scope.referenceCurrent();
} else {
this.requestContext = null;
}
}
@Override
public int getStatus() {
return context.getStatus();
}
@Override
public StatusType getStatusInfo() {
return context.getStatusInfo();
}
@Override
public Object getEntity() throws IllegalStateException {
return context.getEntity();
}
@Override
public T readEntity(final Class entityType) throws ProcessingException, IllegalStateException {
return runInScopeIfPossible(new Producer() {
@Override
public T call() {
return context.readEntity(entityType);
}
});
}
@Override
@SuppressWarnings("unchecked")
public T readEntity(final GenericType entityType) throws ProcessingException, IllegalStateException {
return runInScopeIfPossible(new Producer() {
@Override
public T call() {
return context.readEntity(entityType);
}
});
}
@Override
public T readEntity(final Class entityType, final Annotation[] annotations)
throws ProcessingException, IllegalStateException {
return runInScopeIfPossible(new Producer() {
@Override
public T call() {
return context.readEntity(entityType, annotations);
}
});
}
@Override
@SuppressWarnings("unchecked")
public T readEntity(final GenericType entityType, final Annotation[] annotations)
throws ProcessingException, IllegalStateException {
return runInScopeIfPossible(new Producer() {
@Override
public T call() {
return context.readEntity(entityType, annotations);
}
});
}
@Override
public boolean hasEntity() {
return context.hasEntity();
}
@Override
public boolean bufferEntity() throws ProcessingException {
return context.bufferEntity();
}
@Override
public void close() throws ProcessingException {
if (isClosed.compareAndSet(false, true)) {
try {
context.close();
} finally {
if (requestContext != null) {
requestContext.release();
}
}
}
}
@Override
public String getHeaderString(String name) {
return context.getHeaderString(name);
}
@Override
public MultivaluedMap getStringHeaders() {
return context.getHeaders();
}
@Override
public MediaType getMediaType() {
return context.getMediaType();
}
@Override
public Locale getLanguage() {
return context.getLanguage();
}
@Override
public int getLength() {
return context.getLength();
}
@Override
public Map getCookies() {
return context.getResponseCookies();
}
@Override
public EntityTag getEntityTag() {
return context.getEntityTag();
}
@Override
public Date getDate() {
return context.getDate();
}
@Override
public Date getLastModified() {
return context.getLastModified();
}
@Override
public Set getAllowedMethods() {
return context.getAllowedMethods();
}
@Override
public URI getLocation() {
return context.getLocation();
}
@Override
public Set getLinks() {
return context.getLinks();
}
@Override
public boolean hasLink(String relation) {
return context.hasLink(relation);
}
@Override
public Link getLink(String relation) {
return context.getLink(relation);
}
@Override
public Link.Builder getLinkBuilder(String relation) {
return context.getLinkBuilder(relation);
}
@Override
@SuppressWarnings("unchecked")
public MultivaluedMap getMetadata() {
final MultivaluedMap headers = context.getHeaders();
return (MultivaluedMap) headers;
}
@Override
public String toString() {
return "InboundJaxrsResponse{" + "context=" + context + "}";
}
private T runInScopeIfPossible(Producer producer) {
if (scope != null && requestContext != null) {
return scope.runInScope(requestContext, producer);
} else {
return producer.call();
}
}
}