吃透请求流程!深入分析okhttp3源码

640?wx_fmt=png


今日科技快讯


近日抖音发布通告称:平台严厉打击贩卖高仿名牌类违规内容,2019年以来已下架相关违规视频6577条,封禁相关违规账号4021个。抖音表示,此类高仿、假货违规账号恶意利用抖音平台,对用户、平台及相关品牌方的利益均造成伤害。抖音平台将依照国家法律法规,对其进行持续的坚决打击,努力倡导美好、正向的社区氛围,打造健康、有价值的平台。


作者简介


周一上午好,新的一周在春意盎然中继续加油吧!

本篇文章来自 Android平头哥 的投稿,和大家分享了对okHttp源码的分析,希望对大家有所帮助!

Android平头哥 的博客地址:

https://www.jianshu.com/u/f06ef13e9aba


前言


okhttp一经推出,让其他的网络请求框架变得黯然失色。网上关于okhttp的介绍文章一大堆,这里我就不继续bb了,今天我尝试从源码的角度去分析一下okhttp的一个工作流程。其实在动笔写这篇文章之前,我已经在网上看过不少关于okhttp源码分析的文章,怎么说呢,有些文章,一上来就是一个大总结或者一个UML图,让人看得晦涩难懂。对于大部分没有阅读过okhttp源码的人来说,全盘托出的一上来一大堆接口啊类啊什么的,容易把人整晕。今天我尝试用通俗易懂的语言来描述一下同步、异步的操作流程,以及okhttp背后到底干了啥。

先贴一下 okhttp的github地址:okhttp项目地址:

https://github.com/square/okhttp

最新的源码是3.0+,而3.0与旧版本多少还是有些差别的,这里我就不介绍了,感兴趣的话自行去百度。


同步请求


 //  构建okHttpClient,相当于请求的客户端,Builder设计模式
 OkHttpClient okHttpClient = new OkHttpClient.Builder().readTimeout(5, TimeUnit.SECONDS).build();
        // 构建一个请求体,同样也是Builder设计模式
        Request request = new Request.Builder().url("http://www.baidu.com").build();
        //  生成一个Call对象,该对象是接口类型,后面会说
        Call call = okHttpClient.newCall(request);
        try {
            //  拿到Response
            Response response = call.execute();
            Log.i("TAG",response.body().string());
        } catch (IOException e) {
        }

以上就是一个简单的同步请求示例代码,我们来看一看要经过哪些步骤:

1. 通过Builder模式创建OkHttpClient对象和Request对象
2. 调用OkHttpClient的newCall方法,获取一个Call对象,参数是Request
3. 调用execute方法获取一个Respone

OkHttpClient源码分析

public static final class Builder {
    Dispatcher dispatcher;
    ...
    ...
    public Builder() {
      dispatcher = new Dispatcher();
      protocols = DEFAULT_PROTOCOLS;
      connectionSpecs = DEFAULT_CONNECTION_SPECS;
      eventListenerFactory = EventListener.factory(EventListener.NONE);
      proxySelector = ProxySelector.getDefault();
      if (proxySelector == null) {
        proxySelector = new NullProxySelector();
      }
      cookieJar = CookieJar.NO_COOKIES;
      socketFactory = SocketFactory.getDefault();
      hostnameVerifier = OkHostnameVerifier.INSTANCE;
      certificatePinner = CertificatePinner.DEFAULT;
      proxyAuthenticator = Authenticator.NONE;
      authenticator = Authenticator.NONE;
      connectionPool = new ConnectionPool();
      dns = Dns.SYSTEM;
      followSslRedirects = true;
      followRedirects = true;
      retryOnConnectionFailure = true;
      callTimeout = 0;
      connectTimeout = 10_000;
      readTimeout = 10_000;
      writeTimeout = 10_000;
      pingInterval = 0;
    }

}

 public ConnectionPool(int maxIdleConnections, long keepAliveDuration, TimeUnit timeUnit) {
    this.maxIdleConnections = maxIdleConnections;
    this.keepAliveDurationNs = timeUnit.toNanos(keepAliveDuration);

    // Put a floor on the keep alive duration, otherwise cleanup will spin loop.
    if (keepAliveDuration <= 0) {
      throw new IllegalArgumentException("keepAliveDuration <= 0: " + keepAliveDuration);
    }
  }

Builder是OkHttpClient一个静态内部类,在Builder的构造函数中进行了一系列的初始化操作,其中Dispatcher中文是分发器的意思,和拦截器不同的是分发器不做事件处理,只做事件流向。他负责将每一次Requst进行分发,压栈到自己的线程池,并通过调用者自己不同的方式进行异步和同步处理,那具体是怎么操作的呢?后面会讲。ConnectionPool是一个连接池对象,它可以用来管理连接对象,从它的构造方法中可以看到连接池的默认空闲连接数为5个,keepAlive时间为5分钟。

