本文基于Retrofit2的2.4.0版本
implementation 'com.squareup.retrofit2:retrofit:2.4.0'
复制代码
网络调用流程分析
我们在发起异步网络请求时是这样调用的:
MyService myService = retrofit.create(MyService.class);
Call call = myService.getData();
call.enqueue(new Callback() {
@Override
public void onResponse(Call call, Response response) {
}
@Override
public void onFailure(Call call, Throwable t) {
}
});
复制代码
总结起来就是三步:通过create方法生成我们的接口对象、调用接口得到Call、调用Call发起网络请求。我们分别来看看这三步Retrofit2都干了些啥。
创建接口对象
//Retrofit.class
public T create(final Class service) {
Utils.validateServiceInterface(service);
if (validateEagerly) {
eagerlyValidateMethods(service);
}
return (T) Proxy.newProxyInstance(service.getClassLoader(), new Class>[]{service},
new InvocationHandler() {
private final Platform platform = Platform.get();
@Override
public Object invoke(Object proxy, Method method, @Nullable Object[] args)
throws Throwable {
// If the method is a method from Object then defer to normal invocation.
if (method.getDeclaringClass() == Object.class) {
return method.invoke(this, args);
}
//这里默认返回是false,所以不会执行
if (platform.isDefaultMethod(method)) {
return platform.invokeDefaultMethod(method, service, proxy, args);
}
//创建serviceMethod
ServiceMethod
可以看到Retrofit的create方法返回的是一个动态代理对象,当我们调用通过create方法生成的接口对象myService时,就会调用代理对象的invoke方法。在invoke方法中做了几件事:
(1)根据调用的具体方法Method(比如我们调用的getData方法),生成ServiceMethod
(2)用生成的ServiceMethod和方法中的参数生成OkHttpCall用于后面调用OkHttp3请求网络
(3)将生成的OkHttpCall通过Call适配器适配以后返回,也就是将OkHttpCall转换成需要的Call类型,比如Retrofit2的Call,RxJava的Observable等,供我们调用。
调用接口得到Call
我们调用接口myService的getData方法时,会调用上面提到的动态代理对象的invoke方法,invoke方法会分别创建ServiceMethod、OkHttpCall,并将OkHttpCall适配返回我们需要的Call对象。下面我们来深入源码看看Retrofit是怎么做这些事儿的。
(1)首先我们看看是怎么创建ServiceMethod的。
//Retrofit.class
private final Map> serviceMethodCache = new ConcurrentHashMap<>();
ServiceMethod, ?> loadServiceMethod(Method method) {
ServiceMethod, ?> result = serviceMethodCache.get(method);
if (result != null) return result;
synchronized (serviceMethodCache) {
result = serviceMethodCache.get(method);
if (result == null) {
result = new ServiceMethod.Builder<>(this, method).build();
serviceMethodCache.put(method, result);
}
}
return result;
}
复制代码
Retrofit中利用ConcurrentHashMap对ServiceMethod进行了缓存,创建ServiceMethod时会先去缓存中找,缓存中没有的话再调用ServiceMethod的Builder创建。因为Retrofit会为我们写的接口类中的每一个方法都创建一个ServiceMethod,所以ServiceMethod的数量会很多,利用缓存可以提高效率。
public ServiceMethod build() {
//找到该方法所需要的CallAdapter
callAdapter = createCallAdapter();
responseType = callAdapter.responseType();
...
//找到该方法需要的返回类型转换器
responseConverter = createResponseConverter();
//解析方法中的注解
for (Annotation annotation : methodAnnotations) {
parseMethodAnnotation(annotation);
}
...
//这里省略解析参数中的注解步骤
...
return new ServiceMethod<>(this);
}
复制代码
ServiceMethod的build方法中除了解析方法和参数的注解,最重要的就是确定该方法(每一个方法对应一个ServiceMethod)的CallAdapter和ResponseConverter。我们在构建Retrofit时可以添加多个CallAdapter和ResponseConverter,而这些CallAdapter和ResponseConverter都存放在Retrofit的对应的列表中,所以这里肯定需要去Retrofit的列表里找,我们来看看。
//ServiceMethod.class
private CallAdapter createCallAdapter() {
Type returnType = method.getGenericReturnType();
if (Utils.hasUnresolvableType(returnType)) {
throw methodError(
"Method return type must not include a type variable or wildcard: %s", returnType);
}
if (returnType == void.class) {
throw methodError("Service methods cannot return void.");
}
Annotation[] annotations = method.getAnnotations();
try {
//通过retrofit的callAdapter方法来查找对应的CallAdapter
return (CallAdapter) retrofit.callAdapter(returnType, annotations);
} catch (RuntimeException e) { // Wide exception range because factories are user code.
throw methodError(e, "Unable to create call adapter for %s", returnType);
}
}
复制代码
可以看到这里确实是通过retrofit来查找CallAdapter的,那我们去Retrofit的callAdapter方法方法看看
//Retrofit.class
public CallAdapter, ?> callAdapter(Type returnType, Annotation[] annotations) {
return nextCallAdapter(null, returnType, annotations);
}
public CallAdapter, ?> nextCallAdapter(@Nullable CallAdapter.Factory skipPast, Type returnType,
Annotation[] annotations) {
...
int start = callAdapterFactories.indexOf(skipPast) + 1;
for (int i = start, count = callAdapterFactories.size(); i < count; i++) {
CallAdapter, ?> adapter = callAdapterFactories.get(i).get(returnType, annotations, this);
if (adapter != null) {
return adapter;
}
}
...
}
复制代码
callAdapter方法中会遍历callAdapterFactories列表中的CallAdapterFactory,并调用其get方法,尝试获取CallAdapter,如果CallAdapter不为null,就说明是要找的CallAdapter。这里我们来简单看下默认的CallAdapterFactory的get方法。
从本文的开头的分析我们知道,默认的CallAdapterFactory是Platform的内部类Android返回的ExecutorCallAdapterFactory
final class ExecutorCallAdapterFactory extends CallAdapter.Factory {
...
@Override
public CallAdapter, ?> get(Type returnType, Annotation[] annotations, Retrofit retrofit) {
if (getRawType(returnType) != Call.class) {
return null;
}
...
}
...
}
复制代码
可以看到,ExecutorCallAdapterFactory的get方法首先会判断当前的返回类型是不是Call以及Call的子类,不是的话就返回null。所以这就是Retrofit从适配器列表中找到对应适配器的方法依据。比如我们再来看看RxJava的适配器:
//RxJavaCallAdapterFactory.class
@Override
public CallAdapter, ?> get(Type returnType, Annotation[] annotations, Retrofit retrofit) {
...
if (rawType != Observable.class && !isSingle && !isCompletable) {
return null;
}
...
return new RxJavaCallAdapter(responseType, scheduler, isAsync, isResult, isBody, isSingle,
false);
}
复制代码
所以当我们接口需要的是Observable时,我们就需要给Retrofit设置RxJava的适配器,这样Retrofit在创建ServiceMethod时就能找到对应的RxJava适配器了。
(2)创建OkHttpCall
创建OkHttpCall比较简单,直接调用构造方法就行
OkHttpCall(ServiceMethod serviceMethod, @Nullable Object[] args) {
this.serviceMethod = serviceMethod;
this.args = args;
}
复制代码
(3)返回接口需要的Call对象
从上面的分析中我们知道,是通过serviceMethod的adapt方法来返回目标Call对象的,那我们来看看serviceMethod的adapt方法
T adapt(Call call) {
return callAdapter.adapt(call);
}
复制代码
可以看到调用的serviceMethod中的callAdapter的adapt方法,也就是在上面的创建ServiceMethod的过程中确定的CallAdapter的adapt方法。这里我们看看默认的CallAdapter的adapt方法,也就是ExecutorCallAdapterFactory的adapt方法
final class ExecutorCallAdapterFactory extends CallAdapter.Factory {
...
@Override
public CallAdapter, ?> get(Type returnType, Annotation[] annotations, Retrofit retrofit) {
if (getRawType(returnType) != Call.class) {
return null;
}
final Type responseType = Utils.getCallResponseType(returnType);
return new CallAdapter>() {
@Override
public Type responseType() {
return responseType;
}
@Override
public Call adapt(Call call) {
return new ExecutorCallbackCall<>(callbackExecutor, call);
}
};
}
static final class ExecutorCallbackCall implements Call {
final Executor callbackExecutor;
final Call delegate;
ExecutorCallbackCall(Executor callbackExecutor, Call delegate) {
this.callbackExecutor = callbackExecutor;
this.delegate = delegate;
}
@Override
public void enqueue(final Callback callback) {
checkNotNull(callback, "callback == null");
delegate.enqueue(new Callback() {
@Override
public void onResponse(Call call, final Response response) {
callbackExecutor.execute(new Runnable() {
@Override
public void run() {
if (delegate.isCanceled()) {
// Emulate OkHttp's behavior of throwing/delivering an IOException on cancellation.
callback.onFailure(ExecutorCallbackCall.this, new IOException("Canceled"));
} else {
callback.onResponse(ExecutorCallbackCall.this, response);
}
}
});
}
@Override
public void onFailure(Call call, final Throwable t) {
callbackExecutor.execute(new Runnable() {
@Override
public void run() {
callback.onFailure(ExecutorCallbackCall.this, t);
}
});
}
});
}
@Override
public Response execute() throws IOException {
return delegate.execute();
}
...
}
}
复制代码
可以看到,ExecutorCallAdapterFactory的adapt方法返回的是ExecutorCallAdapterFactory的内部类ExecutorCallbackCall,ExecutorCallbackCall内部有2部分组成,一个是回调执行器callbackExecutor,这个是用于将请求结果回调到主线程的;另一是Call对象,这里对应的就是OkHttpCall,因为我们调用adapt方法传入的就是OkHttpCall。
所以到这里其实网络调用的前半部分流程就清楚了:
我们在调用我们的接口方法myService的getData方法时,实际上调用的是Retrofit为我们生成的代理类的invoke方法,invoke方法会创建ServiceMethod和OkHttpCall,ServiceMethod中保存着对应CallAdapter和ResponseConverter,然后会调用ServiceMethod中的adapt方法利用CallAdapter将OkHttpCall转换成我们需要的Call类型并返回给我们调用。当我们调用Call进行网络请求时实际上调用的就是OkHttpCall对应的方法。
下篇文章我们再来分析下网络调用的下半部分流程,也就是Retrofit是怎么将OkHttp3请求返回的Response转换成我们实际需要的类型的?
原文地址:https://juejin.im/post/5b97d08df265da0ac138fd5f