使用2个方法onResponse()和onFailure()来回调异步请求是回调。
我不想总是覆盖这两个方法并处理错误情况。
所以当我想通过ApiResponse的谷歌GithubBrowserSample包装改装响应体并将错误转换如下:
public class ApiResponse<T> {
public final int code;
@Nullable
public final T body;
@Nullable
public final String errorMessage;
public ApiResponse(Throwable error) {
code = -1;
body = null;
if (error instanceof IOException) {
errorMessage = "No network error";
}
else {
errorMessage = error.getMessage();
}
}
public ApiResponse(Response<T> response) {
code = response.code();
if (response.isSuccessful()) {
body = response.body();
errorMessage = null;
}
else {
String message = null;
if (response.errorBody() != null) {
try {
message = response.errorBody().string();
} catch (IOException e) {
e.printStackTrace();
}
}
if (message == null || message.trim().length() == 0) {
message = response.message();
}
errorMessage = message;
body = null;
}
}
public boolean isSuccessful() {
return code >= 200 && code < 300;
}
}
我也希望使用Gson转换器转换改装响应,然后用ApiResponse包装它。
如果我喜欢
Call<ApiResponse<Result>> requestCall = webClient.request1(xxx,xxx);
requestCall.enqueue(new Callback<ApiResponse<Result>> {});
似乎行不通。无法将json响应数据解析为Result对象。
所以我考虑编写自己的自定义调用适配器引用retrofit sample来替换Retrofit Call。但我仍然有转换泛型类型的问题。
public class MyCallAdapterFactory extends CallAdapter.Factory {
@Nullable
@Override
public CallAdapter<?, ?> get(Type returnType, Annotation[] annotations, Retrofit retrofit) {
if (getRawType(returnType) != MyCall.class) {
return null;
}
Type observableType = getParameterUpperBound(0, (ParameterizedType) returnType);
Class<?> rawObservableType = getRawType(observableType);
if (rawObservableType != ApiResponse.class) {
throw new IllegalArgumentException("type must be a resource");
}
if (! (observableType instanceof ParameterizedType)) {
throw new IllegalArgumentException("resource must be parameterized");
}
Type bodyType = getParameterUpperBound(0, (ParameterizedType) observableType);
Executor executor = retrofit.callbackExecutor();
return new MyCallAdapter<>(bodyType, executor);
}
}
public class MyCallAdapter<T> implements CallAdapter<T, MyCall<T>> {
private final Type responseType;
private final Executor callbackExecutor;
public MyCallAdapter(Type responseType, Executor callbackExecutor) {
this.responseType = responseType;
this.callbackExecutor = callbackExecutor;
}
@Override
public Type responseType() {
return null;
}
@Override
public MyCall<T> adapt(Call<T> call) {
return new MyCallImpl<>(call, callbackExecutor);
}
}
public class MyCallImpl<T> implements MyCall<T> {
private final Call<T> call;
private final Executor callbackExecutor;
MyCallImpl(Call<T> call, Executor callbackExecutor) {
this.call = call;
this.callbackExecutor = callbackExecutor;
}
@Override
public void enqueue(MyCallback<T> callback) {
call.enqueue(new Callback<T>() {
@Override
public void onResponse(Call<T> call, Response<T> response) {
/* This is the problem. it will seems wrap to ApiResponse<ApiResponse<Result>>> because T is <ApiResponse<Result>>.
*/
callback.onResult(new ApiResponse<>(response));
}
@Override
public void onFailure(Call<T> call, Throwable t) {
/** This one is also the issue. */
callback.onResult(new ApiResponse<>(t));
}
});
}
@Override
public void cancel() {
call.cancel();
}
@Override
public MyCall<T> clone() {
return new MyCallImpl<>(call.clone(), callbackExecutor);
}
}
public interface MyCallback<T> {
void onResult(ApiResponse<T> response);
}
上面的代码在处理双参数化泛型类型时存在问题。我不知道如何处理它。
同样运行此代码也是崩溃
Caused by: java.lang.NullPointerException: type == null
at retrofit2.Utils.checkNotNull(Utils.java:286)
at retrofit2.Retrofit.nextResponseBodyConverter(Retrofit.java:324)
at retrofit2.Retrofit.responseBodyConverter(Retrofit.java:313)
at retrofit2.ServiceMethod$Builder.createResponseConverter(ServiceMethod.java:736)
at retrofit2.ServiceMethod$Builder.build(ServiceMethod.java:169)
有人可以帮助MyCall<ApiResponse<Result>>
如何通过MyCallback<ApiResponse<Result>>
呼叫入队?结果是使用Gson转换器解析json数据内容。
public class MyCallAdapter<T> implements CallAdapter<T, MyCall<ApiResponse<T>>> {
public MyCall<ApiResponse<T>> adapt(Call<T> call) {
/* This one will have the problem after changing MyCall<T> to MyCall<ApiResponse<T>>, Parameterized type mismatch.*/
return new MyCallImpl<>(call, callbackExecutor);
}
}
有人可以帮我指出这个问题吗?
答案 0 :(得分:0)
修改MyCallAdapter,MyCallback和MyCallImpl。 @Rahul指出响应类型,现在一切正常。
public class MyCallAdapter<T> implements CallAdapter<T, MyCall<ApiResponse<T>>> {
private final Type responseType;
private final Executor callbackExecutor;
public MyCallAdapter(Type responseType, Executor callbackExecutor) {
this.responseType = responseType;
this.callbackExecutor = callbackExecutor;
}
@Override
public Type responseType() {
return responseType;
}
@Override
public MyCall<ApiResponse<T>> adapt(Call<T> call) {
return new MyCallImpl<>(call, callbackExecutor);
}
}
public interface MyCallback<T> {
void onResult(T response);
}
public class MyCallImpl<T> implements MyCall<ApiResponse<T>> {
private final Call<T> call;
private final Executor callbackExecutor;
MyCallImpl(Call<T> call, Executor callbackExecutor) {
this.call = call;
this.callbackExecutor = callbackExecutor;
}
@Override
public void enqueue(MyCallback<ApiResponse<T>> callback) {
call.enqueue(new Callback<T>() {
@Override
public void onResponse(Call<T> call, Response<T> response) {
callback.onResult(new ApiResponse<>(response));
}
@Override
public void onFailure(Call<T> call, Throwable t) {
callback.onResult(new ApiResponse<>(t));
}
});
}
@Override
public void cancel() {
call.cancel();
}
@Override
public MyCall<ApiResponse<T>> clone() {
return new MyCallImpl<>(call.clone(), callbackExecutor);
}
}
以上是正确的实施。呀。