Request源码分析

public static class Builder {
    @Nullable HttpUrl url;
    String method;
    Headers.Builder headers;
    @Nullable RequestBody body;

    public Builder() {
      this.method = "GET";
      this.headers = new Headers.Builder();
    }
}

Builder()构造函数中设置了默认的请求方法是GET方法,Request类的builder()方法是用来创建一个Request对象,将当前的Builder对象传进去,并完成了对象的赋值。我们来看一下Request的构造函数:

Request(Builder builder) {
    this.url = builder.url;
    this.method = builder.method;
    this.headers = builder.headers.build();
    this.body = builder.body;
    this.tags = Util.immutableMap(builder.tags);
  }

将Builder类的相关属性赋值给Request的相关属性,这也是Builder模式的精髓。

Call对象的创建:newCall()执行分析

@Override public Call newCall(Request request) {
    return RealCall.newRealCall(this, request, false);
}

可以看到newCall方法内部调用了RealCall的newRealCall方法,Call是一个接口,RealCall是它的实现类,接下来我们去newRealCall方法内部看看

static RealCall newRealCall(OkHttpClient client, Request originalRequest, boolean forWebSocket) {
    // Safely publish the Call instance to the EventListener.
    RealCall call = new RealCall(client, originalRequest, forWebSocket);
    call.eventListener = client.eventListenerFactory().create(call);
    return call;
}

在newRealCall方法里,完成了RealCall对象的创建,并把它返回出去。至此,Call对象已经创建完毕,实际上创建的对象是Call的实现类RealCall 对象

Response对象的创建: call.execute()执行分析

前面已经说到 Call call = okHttpClient.newCall(request)拿到的是一个RealCall对象,所以我们直接去RealCall类的execute()方法看它的源码

