内容简介:只有读过网络请求框架源码,你才知道发送一个请求到底有多么复杂……从Google开始摒弃了httpclient替换为了Okhttp后,Android的网络请求世界 Retrofit2 + RxJava也在大行其道时;OkHttp无疑成为了大家公认好评的新一代网络请求框架;但是,笔者认为一个框架的优劣不能只是因为其流行就裁定它一定是当前最适合我们自己的工具;应该一切都有我们自己的判断,只有我们自己能够说出的它的优势劣势我们才可以真正的用好这些框架;基于此种目的打算对OKhttp一探究竟……首先来快速了解一下OK
只有读过网络请求框架源码,你才知道发送一个请求到底有多么复杂……
适读人群
- 具有 JAVA 基础开发知识
- 接触过HTTP,HTTPS,HTTP2,TCP,Socket等相关知识
- 简单了解设计模式
背景
从Google开始摒弃了httpclient替换为了Okhttp后,Android的网络请求世界 Retrofit2 + RxJava也在大行其道时;OkHttp无疑成为了大家公认好评的新一代网络请求框架;但是,笔者认为一个框架的优劣不能只是因为其流行就裁定它一定是当前最适合我们自己的工具;应该一切都有我们自己的判断,只有我们自己能够说出的它的优势劣势我们才可以真正的用好这些框架;基于此种目的打算对OKhttp一探究竟……
GET STRATED
首先来快速了解一下OKhttp,它是一个能够帮助我们在交换数据和媒体时,载入速度更快且节省网络带宽的HTTP客户端; okhttp支持
同步调用
我们 GET 示例
public class GetExample { //构建一个 OkHttpClient的实例 OkHttpClient client = new OkHttpClient(); String run(String url) throws IOException { //构建一个 request 网络请求,传入定义的url Request request = new Request.Builder() .url(url) .build(); //传入client,调用excute进行执行获取到用户需要的响应 try (Response response = client.newCall(request).execute()) { return response.body().string(); } } }
POST 示例
//定义MediaType public static final MediaType JSON = MediaType.get("application/json; charset=utf-8"); //初始化 OKhttpClient OkHttpClient client = new OkHttpClient(); String post(String url, String json) throws IOException { //针对requestBody进行初始化 RequestBody body = RequestBody.create(JSON, json); //传入对应的url和body,构建 Request request = new Request.Builder() .url(url) .post(body) .build(); Call call = client.newCall(request); try (Response response = call.execute()) { return response.body().string(); } }
初识OKhttp
首先,了解了上文的示例,我们对于OKhttp的API调用有了一个初步的认识,接下来简单介绍一下我们刚才所用到一些类
okhttpClient的说明图,request说明图,response说明图,call说明图
由此我们便可以初步的了解了OkHttp的简单调用和与用户最常打交道的几个类;接下来我们针对上文的示例代码做一个初步的流程分析,让大家有一个简单对于OKhttp的工作流程有一个大致的了解
所以,通过此图我们可以大致的了解到关于OKhttp最粗略的一个流程,在call中有一个execute的方法;而其中最核心的就是这个方法 ;所有的网络请求的整个处理核心就在这个部分;所以接下来我们的重心就是这里
Interceptor
在分析前我们需要了解一下OKhttp在框架中引入的一个概念 interceptor (拦截器),它的作用机制非常强大,可以监控,重写,重复调用;借用官网的一个示例简单了解一下用法
class LoggingInterceptor implements Interceptor { @Override public Response intercept(Interceptor.Chain chain) throws IOException { //获取拦截器链中的request Request request = chain.request(); //记录 request相关信息 long t1 = System.nanoTime(); logger.info(String.format("Sending request %s on %s%n%s", request.url(), chain.connection(), request.headers())); Response response = chain.proceed(request); long t2 = System.nanoTime(); logger.info(String.format("Received response for %s in %.1fms%n%s", response.request().url(), (t2 - t1) / 1e6d, response.headers())); return response; } }
此为一个日志拦截器的定义,而这个拦截器最关键的部分就是 chain.proceed(request) 这个就是我们的http交互产生对应当前的request的response的部分;这些拦截器会被串联起来依照顺序依次调用,此处引用下官方文档说明:
A call to chain.proceed(request) is a critical part of each interceptor’s implementation. This simple-looking method is where all the HTTP work happens, producing a response to satisfy the request.
对chain.proceed(请求)的调用是每个拦截器实现的关键部分。这个看起来很简单的方法是所有HTTP工作发生的地方,它生成一个响应来满足请求。
Interceptors can be chained. Suppose you have both a compressing interceptor and a checksumming interceptor: you’ll need to decide whether data is compressed and then checksummed, or checksummed and then compressed. OkHttp uses lists to track interceptors, and interceptors are called in order.
拦截器可以链接。假设您同时拥有压缩拦截器和校验和拦截器:您需要确定数据是否已压缩,然后进行校验和,校验和再压缩。 OkHttp使用列表来跟踪拦截器,并按顺序调用拦截器。
然后,大概了解一下两个概念,就是 OKhttp提供了两种拦截器 :
- 应用级别拦截器:只会调用一次,获取到最终的response结果
- 网络级别拦截器:可以感知到网络的请求的重定向,以及重试会被执行多次
引用两个代码示例,让我们简单感受一下两者的区别,具体示例代码详细分析可以查看 interceptors
应用级别拦截器
OkHttpClient client = new OkHttpClient.Builder() //添加了上文的日志拦截器 (应用级别拦截器) .addInterceptor(new LoggingInterceptor()) .build(); //添加url以及header Request request = new Request.Builder() .url("http://www.publicobject.com/helloworld.txt") .header("User-Agent", "OkHttp Example") .build(); Response response = client.newCall(request).execute(); response.body().close();
结果展示:
INFO: Sending request http://www.publicobject.com/helloworld.txt on null User-Agent: OkHttp Example INFO: Received response for https://publicobject.com/helloworld.txt in 1179.7ms Server: nginx/1.4.6 (Ubuntu) Content-Type: text/plain Content-Length: 1759 Connection: keep-alive
从结果可以发现,我们的是得到一个最终的结果
网络级别拦截器
OkHttpClient client = new OkHttpClient.Builder() //添加了上文的日志拦截器 (网络级别拦截器) .addNetworkInterceptor(new LoggingInterceptor()) .build(); Request request = new Request.Builder() .url("http://www.publicobject.com/helloworld.txt") .header("User-Agent", "OkHttp Example") .build(); Response response = client.newCall(request).execute(); response.body().close();
结果展示:
INFO: Sending request http://www.publicobject.com/helloworld.txt on Connection{www.publicobject.com:80, proxy=DIRECT hostAddress=54.187.32.157 cipherSuite=none protocol=http/1.1} User-Agent: OkHttp Example Host: www.publicobject.com Connection: Keep-Alive Accept-Encoding: gzip INFO: Received response for http://www.publicobject.com/helloworld.txt in 115.6ms Server: nginx/1.4.6 (Ubuntu) Content-Type: text/html Content-Length: 193 Connection: keep-alive Location: https://publicobject.com/helloworld.txt INFO: Sending request https://publicobject.com/helloworld.txt on Connection{publicobject.com:443, proxy=DIRECT hostAddress=54.187.32.157 cipherSuite=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA protocol=http/1.1} User-Agent: OkHttp Example Host: publicobject.com Connection: Keep-Alive Accept-Encoding: gzip INFO: Received response for https://publicobject.com/helloworld.txt in 80.9ms Server: nginx/1.4.6 (Ubuntu) Content-Type: text/plain Content-Length: 1759 Connection: keep-alive
从此结果可以看到,我们每次网络发生比如上文的重定向的情况,都可以清楚的感知到 ;初始的一次请求的是 http://www.publicobject.com/helloworld.txt ,另外一次重定向到了 https://publicobject.com/helloworld.txt.
核心主流程分析——拦截器组合使用
上文我们知道了拦截器这个概念,实际上OKhttp不仅提供用户可以编辑的添加的Interceptor,实际上整个的OKhttp的网络请求整体都是通过一个个的拦截器分层完成的,那么接下来我们把上面的示意图再次拓展更详细些
那么来根据此示意图可以看的出,其实我们的网络请求的过程被分解成了一个个的步骤分别分工在每一个类里面去执行,每一个类只负责自己部分工作内容,也就是我们常说的责任链模式( chain-of-responsibility-pattern )并且还在责任链的两个位置提供添加用户的自定义拦截器由此方便针对request和response进行各种自定义的处理,接下来我们来看一下源码部分的实现: 首先是用户调用部分:
用户定义了request,传入了定义好的一个client;并且调用了execute方法
//定义client OkHttpClient client = new OkHttpClient.Builder() //添加用户的拦截器 .addInterceptor(new LoggingInterceptor()) .addNetworkInterceptor(new LoggingInterceptor()) .build(); //开始执行网络请求 try (Response response = client.newCall(request).execute()) { return response.body().string(); }
调用了此时execute最核心的代码:
@Override public Response execute() throws IOException { synchronized (this) { //暂时忽略部分 //执行响应链 return getResponseWithInterceptorChain(); //暂时忽略部分 }
拦截器链的调用:
Response getResponseWithInterceptorChain() throws IOException { // Build a full stack of interceptors. List<Interceptor> interceptors = new ArrayList<>(); //重试之前添加的拦截器,由于 重试层将网络请求全部处理完毕后,才返回;所以是无感知的,用户的拦截器只会得到一个结果 interceptors.addAll(client.interceptors()); //重试重定向拦截器 interceptors.add(new RetryAndFollowUpInterceptor(client)); //给request添加网络请求必须的header,处理request的response的压缩和解压缩 interceptors.add(new BridgeInterceptor(client.cookieJar())); //处理网路的缓存的部分 interceptors.add(new CacheInterceptor(client.internalCache())); //创建或者从连接池中找到合适的安全的连接 interceptors.add(new ConnectInterceptor(client)); if (!forWebSocket) { //网络层的拦截器,由于在重试层之下;所以,每次的重试重定向都会有感知,并且所以此时用户添加的 网络级别的 拦截器 就会调用多次 interceptors.addAll(client.networkInterceptors()); } //执行实际的io流,request和resopnse的接收 interceptors.add(new CallServerInterceptor(forWebSocket)); //定义 串联拦截的链对象,将拦截器串联起来 Interceptor.Chain chain = new RealInterceptorChain(interceptors, transmitter, null, 0, originalRequest, this, client.connectTimeoutMillis(), client.readTimeoutMillis(), client.writeTimeoutMillis()); //忽略 try { //依次执行拦截器 Response response = chain.proceed(originalRequest); //忽略 return response; } catch (IOException e) { //忽略 } finally { //忽略 } }
然后,需要补充说明一点的是:
上面在 getResponseWithInterceptorChain() 调用中
interceptors.addAll(client.interceptors());
以及
interceptors.addAll(client.networkInterceptors());
都是在上述代码:
OkHttpClient client = new OkHttpClient.Builder() //添加用户的拦截器 .addInterceptor(new LoggingInterceptor()) .addNetworkInterceptor(new LoggingInterceptor()) .build();
由用户添加进来的 被okHttpClient缓存到了自己的成员变量中
public class OkHttpClient implements Cloneable, Call.Factory, WebSocket.Factory { final List<Interceptor> interceptors; final List<Interceptor> networkInterceptors; }
至此,OKhttp最主要的流程就是此部分的内容,欲知后事如何且听下回分解
NEW FEATURE
- 责任链 RealInterceptorChain 如何实现对于拦截器的串联
- RetryAndFollowUpInterceptor重试重定向的分析
- BridgeInterceptor的分析
- CacheInterceptor缓存机制分析
- ConnectInterceptor连接复用相关分析
- CallServerInterceptor实际IO操作分析
- OKhttp同步与异步calls的调用管理分析
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- ReactNative源码解析-初识源码
- Netty源码分析(七):初识ChannelPipeline
- DPDK 源码的不完全笔记(一) 初识DPDK
- Spring Security源码分析十:初识Spring Security OAuth2
- 初识Redis
- Netty:初识Netty
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Grails权威指南
瑞切 / 张若飞 / 电子工业 / 2007-11 / 49.80元
《Grails权威指南》译自由Grails项目负责人Graeme Keith Rocher编写的《The Definitive Guide to Grails》,着重介绍了如何在Grails框架下使用Groovy语言进行敏捷的Web开发。本书详细讲解Grails开发的全部过程,包括项目构架、控制器与视图、与关系数据库之间的ORM映射,以及与Ajax和Java平台的无缝集成。同时该书也揭示了Grai......一起来看看 《Grails权威指南》 这本书的介绍吧!