/* Copyright (c) 2016 LinkedIn Corp. Licensed 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 com.linkedin.restli.client; import com.linkedin.common.callback.Callback; import com.linkedin.common.callback.CallbackAdapter; import com.linkedin.r2.RemoteInvocationException; import com.linkedin.r2.message.Messages; import com.linkedin.r2.message.rest.RestException; import com.linkedin.r2.message.rest.RestResponse; import com.linkedin.r2.message.stream.StreamException; import com.linkedin.r2.message.stream.StreamResponse; import com.linkedin.restli.internal.client.ExceptionUtil; import com.linkedin.restli.internal.client.RestResponseDecoder; /** * Converts StreamResponse into Response and different exceptions -> RemoteInvocationException. * @param <T> response type * * @author Karim Vidhani */ final class RestLiStreamCallbackAdapter<T> implements Callback<StreamResponse> { private final Callback<Response<T>> _wrappedCallback; private final RestResponseDecoder<T> _decoder; public RestLiStreamCallbackAdapter(RestResponseDecoder<T> decoder, Callback<Response<T>> wrappedCallback) { _decoder = decoder; _wrappedCallback = wrappedCallback; } @Override public void onError(Throwable e) { //Default behavior as specified by ExceptionUtil.java. Convert the StreamException into a RestException //to work with rest.li client exception handling. Eventually when RestException is removed, the complete //exception handling system in rest.li client will change to move to StreamException. if (e instanceof StreamException) { Messages.toRestException((StreamException)e, new Callback<RestException>() { @Override public void onError(Throwable e) { //Should never happen. _wrappedCallback.onError(e); } @Override public void onSuccess(RestException result) { _wrappedCallback.onError(ExceptionUtil.exceptionForThrowable(result, _decoder)); } }); return; } if (e instanceof RemoteInvocationException) { _wrappedCallback.onError(e); return; } _wrappedCallback.onError(new RemoteInvocationException(e)); } @Override public void onSuccess(StreamResponse result) { try { _decoder.decodeResponse(result, _wrappedCallback); } catch(Exception exception) { onError(exception); } } }