这里定义的Observable对象仅仅发出一个Hello World字符串,然后就结束了。接着我们创建一个Subscriber来处理Observable对象发出的字符串。
首先先看一个例子:
准备工作
假设我有这样一个方法:
这个方法根据输入的字符串返回一个网站的url列表(啊哈,搜索引擎)
-
Observable<List<String>> query(String text);
现在我希望构建一个健壮系统,它可以查询字符串并且显示结果。根据上一篇blog的内容,我们可能会写出下面的代码:
-
query("Hello, world!")
-
.subscribe(urls -> {
-
for (String url : urls) {
-
System.out.println(url);
-
}
-
});
这种代码当然是不能容忍的,因为上面的代码使我们丧失了变化数据流的能力。一旦我们想要更改每一个URL,只能在Subscriber中来做。我们竟然没有使用如此酷的map()操作符!!!
当然,我可以使用map操作符,map的输入是urls列表,处理的时候还是要for each遍历,一样很蛋疼。
万幸,还有Observable.from()方法,它接收一个集合作为输入,然后每次输出一个元素给subscriber:
-
Observable.from("url1", "url2", "url3")
-
.subscribe(url -> System.out.println(url));
我们来把这个方法使用到刚才的场景:
-
query("Hello, world!")
-
.subscribe(urls -> {
-
Observable.from(urls)
-
.subscribe(url -> System.out.println(url));
-
});
虽然去掉了for each循环,但是代码依然看起来很乱。多个嵌套的subscription不仅看起来很丑,难以修改,更严重的是它会破坏某些我们现在还没有讲到的RxJava的特性。
改进
救星来了,他就是flatMap()。
Observable.flatMap()接收一个Observable的输出作为输入,同时输出另外一个Observable。直接看代码:
-
query("Hello, world!")
-
.flatMap(new Func1<List<String>, Observable<String>>() {
-
@Override
-
public Observable<String> call(List<String> urls) {
-
return Observable.from(urls);
-
}
-
})
-
.subscribe(url -> System.out.println(url));
这里我贴出了整个的函数代码,以方便你了解发生了什么,使用lambda可以大大简化代码长度:
-
query("Hello, world!")
-
.flatMap(urls -> Observable.from(urls))
-
.subscribe(url -> System.out.println(url));
flatMap()是不是看起来很奇怪?为什么它要返回另外一个Observable呢?理解flatMap的关键点在于,flatMap输出的新的Observable正是我们在Subscriber想要接收的。现在Subscriber不再收到List<String>,而是收到一些列单个的字符串,就像Observable.from()的输出一样。
这部分也是我当初学RxJava的时候最难理解的部分,一旦我突然领悟了,RxJava的很多疑问也就一并解决了。
还可以更好
flatMap()实在不能更赞了,它可以返回任何它想返回的Observable对象。
比如下面的方法:
-
-
Observable<String> getTitle(String URL);
接着前面的例子,现在我不想打印URL了,而是要打印收到的每个网站的标题。问题来了,我的方法每次只能传入一个URL,并且返回值不是一个String,而是一个输出String的Observabl对象。使用flatMap()可以简单的解决这个问题。
-
query("Hello, world!")
-
.flatMap(urls -> Observable.from(urls))
-
.flatMap(new Func1<String, Observable<String>>() {
-
@Override
-
public Observable<String> call(String url) {
-
return getTitle(url);
-
}
-
})
-
.subscribe(title -> System.out.println(title));
使用lambda:
-
query("Hello, world!")
-
.flatMap(urls -> Observable.from(urls))
-
.flatMap(url -> getTitle(url))
-
.subscribe(title -> System.out.println(title));
是不是感觉很不可思议?我竟然能将多个独立的返回Observable对象的方法组合在一起!帅呆了!
不止这些,我还将两个API的调用组合到一个链式调用中了。我们可以将任意多个API调用链接起来。大家应该都应该知道同步所有的API调用,然后将所有API调用的回调结果组合成需要展示的数据是一件多么蛋疼的事情。这里我们成功的避免了callback hell(多层嵌套的回调,导致代码难以阅读维护)。现在所有的逻辑都包装成了这种简单的响应式调用。
丰富的操作符
目前为止,我们已经接触了两个操作符,RxJava中还有更多的操作符,那么我们如何使用其他的操作符来改进我们的代码呢?
getTitle()返回null如果url不存在。我们不想输出"null",那么我们可以从返回的title列表中过滤掉null值!
-
query("Hello, world!")
-
.flatMap(urls -> Observable.from(urls))
-
.flatMap(url -> getTitle(url))
-
.filter(title -> title != null)
-
.subscribe(title -> System.out.println(title));
filter()输出和输入相同的元素,并且会过滤掉那些不满足检查条件的。
如果我们只想要最多5个结果:
-
query("Hello, world!")
-
.flatMap(urls -> Observable.from(urls))
-
.flatMap(url -> getTitle(url))
-
.filter(title -> title != null)
-
.take(5)
-
.subscribe(title -> System.out.println(title));
take()输出最多指定数量的结果。
如果我们想在打印之前,把每个标题保存到磁盘:
-
query("Hello, world!")
-
.flatMap(urls -> Observable.from(urls))
-
.flatMap(url -> getTitle(url))
-
.filter(title -> title != null)
-
.take(5)
-
.doOnNext(title -> saveTitle(title))
-
.subscribe(title -> System.out.println(title));
doOnNext()允许我们在每次输出一个元素之前做一些额外的事情,比如这里的保存标题。
看到这里操作数据流是多么简单了么。你可以添加任意多的操作,并且不会搞乱你的代码。
RxJava包含了大量的操作符。操作符的数量是有点吓人,但是很值得你去挨个看一下,这样你可以知道有哪些操作符可以使用。弄懂这些操作符可能会花一些时间,但是一旦弄懂了,你就完全掌握了RxJava的威力。
你甚至可以编写自定义的操作符!这篇blog不打算将自定义操作符,如果你想的话,清自行Google吧。
感觉如何?
好吧,你是一个怀疑主义者,并且还很难被说服,那为什么你要关心这些操作符呢?
因为操作符可以让你对数据流做任何操作。
将一系列的操作符链接起来就可以完成复杂的逻辑。代码被分解成一系列可以组合的片段。这就是响应式函数编程的魅力。用的越多,就会越多的改变你的编程思维。
另外,RxJava也使我们处理数据的方式变得更简单。在最后一个例子里,我们调用了两个API,对API返回的数据进行了处理,然后保存到磁盘。但是我们的Subscriber并不知道这些,它只是认为自己在接收一个Observable<String>对象。良好的封装性也带来了编码的便利!
错误处理
到目前为止,我们都没怎么介绍onComplete()和onError()函数。这两个函数用来通知订阅者,被观察的对象将停止发送数据以及为什么停止(成功的完成或者出错了)。
下面的代码展示了怎么使用这两个函数:
<code class="language-java hljs has-numbering" style="margin:8px 0px; display:block; padding:0px; color:inherit; font-family:'Source Code Pro',monospace;font-size:undefined; white-space:pre; word-wrap:normal; background-color:transparent">Observable.just(<span class="hljs-string" style="margin:0px; padding:0px; color:rgb(0,136,0)">"Hello, world!"</span>)
.map(s -> potentialException(s))
.map(s -> anotherPotentialException(s))
.subscribe(<span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">new</span> Subscriber<String>() {
<span class="hljs-annotation" style="margin:0px; padding:0px; color:rgb(155,133,157)">@Override</span><span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">public</span> <span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">void</span> <span class="hljs-title" style="margin:0px; padding:0px">onNext</span>(String s) { System.out.println(s); }
<span class="hljs-annotation" style="margin:0px; padding:0px; color:rgb(155,133,157)">@Override</span><span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">public</span> <span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">void</span> <span class="hljs-title" style="margin:0px; padding:0px">onCompleted</span>() { System.out.println(<span class="hljs-string" style="margin:0px; padding:0px; color:rgb(0,136,0)">"Completed!"</span>); }
<span class="hljs-annotation" style="margin:0px; padding:0px; color:rgb(155,133,157)">@Override</span><span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">public</span> <span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">void</span> <span class="hljs-title" style="margin:0px; padding:0px">onError</span>(Throwable e) { System.out.println(<span class="hljs-string" style="margin:0px; padding:0px; color:rgb(0,136,0)">"Ouch!"</span>); }
});</code><ul class="pre-numbering" style="margin:0px; padding:6px 0px 40px; position:absolute; width:50px; top:0px; left:0px; border-right-width:1px; border-right-style:solid; border-right-color:rgb(221,221,221); list-style:none; text-align:right; background-color:rgb(238,238,238)"><li style="margin:0px; padding:0px 5px">1</li><li style="margin:0px; padding:0px 5px">2</li><li style="margin:0px; padding:0px 5px">3</li><li style="margin:0px; padding:0px 5px">4</li><li style="margin:0px; padding:0px 5px">5</li><li style="margin:0px; padding:0px 5px">6</li><li style="margin:0px; padding:0px 5px">7</li><li style="margin:0px; padding:0px 5px">8</li><li style="margin:0px; padding:0px 5px">9</li><li style="margin:0px; padding:0px 5px">10</li><li style="margin:0px; padding:0px 5px">11</li><li style="margin:0px; padding:0px 5px">12</li><li style="margin:0px; padding:0px 5px">13</li></ul>
代码中的potentialException() 和 anotherPotentialException()有可能会抛出异常。每一个Observerable对象在终结的时候都会调用onCompleted()或者onError()方法,所以Demo中会打印”Completed!”或者”Ouch!”。
这种模式有以下几个优点:
1.只要有异常发生onError()一定会被调用
这极大的简化了错误处理。只需要在一个地方处理错误即可以。
2.操作符不需要处理异常
将异常处理交给订阅者来做,Observerable的操作符调用链中一旦有一个抛出了异常,就会直接执行onError()方法。
3.你能够知道什么时候订阅者已经接收了全部的数据。
知道什么时候任务结束能够帮助简化代码的流程。(虽然有可能Observable对象永远不会结束)
我觉得这种错误处理方式比传统的错误处理更简单。传统的错误处理中,通常是在每个回调中处理错误。这不仅导致了重复的代码,并且意味着每个回调都必须知道如何处理错误,你的回调代码将和调用者紧耦合在一起。
使用RxJava,Observable对象根本不需要知道如何处理错误!操作符也不需要处理错误状态-一旦发生错误,就会跳过当前和后续的操作符。所有的错误处理都交给订阅者来做。
调度器
假设你编写的Android app需要从网络请求数据(感觉这是必备的了,还有单机么?)。网络请求需要花费较长的时间,因此你打算在另外一个线程中加载数据。那么问题来了!
编写多线程的Android应用程序是很难的,因为你必须确保代码在正确的线程中运行,否则的话可能会导致app崩溃。最常见的就是在非主线程更新UI。
使用RxJava,你可以使用subscribeOn()指定观察者代码运行的线程,使用observerOn()指定订阅者运行的线程:
<code class="language-java hljs has-numbering" style="margin:8px 0px; display:block; padding:0px; color:inherit; font-family:'Source Code Pro',monospace;font-size:undefined; white-space:pre; word-wrap:normal; background-color:transparent">myObservableServices.retrieveImage(url)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(bitmap -> myImageView.setImageBitmap(bitmap));</code><ul class="pre-numbering" style="margin:0px; padding:6px 0px 40px; position:absolute; width:50px; top:0px; left:0px; border-right-width:1px; border-right-style:solid; border-right-color:rgb(221,221,221); list-style:none; text-align:right; background-color:rgb(238,238,238)"><li style="margin:0px; padding:0px 5px">1</li><li style="margin:0px; padding:0px 5px">2</li><li style="margin:0px; padding:0px 5px">3</li><li style="margin:0px; padding:0px 5px">4</li></ul>
是不是很简单?任何在我的Subscriber前面执行的代码都是在I/O线程中运行。最后,操作view的代码在主线程中运行.
最棒的是我可以把subscribeOn()和observerOn()添加到任何Observable对象上。这两个也是操作符!。我不需要关心Observable对象以及它上面有哪些操作符。仅仅运用这两个操作符就可以实现在不同的线程中调度。
如果使用AsyncTask或者其他类似的,我将不得不仔细设计我的代码,找出需要并发执行的部分。使用RxJava,我可以保持代码不变,仅仅在需要并发的时候调用这两个操作符就可以。
订阅(Subscriptions)
当调用Observable.subscribe(),会返回一个Subscription对象。这个对象代表了被观察者和订阅者之间的联系。
<code class="language-java hljs has-numbering" style="margin:8px 0px; display:block; padding:0px; color:inherit; font-family:'Source Code Pro',monospace;font-size:undefined; white-space:pre; word-wrap:normal; background-color:transparent">ubscription subscription = Observable.just(<span class="hljs-string" style="margin:0px; padding:0px; color:rgb(0,136,0)">"Hello, World!"</span>)
.subscribe(s -> System.out.println(s));</code><ul class="pre-numbering" style="margin:0px; padding:6px 0px 40px; position:absolute; width:50px; top:0px; left:0px; border-right-width:1px; border-right-style:solid; border-right-color:rgb(221,221,221); list-style:none; text-align:right; background-color:rgb(238,238,238)"><li style="margin:0px; padding:0px 5px">1</li><li style="margin:0px; padding:0px 5px">2</li></ul>
你可以在后面使用这个Subscription对象来操作被观察者和订阅者之间的联系.
<code class="language-java hljs has-numbering" style="margin: 8px 0px; display: block; padding: 0px; color: inherit; box-sizing: border-box; font-family: 'Source Code Pro', monospace;font-size:undefined; white-space: pre; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; word-wrap: normal; background-color: transparent; background-position: initial initial; background-repeat: initial initial;">subscription.unsubscribe();
System.out.println(<span class="hljs-string" style="margin: 0px; padding: 0px; color: rgb(0, 136, 0); box-sizing: border-box;">"Unsubscribed="</span> + subscription.isUnsubscribed());
<span class="hljs-comment" style="margin: 0px; padding: 0px; color: rgb(136, 0, 0); box-sizing: border-box;">// Outputs "Unsubscribed=true"</span></code><ul class="pre-numbering" style="margin: 0px; padding: 6px 0px 40px; box-sizing: border-box; position: absolute; width: 50px; top: 0px; left: 0px; border-right-width: 1px; border-right-style: solid; border-right-color: rgb(221, 221, 221); list-style: none; text-align: right; background-color: rgb(238, 238, 238);"><li style="margin: 0px; padding: 0px 5px; box-sizing: border-box;">1</li><li style="margin: 0px; padding: 0px 5px; box-sizing: border-box;">2</li><li style="margin: 0px; padding: 0px 5px; box-sizing: border-box;">3</li></ul>
RxJava的另外一个好处就是它处理unsubscribing的时候,会停止整个调用链。如果你使用了一串很复杂的操作符,调用unsubscribe将会在他当前执行的地方终止。不需要做任何额外的工作!
总结
记住这个系列仅仅是对RxJava的一个入门介绍。RxJava中有更多的我没介绍的功能等你探索(比如backpressure)。当然我也不是所有的代码都使用响应式的方式–仅仅当代码复杂到我想将它分解成简单的逻辑的时候,我才使用响应式代码。
在第1,2,3篇中,我大概介绍了RxJava是怎么使用的。下面我会介绍如何在Android中使用RxJava.
RxAndroid
RxAndroid是RxJava的一个针对Android平台的扩展。它包含了一些能够简化Android开发的工具。
首先,AndroidSchedulers提供了针对Android的线程系统的调度器。需要在UI线程中运行某些代码?很简单,只需要使用AndroidSchedulers.mainThread():
<code class="language-java hljs has-numbering" style="margin:8px 0px; display:block; padding:0px; color:inherit; font-family:'Source Code Pro',monospace;font-size:undefined; white-space:pre; word-wrap:normal; background-color:transparent">retrofitService.getImage(url)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(bitmap -> myImageView.setImageBitmap(bitmap));</code><ul class="pre-numbering" style="margin:0px; padding:6px 0px 40px; position:absolute; width:50px; top:0px; left:0px; border-right-width:1px; border-right-style:solid; border-right-color:rgb(221,221,221); list-style:none; text-align:right; background-color:rgb(238,238,238)"><li style="margin:0px; padding:0px 5px">1</li><li style="margin:0px; padding:0px 5px">2</li><li style="margin:0px; padding:0px 5px">3</li><li style="margin:0px; padding:0px 5px">4</li></ul>
如果你已经创建了自己的Handler,你可以使用HandlerThreadScheduler1将一个调度器链接到你的handler上。
接着要介绍的就是AndroidObservable,它提供了跟多的功能来配合Android的生命周期。bindActivity()和bindFragment()方法默认使用AndroidSchedulers.mainThread()来执行观察者代码,这两个方法会在Activity或者Fragment结束的时候通知被观察者停止发出新的消息。
<code class="language-java hljs has-numbering" style="margin:8px 0px; display:block; padding:0px; color:inherit; font-family:'Source Code Pro',monospace;font-size:undefined; white-space:pre; word-wrap:normal; background-color:transparent">AndroidObservable.bindActivity(<span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">this</span>, retrofitService.getImage(url))
.subscribeOn(Schedulers.io())
.subscribe(bitmap -> myImageView.setImageBitmap(bitmap);</code><ul class="pre-numbering" style="margin:0px; padding:6px 0px 40px; position:absolute; width:50px; top:0px; left:0px; border-right-width:1px; border-right-style:solid; border-right-color:rgb(221,221,221); list-style:none; text-align:right; background-color:rgb(238,238,238)"><li style="margin:0px; padding:0px 5px">1</li><li style="margin:0px; padding:0px 5px">2</li><li style="margin:0px; padding:0px 5px">3</li></ul>
我自己也很喜欢AndroidObservable.fromBroadcast()方法,它允许你创建一个类似BroadcastReceiver的Observable对象。下面的例子展示了如何在网络变化的时候被通知到:
<code class="language-java hljs has-numbering" style="margin:8px 0px; display:block; padding:0px; color:inherit; font-family:'Source Code Pro',monospace;font-size:undefined; white-space:pre; word-wrap:normal; background-color:transparent">IntentFilter filter = <span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">new</span> IntentFilter(ConnectivityManager.CONNECTIVITY_ACTION);
AndroidObservable.fromBroadcast(context, filter)
.subscribe(intent -> handleConnectivityChange(intent));</code><ul class="pre-numbering" style="margin:0px; padding:6px 0px 40px; position:absolute; width:50px; top:0px; left:0px; border-right-width:1px; border-right-style:solid; border-right-color:rgb(221,221,221); list-style:none; text-align:right; background-color:rgb(238,238,238)"><li style="margin:0px; padding:0px 5px">1</li><li style="margin:0px; padding:0px 5px">2</li><li style="margin:0px; padding:0px 5px">3</li></ul>
最后要介绍的是ViewObservable,使用它可以给View添加了一些绑定。如果你想在每次点击view的时候都收到一个事件,可以使用ViewObservable.clicks(),或者你想监听TextView的内容变化,可以使用ViewObservable.text()。
<code class="language-java hljs has-numbering" style="margin:8px 0px; display:block; padding:0px; color:inherit; font-family:'Source Code Pro',monospace;font-size:undefined; white-space:pre; word-wrap:normal; background-color:transparent">ViewObservable.clicks(mCardNameEditText, <span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">false</span>)
.subscribe(view -> handleClick(view));</code><ul class="pre-numbering" style="margin:0px; padding:6px 0px 40px; position:absolute; width:50px; top:0px; left:0px; border-right-width:1px; border-right-style:solid; border-right-color:rgb(221,221,221); list-style:none; text-align:right; background-color:rgb(238,238,238)"><li style="margin:0px; padding:0px 5px">1</li><li style="margin:0px; padding:0px 5px">2</li></ul>
Retrofit
大名鼎鼎的Retrofit库内置了对RxJava的支持。通常调用发可以通过使用一个Callback对象来获取异步的结果:
<code class="language-java hljs has-numbering" style="margin:8px 0px; display:block; padding:0px; color:inherit; font-family:'Source Code Pro',monospace;font-size:undefined; white-space:pre; word-wrap:normal; background-color:transparent"><span class="hljs-annotation" style="margin:0px; padding:0px; color:rgb(155,133,157)">@GET</span>(<span class="hljs-string" style="margin:0px; padding:0px; color:rgb(0,136,0)">"/user/{id}/photo"</span>)
<span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">void</span> getUserPhoto(<span class="hljs-annotation" style="margin:0px; padding:0px; color:rgb(155,133,157)">@Path</span>(<span class="hljs-string" style="margin:0px; padding:0px; color:rgb(0,136,0)">"id"</span>) <span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">int</span> id, Callback<Photo> cb);</code><ul class="pre-numbering" style="margin:0px; padding:6px 0px 40px; position:absolute; width:50px; top:0px; left:0px; border-right-width:1px; border-right-style:solid; border-right-color:rgb(221,221,221); list-style:none; text-align:right; background-color:rgb(238,238,238)"><li style="margin:0px; padding:0px 5px">1</li><li style="margin:0px; padding:0px 5px">2</li></ul>
使用RxJava,你可以直接返回一个Observable对象。
<code class="language-java hljs has-numbering" style="margin:8px 0px; display:block; padding:0px; color:inherit; font-family:'Source Code Pro',monospace;font-size:undefined; white-space:pre; word-wrap:normal; background-color:transparent"><span class="hljs-annotation" style="margin:0px; padding:0px; color:rgb(155,133,157)">@GET</span>(<span class="hljs-string" style="margin:0px; padding:0px; color:rgb(0,136,0)">"/user/{id}/photo"</span>)
Observable<Photo> getUserPhoto(<span class="hljs-annotation" style="margin:0px; padding:0px; color:rgb(155,133,157)">@Path</span>(<span class="hljs-string" style="margin:0px; padding:0px; color:rgb(0,136,0)">"id"</span>) <span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">int</span> id);</code><ul class="pre-numbering" style="margin:0px; padding:6px 0px 40px; position:absolute; width:50px; top:0px; left:0px; border-right-width:1px; border-right-style:solid; border-right-color:rgb(221,221,221); list-style:none; text-align:right; background-color:rgb(238,238,238)"><li style="margin:0px; padding:0px 5px">1</li><li style="margin:0px; padding:0px 5px">2</li></ul>
现在你可以随意使用Observable对象了。你不仅可以获取数据,还可以进行变换。
Retrofit对Observable的支持使得它可以很简单的将多个REST请求结合起来。比如我们有一个请求是获取照片的,还有一个请求是获取元数据的,我们就可以将这两个请求并发的发出,并且等待两个结果都返回之后再做处理:
<code class="language-java hljs has-numbering" style="margin:8px 0px; display:block; padding:0px; color:inherit; font-family:'Source Code Pro',monospace;font-size:undefined; white-space:pre; word-wrap:normal; background-color:transparent">Observable.zip(
service.getUserPhoto(id),
service.getPhotoMetadata(id),
(photo, metadata) -> createPhotoWithData(photo, metadata))
.subscribe(photoWithData -> showPhoto(photoWithData));</code><ul class="pre-numbering" style="margin:0px; padding:6px 0px 40px; position:absolute; width:50px; top:0px; left:0px; border-right-width:1px; border-right-style:solid; border-right-color:rgb(221,221,221); list-style:none; text-align:right; background-color:rgb(238,238,238)"><li style="margin:0px; padding:0px 5px">1</li><li style="margin:0px; padding:0px 5px">2</li><li style="margin:0px; padding:0px 5px">3</li><li style="margin:0px; padding:0px 5px">4</li><li style="margin:0px; padding:0px 5px">5</li></ul>
在第二篇里我展示过一个类似的例子(使用flatMap())。这里我只是想展示以下使用RxJava+Retrofit可以多么简单地组合多个REST请求。
遗留代码,运行极慢的代码
Retrofit可以返回Observable对象,但是如果你使用的别的库并不支持这样怎么办?或者说一个内部的内码,你想把他们转换成Observable的?有什么简单的办法没?
绝大多数时候Observable.just() 和 Observable.from() 能够帮助你从遗留代码中创建 Observable 对象:
<code class="language-java hljs has-numbering" style="margin:8px 0px; display:block; padding:0px; color:inherit; font-family:'Source Code Pro',monospace;font-size:undefined; white-space:pre; word-wrap:normal; background-color:transparent"><span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">private</span> Object <span class="hljs-title" style="margin:0px; padding:0px">oldMethod</span>() { ... }
<span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">public</span> Observable<Object> <span class="hljs-title" style="margin:0px; padding:0px">newMethod</span>() {
<span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">return</span> Observable.just(oldMethod());
}</code><ul class="pre-numbering" style="margin:0px; padding:6px 0px 40px; position:absolute; width:50px; top:0px; left:0px; border-right-width:1px; border-right-style:solid; border-right-color:rgb(221,221,221); list-style:none; text-align:right; background-color:rgb(238,238,238)"><li style="margin:0px; padding:0px 5px">1</li><li style="margin:0px; padding:0px 5px">2</li><li style="margin:0px; padding:0px 5px">3</li><li style="margin:0px; padding:0px 5px">4</li><li style="margin:0px; padding:0px 5px">5</li></ul>
上面的例子中如果oldMethod()足够快是没有什么问题的,但是如果很慢呢?调用oldMethod()将会阻塞住他所在的线程。
为了解决这个问题,可以参考我一直使用的方法–使用defer()来包装缓慢的代码:
<code class="language-java hljs has-numbering" style="margin:8px 0px; display:block; padding:0px; color:inherit; font-family:'Source Code Pro',monospace;font-size:undefined; white-space:pre; word-wrap:normal; background-color:transparent"><span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">private</span> Object <span class="hljs-title" style="margin:0px; padding:0px">slowBlockingMethod</span>() { ... }
<span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">public</span> Observable<Object> <span class="hljs-title" style="margin:0px; padding:0px">newMethod</span>() {
<span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">return</span> Observable.defer(() -> Observable.just(slowBlockingMethod()));
}</code><ul class="pre-numbering" style="margin:0px; padding:6px 0px 40px; position:absolute; width:50px; top:0px; left:0px; border-right-width:1px; border-right-style:solid; border-right-color:rgb(221,221,221); list-style:none; text-align:right; background-color:rgb(238,238,238)"><li style="margin:0px; padding:0px 5px">1</li><li style="margin:0px; padding:0px 5px">2</li><li style="margin:0px; padding:0px 5px">3</li><li style="margin:0px; padding:0px 5px">4</li><li style="margin:0px; padding:0px 5px">5</li></ul>
现在,newMethod()的调用不会阻塞了,除非你订阅返回的observable对象。
生命周期
我把最难的不分留在了最后。如何处理Activity的生命周期?主要就是两个问题:
1.在configuration改变(比如转屏)之后继续之前的Subscription。
比如你使用Retrofit发出了一个REST请求,接着想在listview中展示结果。如果在网络请求的时候用户旋转了屏幕怎么办?你当然想继续刚才的请求,但是怎么搞?
2.Observable持有Context导致的内存泄露
这个问题是因为创建subscription的时候,以某种方式持有了context的引用,尤其是当你和view交互的时候,这太容易发生!如果Observable没有及时结束,内存占用就会越来越大。
不幸的是,没有银弹来解决这两个问题,但是这里有一些指导方案你可以参考。
第一个问题的解决方案就是使用RxJava内置的缓存机制,这样你就可以对同一个Observable对象执行unsubscribe/resubscribe,却不用重复运行得到Observable的代码。cache() (或者 replay())会继续执行网络请求(甚至你调用了unsubscribe也不会停止)。这就是说你可以在Activity重新创建的时候从cache()的返回值中创建一个新的Observable对象。
<code class="language-java hljs has-numbering" style="margin:8px 0px; display:block; padding:0px; color:inherit; font-family:'Source Code Pro',monospace;font-size:undefined; white-space:pre; word-wrap:normal; background-color:transparent">Observable<Photo> request = service.getUserPhoto(id).cache();
Subscription sub = request.subscribe(photo -> handleUserPhoto(photo));
<span class="hljs-comment" style="margin:0px; padding:0px; color:rgb(136,0,0)">// ...When the Activity is being recreated...</span>
sub.unsubscribe();
<span class="hljs-comment" style="margin:0px; padding:0px; color:rgb(136,0,0)">// ...Once the Activity is recreated...</span>
request.subscribe(photo -> handleUserPhoto(photo));</code><ul class="pre-numbering" style="margin:0px; padding:6px 0px 40px; position:absolute; width:50px; top:0px; left:0px; border-right-width:1px; border-right-style:solid; border-right-color:rgb(221,221,221); list-style:none; text-align:right; background-color:rgb(238,238,238)"><li style="margin:0px; padding:0px 5px">1</li><li style="margin:0px; padding:0px 5px">2</li><li style="margin:0px; padding:0px 5px">3</li><li style="margin:0px; padding:0px 5px">4</li><li style="margin:0px; padding:0px 5px">5</li><li style="margin:0px; padding:0px 5px">6</li><li style="margin:0px; padding:0px 5px">7</li><li style="margin:0px; padding:0px 5px">8</li></ul>
注意,两次sub是使用的同一个缓存的请求。当然在哪里去存储请求的结果还是要你自己来做,和所有其他的生命周期相关的解决方案一延虎,必须在生命周期外的某个地方存储。(retained fragment或者单例等等)。
第二个问题的解决方案就是在生命周期的某个时刻取消订阅。一个很常见的模式就是使用CompositeSubscription来持有所有的Subscriptions,然后在onDestroy()或者onDestroyView()里取消所有的订阅。
<code class="language-java hljs has-numbering" style="margin:8px 0px; display:block; padding:0px; color:inherit; font-family:'Source Code Pro',monospace;font-size:undefined; white-space:pre; word-wrap:normal; background-color:transparent"><span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">private</span> CompositeSubscription mCompositeSubscription
= <span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">new</span> CompositeSubscription();
<span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">private</span> <span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">void</span> <span class="hljs-title" style="margin:0px; padding:0px">doSomething</span>() {
mCompositeSubscription.add(
AndroidObservable.bindActivity(<span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">this</span>, Observable.just(<span class="hljs-string" style="margin:0px; padding:0px; color:rgb(0,136,0)">"Hello, World!"</span>))
.subscribe(s -> System.out.println(s)));
}
<span class="hljs-annotation" style="margin:0px; padding:0px; color:rgb(155,133,157)">@Override</span><span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">protected</span> <span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">void</span> <span class="hljs-title" style="margin:0px; padding:0px">onDestroy</span>() {
<span class="hljs-keyword" style="margin:0px; padding:0px; color:rgb(0,0,136)">super</span>.onDestroy();
mCompositeSubscription.unsubscribe();
}</code><ul class="pre-numbering" style="margin:0px; padding:6px 0px 40px; position:absolute; width:50px; top:0px; left:0px; border-right-width:1px; border-right-style:solid; border-right-color:rgb(221,221,221); list-style:none; text-align:right; background-color:rgb(238,238,238)"><li style="margin:0px; padding:0px 5px">1</li><li style="margin:0px; padding:0px 5px">2</li><li style="margin:0px; padding:0px 5px">3</li><li style="margin:0px; padding:0px 5px">4</li><li style="margin:0px; padding:0px 5px">5</li><li style="margin:0px; padding:0px 5px">6</li><li style="margin:0px; padding:0px 5px">7</li><li style="margin:0px; padding:0px 5px">8</li><li style="margin:0px; padding:0px 5px">9</li><li style="margin:0px; padding:0px 5px">10</li><li style="margin:0px; padding:0px 5px">11</li><li style="margin:0px; padding:0px 5px">12</li><li style="margin:0px; padding:0px 5px">13</li><li style="margin:0px; padding:0px 5px">14</li><li style="margin:0px; padding:0px 5px">15</li></ul>
你可以在Activity/Fragment的基类里创建一个CompositeSubscription对象,在子类中使用它。
注意! 一旦你调用了 CompositeSubscription.unsubscribe(),这个CompositeSubscription对象就不可用了, 如果你还想使用CompositeSubscription,就必须在创建一个新的对象了。
两个问题的解决方案都需要添加额外的代码,如果谁有更好的方案,欢迎告诉我。
总结
RxJava还是一个很新的项目,RxAndroid更是。RxAndroid目前还在活跃开发中,也没有多少好的例子。我打赌一年之后我的一些建议就会被看做过时了。
事实上市,RxAndroid之前的版本确实是有点换乱,因此最近进行了一次大得重构。这里有详细的说明,概括来说就是:
从头开始对RxAndroid进行模化的改造,让这个库变成一个可服用的,可组合的模块。
这个目标已经达成,但是如果你升级到1.0,你可能会很奇怪:东西都跑到哪里去了,如何才能让我的代码通过编译?
RxAndroid
AndroidSchedulers 是RxAndroid中唯一保留下来的,但是一些方法签名已经变了。
迁移部分
WidgetObservable 和 ViewObservable 被打包进了RxBinding项目中,并且做了一些改进。
LifecycleObservable 迁移到了RxLifecycle项目中。另外需要注意的是,这里进行了一些相对比较大幅度的重构,所以使用的时候请参考一下修改日志。
ContentObservable.fromSharedPreferencesChanges() 迁移到了rx-preferences项目。
删除部分
AppObservable 连同它的bind方法已经被完全删除掉了。AppObservable本身有很多问题:
-
AppObservable尝试来做自动unsubscribe,但是仅仅是在Activity或者Fragment已经paused之后Observable再发出一个事件,才会触发自动unsubscribe。也就是说,如果Activity或者Fragment如果没有paused,一个不会complete的Observable将永远不会被unsubscribe。
-
AppObservable被设计用来在pause之后避免继续受到消息,但是因为HandlerScheduler的一个bug,导致某些场景存在缺陷。
-
AppObservable自动调用了observeOn(AndroidSchedulers.mainThread()),不管你是不是想在主线程这么做。
换句话来说,AppObservable并没有做到它所描述的功能,它的可定制性也比较差,并且还会有一些非期望的副作用。
删除AppObservable的时候,可以这样做:
手动的处理Subscription(或者使用RxLifecycle),来在适当的时机做unsubscribe。检查一下你是否需要使用observeOn(AndroidSchedulers.mainThread())。