@Override public Response execute() throws IOException {
    synchronized (this) {
      if (executed) throw new IllegalStateException("Already Executed");
      executed = true;
    }
    captureCallStackTrace();
    timeout.enter();
    eventListener.callStart(this);
    try {
      client.dispatcher().executed(this);
      Response result = getResponseWithInterceptorChain();
      if (result == nullthrow new IOException("Canceled");
      return result;
    } catch (IOException e) {
      e = timeoutExit(e);
      eventListener.callFailed(this, e);
      throw e;
    } finally {
      client.dispatcher().finished(this);
    }
}

在同步代码块中,首先判断excuted是不是true,它的含义是否有在执行,如果是,抛出异常,如果没有执行过,将excuted置为true。eventListener.callStart(this)开启事件监听,eventListener在RealCall对象创建的时候,也一起创建了。

接下来我们看看execute()的核心方法:  client.dispatcher().executed(this)、 Response result = getResponseWithInterceptorChain()、client.dispatcher().finished(this)

public Dispatcher dispatcher() {
    return dispatcher;
  }

synchronized void executed(RealCall call) {
    runningSyncCalls.add(call);
}

首先调用了Dispatcher的dispatcher()方法,dispatcher()方法返回一个Dispatcher对象,紧接着调用了Dispatcher的executed方法,往runningSyncCalls对象中添加了一个 call对象,runningSyncCalls是一个存放同步请求的队列,Dispatcher类中维护了3种类型的请求队列:

  /** Ready async calls in the order they'll be run. */
  private final Deque<AsyncCall> readyAsyncCalls = new ArrayDeque<>();

  /** Running asynchronous calls. Includes canceled calls that haven't finished yet. */
  private final Deque<AsyncCall> runningAsyncCalls = new ArrayDeque<>();

  /** Running synchronous calls. Includes canceled calls that haven't finished yet. */
  private final Deque<RealCall> runningSyncCalls = new ArrayDeque<>();

  • readyAsyncCalls 是异步请求的就绪队列

  • runningAsyncCalls 是异步请求的执行队列

  • runningSyncCalls  是同步请求的执行队列

调用完Dispatcher的execute()方法后,紧接着调用了getResponseWithInterceptorChain()方法。

Response getResponseWithInterceptorChain() throws IOException {
    // Build a full stack of interceptors.
    List<Interceptor> interceptors = new ArrayList<>();
    interceptors.addAll(client.interceptors());
    interceptors.add(retryAndFollowUpInterceptor);
    interceptors.add(new BridgeInterceptor(client.cookieJar()));
    interceptors.add(new CacheInterceptor(client.internalCache()));
    interceptors.add(new ConnectInterceptor(client));
    if (!forWebSocket) {
      interceptors.addAll(client.networkInterceptors());
    }
    interceptors.add(new CallServerInterceptor(forWebSocket));

    Interceptor.Chain chain = new RealInterceptorChain(interceptors, nullnullnull0,
        originalRequest, this, eventListener, client.connectTimeoutMillis(),
        client.readTimeoutMillis(), client.writeTimeoutMillis());

    return chain.proceed(originalRequest);
}

该方法返回一个Response对象,我们可以看到,在方法的第一行中就创建了interceptors 集合,然后紧接着放进去很多拦截器对象,此处使用了责任链设计模式,依次在拦截器中做相应的操作。

在Response的excute方法的finally模块中,最后调用了 client.dispatcher().finished(this)。我们点进去瞧一瞧

void finished(RealCall call) {
    finished(runningSyncCalls, call);
}

finished方法内部调用了它的重载的方法,并把同步请求的消息队列对象和RealCall对象传过去,我们继续往下看。

private <T> void finished(Deque<T> calls, T call) {
    Runnable idleCallback;
    synchronized (this) {
      if (!calls.remove(call)) throw new AssertionError("Call wasn't in-flight!");
      idleCallback = this.idleCallback;
    }

    boolean isRunning = promoteAndExecute();

    if (!isRunning && idleCallback != null) {
      idleCallback.run();
    }
}

在同步代码快中,将call对象从同步请求消息队列中移除,如果移除出问题,就会抛出异常。 紧接着调用了promoteAndExecute方法:

 private boolean promoteAndExecute() {
    assert (!Thread.holdsLock(this));

    List<AsyncCall> executableCalls = new ArrayList<>();
    boolean isRunning;
    synchronized (this) {
      for (Iterator<AsyncCall> i = readyAsyncCalls.iterator(); i.hasNext(); ) {
        AsyncCall asyncCall = i.next();

        if (runningAsyncCalls.size() >= maxRequests) break// Max capacity.
        if (asyncCall.callsPerHost().get() >= maxRequestsPerHost) continue// Host max capacity.

        i.remove();
        asyncCall.callsPerHost().incrementAndGet();
        executableCalls.add(asyncCall);
        runningAsyncCalls.add(asyncCall);
      }
      isRunning = runningCallsCount() > 0;
    }

    for (int i = 0, size = executableCalls.size(); i < size; i++) {
      AsyncCall asyncCall = executableCalls.get(i);
      asyncCall.executeOn(executorService());
    }

    return isRunning;
}

同步代码块有一个for循环,去迭代readyAsyncCalls,也就是待准备消息队列。但是我们从前面一步步分析过来,并没有往readyAsyncCalls添加过数据,所以当前的for循环并不会执行,之后的一个for循环也不会执行,isRunning返回false.

promoteAndExecute()方法返回false。

private <T> void finished(Deque<T> calls, T call) {
    Runnable idleCallback;
    synchronized (this) {
      if (!calls.remove(call)) throw new AssertionError("Call wasn't in-flight!");
      idleCallback = this.idleCallback;
    }

    boolean isRunning = promoteAndExecute();

    if (!isRunning && idleCallback != null) {
      idleCallback.run();
    }
}

并且idleCallback 已经完成了初始化,所以会执行 idleCallback的run()方法

总结:通过以上的分析,我们发现在同步请求中Dispatcher主要负责了两件事,同步请求的保存和移除。

640?wx_fmt=png

640?wx_fmt=png

至此,okhttp3的同步请求源码已经分析完了,接下来,我们看看okhttp3的异步请求源码分析。


异步请求


 //  构建okHttpClient,相当于请求的客户端,Builder设计模式
 OkHttpClient okHttpClient = new OkHttpClient.Builder().readTimeout(5, TimeUnit.SECONDS).build();
        // 构建一个请求体,同样也是Builder设计模式
        Request request = new Request.Builder().url("http://www.baidu.com").build();
        //  生成一个Call对象,该对象是接口类型,后面会说
        Call call = okHttpClient.newCall(request);
        call.enqueue(new Callback() {
                    @Override
                    public void onFailure(Call call, IOException e) {

                    }

                    @Override
                    public void onResponse(Call call, Response response) throws IOException {

                    }
                });

简单的看下异步请求的几个步骤:

1. 通过Builder模式创建OkHttpClient对象和Request对象
2. 调用OkHttpClient的newCall方法,获取一个Call对象,参数是Request
3. 调用call对象的enqueue()方法

步骤1和步骤2跟同步请求的步骤一致,主要看一下步骤3

异步请求源码:call.enqueue() 源码分析

异步请求和同步请求的步骤1和步骤2一致,都是在做准备工作,并没有发起请求,所以这次我们直接忽略了步骤1和步骤2的分析,直接分析步骤3的源码,我们点开RealCall的enqueue方法:

@Override public void enqueue(Callback responseCallback) {
    synchronized (this) {
      if (executed) throw new IllegalStateException("Already Executed");
      executed = true;
    }
    captureCallStackTrace();
    eventListener.callStart(this);
    client.dispatcher().enqueue(new AsyncCall(responseCallback));
}

我们看看它的核心代码:

client.dispatcher().enqueue(new AsyncCall(responseCallback))

client.dispatcher()返回一个Dispatcher对象没什么可讲的,紧接着调用Dispatcher的enqueue方法,参数是AsyncCall对象,我们先看看AsyncCall是什么?

final class AsyncCall extends NamedRunnable {
    private final Callback responseCallback;
    private volatile AtomicInteger callsPerHost = new AtomicInteger(0);

    AsyncCall(Callback responseCallback) {
      super("OkHttp %s", redactedUrl());
      this.responseCallback = responseCallback;
    }

    AtomicInteger callsPerHost() {
      return callsPerHost;
    }
}

只截取了部分代码,该类继承自NamedRunnable,我们看看NamedRunnable:

public abstract class NamedRunnable implements Runnable {
  protected final String name;

  public NamedRunnable(String format, Object... args) {
    this.name = Util.format(format, args);
  }

  @Override public final void run() {
    String oldName = Thread.currentThread().getName();
    Thread.currentThread().setName(name);
    try {
      execute();
    } finally {
      Thread.currentThread().setName(oldName);
    }
  }

  protected abstract void execute();
}

NamedRunnable 实现了Runnable 接口。

我们直接去Dispatcher的enqueue()看看做了哪些操作。

void enqueue(AsyncCall call) {
   synchronized (this) {
     readyAsyncCalls.add(call);

     // Mutate the AsyncCall so that it shares the AtomicInteger of an existing running call to
     // the same host.
     if (!call.get().forWebSocket) {
       AsyncCall existingCall = findExistingCallWithHost(call.host());
       if (existingCall != null) call.reuseCallsPerHostFrom(existingCall);
     }
   }
   promoteAndExecute();
}

在同步代码块中,将当前的call请求添加到待准备消息队列中去,注意这里跟同步请求的区别,同步请求的时候,并没有把当前的call添加到准备消息队列中去。然后又调用了 promoteAndExecute()方法,同步请求的时候也调用了promoteAndExecute()方法

private boolean promoteAndExecute() {
    assert (!Thread.holdsLock(this));

    List<AsyncCall> executableCalls = new ArrayList<>();
    boolean isRunning;
    synchronized (this) {
      for (Iterator<AsyncCall> i = readyAsyncCalls.iterator(); i.hasNext(); ) {
        AsyncCall asyncCall = i.next();

        if (runningAsyncCalls.size() >= maxRequests) break// Max capacity.
        if (asyncCall.callsPerHost().get() >= maxRequestsPerHost) continue// Host max capacity.

        i.remove();
        asyncCall.callsPerHost().incrementAndGet();
        executableCalls.add(asyncCall);
        runningAsyncCalls.add(asyncCall);
      }
      isRunning = runningCallsCount() > 0;
    }

    for (int i = 0, size = executableCalls.size(); i < size; i++) {
      AsyncCall asyncCall = executableCalls.get(i);
      asyncCall.executeOn(executorService());
    }
    return isRunning;
}

此时,readyAsyncCalls不为空了,我们单独的把这个for循环拎出来讲:

for (Iterator<AsyncCall> i = readyAsyncCalls.iterator(); i.hasNext(); ) {
        AsyncCall asyncCall = i.next();

        if (runningAsyncCalls.size() >= maxRequests) break// Max capacity.
        if (asyncCall.callsPerHost().get() >= maxRequestsPerHost) continue// Host max capacity.

        i.remove();
        asyncCall.callsPerHost().incrementAndGet();
        executableCalls.add(asyncCall);
        runningAsyncCalls.add(asyncCall);
}

这段代码的含义是:把符合条件的call请求从readyAsyncCalls提升为runningAsyncCalls,我们看这段代码中的两个if语句,第一个if语句判断当前同步消息队列的长度大于等于请求最大值,如果满足直接跳出for循环,maxRequests的值为64,第二个if语句判断当前执行的异步请求队列中相同主机的请求数是否大于等于maxRequestsPerHost(每个主机最大请求数,默认为5),如果这两个条件都不满足的情况下,把从readyAsyncCalls取出来的call请求,存到临时的
executableCalls 队列中去。

紧接着去遍历executableCalls:

for (int i = 0, size = executableCalls.size(); i < size; i++) {
      AsyncCall asyncCall = executableCalls.get(i);
      asyncCall.executeOn(executorService());
}

从executableCalls获取AsyncCall对象,并且调用它的executeOn方法,executeOn()方法参数是executorService(),我们看看executorService():

 public synchronized ExecutorService executorService() {
    if (executorService == null) {
      executorService = new ThreadPoolExecutor(0, Integer.MAX_VALUE, 60, TimeUnit.SECONDS,
          new SynchronousQueue<>(), Util.threadFactory("OkHttp Dispatcher"false));
    }
    return executorService;
}

可以看出,该方法是一个同步方法,返回的是一个线程池对象,ThreadPoolExecutor()的第二个参数传入了Integer的最大值,即线程池所能容纳的最大线程数为Integer.MAX_VALUE,虽然这里设置了很大的值,但是实际情况下并非会达到最大值,因为上面enqueue()方法中有做了判断。

回到  asyncCall.executeOn(executorService())这里,executorService返回了一个线程池对象,紧接着调用线程池对象的execute方法,execute()方法传入实现了Runable接口的AsyncCall对象,前面在分析同步请求的时候,说了AsyncCall实现了Runable接口

640?wx_fmt=png

ok,现在我们要看看线程池做了什么操作,直接去NamedRunnable的run方法看看做了什么操作。

public abstract class NamedRunnable implements Runnable {
  protected final String name;

  public NamedRunnable(String format, Object... args) {
    this.name = Util.format(format, args);
  }

  @Override public final void run() {
    String oldName = Thread.currentThread().getName();
    Thread.currentThread().setName(name);
    try {
      execute();
    } finally {
      Thread.currentThread().setName(oldName);
    }
  }

  protected abstract void execute();
}

execute()是一个抽象方法,所以我们直接去NamedRunnable的实现类AsyncCall的execute()方法看:

@Override protected void execute() {
      boolean signalledCallback = false;
      timeout.enter();
      try {
        Response response = getResponseWithInterceptorChain();
        if (retryAndFollowUpInterceptor.isCanceled()) {
          signalledCallback = true;
          responseCallback.onFailure(RealCall.thisnew IOException("Canceled"));
        } else {
          signalledCallback = true;
          responseCallback.onResponse(RealCall.this, response);
        }
      } catch (IOException e) {
        e = timeoutExit(e);
        if (signalledCallback) {
          // Do not signal the callback twice!
          Platform.get().log(INFO, "Callback failure for " + toLoggableString(), e);
        } else {
          eventListener.callFailed(RealCall.this, e);
          responseCallback.onFailure(RealCall.this, e);
        }
      } finally {
        client.dispatcher().finished(this);
      }
}

这段代码才是真正执行异步请求的逻辑,getResponseWithInterceptorChain()返回Response对象,然后判断retryAndFollowUpInterceptor是否取消回调CallBack接口的onFailure()或onResponse()方法,最后finally中,和同步请求的处理一样,调用了Dispatcher对象的finished()方法。

void finished(RealCall call) {
    finished(runningSyncCalls, call);
  }

  private <T> void finished(Deque<T> calls, T call) {
    Runnable idleCallback;
    synchronized (this) {
      if (!calls.remove(call)) throw new AssertionError("Call wasn't in-flight!");
      idleCallback = this.idleCallback;
    }

    boolean isRunning = promoteAndExecute();

    if (!isRunning && idleCallback != null) {
      idleCallback.run();
    }
}

看完promoteAndExecute()方法的具体操作,我们发现,调用eneque的时候会把call请求添加到readyAsyncCalls(异步请求准备队列)中,而readyAsyncCalls队列中的请求什么时候执行呢,看完promoteAndExecute的代码就恍然大悟了。

总结:异步请求中,我们先去遍历异步请求的就绪队列,并判断异步请求的执行队列的队列大小是否小于设置的最大数的时候,如果条件满足,把该请求添加到异步请求的执行队列中去,同时把该请求添加到临时的异步请求的执行队列去中。之后,遍历这个临时的异步请求的执行队列,去执行AsyncCall的execute()方法。


推荐阅读:

让你直呼666的仿Excel表格效果

免Root实现Android静默安装(非无障碍)

通过王者荣耀来学习策略模式


欢迎关注我的公众号,学习技术或投稿

640.png?

640?wx_fmt=jpeg

长按上图,识别图中二维码即可关注

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值