org.apache.cxf.jaxrs.client.JaxrsClientCallback Maven / Gradle / Ivy
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.cxf.jaxrs.client;
import java.lang.reflect.Type;
import java.util.Map;
import java.util.concurrent.CancellationException;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import javax.ws.rs.client.ClientException;
import javax.ws.rs.client.InvocationCallback;
import org.apache.cxf.endpoint.ClientCallback;
class JaxrsClientCallback extends ClientCallback {
private final InvocationCallback handler;
private final Type outType;
private final Class> responseClass;
public JaxrsClientCallback(final InvocationCallback handler,
Class> responseClass,
Type outGenericType) {
this.handler = handler;
this.outType = outGenericType;
this.responseClass = responseClass;
}
public InvocationCallback getHandler() {
return handler;
}
public Type getOutGenericType() {
return outType;
}
public Class> getResponseClass() {
return responseClass;
}
@Override
public boolean cancel(boolean mayInterruptIfRunning) {
boolean result = super.cancel(mayInterruptIfRunning);
if (result && handler != null) {
handler.failed(new ClientException(new CancellationException()));
}
return result;
}
public Future createFuture() {
return new JaxrsResponseCallback(this);
}
@SuppressWarnings("unchecked")
public void handleResponse(Map ctx, Object[] res) {
context = ctx;
result = res;
if (handler != null) {
handler.completed((T)res[0]);
}
done = true;
synchronized (this) {
notifyAll();
}
}
@Override
public void handleException(Map ctx, final Throwable ex) {
context = ctx;
exception = ex;
if (handler != null) {
handler.failed(new ClientException(exception));
}
done = true;
synchronized (this) {
notifyAll();
}
}
static class JaxrsResponseCallback implements Future {
JaxrsClientCallback callback;
public JaxrsResponseCallback(JaxrsClientCallback cb) {
callback = cb;
}
public Map getContext() {
try {
return callback.getResponseContext();
} catch (Exception ex) {
return null;
}
}
public boolean cancel(boolean mayInterruptIfRunning) {
return callback.cancel(mayInterruptIfRunning);
}
public T get() throws InterruptedException, ExecutionException {
try {
return getObject(callback.get()[0]);
} catch (InterruptedException ex) {
if (callback.handler != null) {
callback.handler.failed(new ClientException((InterruptedException)ex));
}
throw ex;
}
}
public T get(long timeout, TimeUnit unit) throws InterruptedException,
ExecutionException, TimeoutException {
try {
return getObject(callback.get(timeout, unit)[0]);
} catch (InterruptedException ex) {
if (callback.handler != null) {
callback.handler.failed(new ClientException((InterruptedException)ex));
}
throw ex;
}
}
@SuppressWarnings("unchecked")
private T getObject(Object object) {
return (T)object;
}
public boolean isCancelled() {
return callback.isCancelled();
}
public boolean isDone() {
return callback.isDone();
}
}
}