|
@@ -4,6 +4,7 @@ import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
|
|
|
import eu.kanade.mangafeed.data.database.models.Chapter;
|
|
|
+import eu.kanade.mangafeed.data.source.model.Page;
|
|
|
import rx.Observable;
|
|
|
import rx.subjects.PublishSubject;
|
|
|
|
|
@@ -58,4 +59,33 @@ public class DownloadQueue {
|
|
|
return statusSubject;
|
|
|
}
|
|
|
|
|
|
+ public Observable<Download> getProgressObservable() {
|
|
|
+ return statusSubject
|
|
|
+ .startWith(getActiveDownloads())
|
|
|
+ .flatMap(download -> {
|
|
|
+ if (download.getStatus() == Download.DOWNLOADING) {
|
|
|
+ PublishSubject<Integer> pageStatusSubject = PublishSubject.create();
|
|
|
+ setPagesSubject(download.pages, pageStatusSubject);
|
|
|
+ return pageStatusSubject
|
|
|
+ .filter(status -> status == Page.READY)
|
|
|
+ .flatMap(status -> Observable.just(download));
|
|
|
+
|
|
|
+ } else if (download.getStatus() == Download.DOWNLOADED ||
|
|
|
+ download.getStatus() == Download.ERROR) {
|
|
|
+
|
|
|
+ setPagesSubject(download.pages, null);
|
|
|
+ }
|
|
|
+ return Observable.just(download);
|
|
|
+ })
|
|
|
+ .filter(download -> download.getStatus() == Download.DOWNLOADING);
|
|
|
+ }
|
|
|
+
|
|
|
+ private void setPagesSubject(List<Page> pages, PublishSubject<Integer> subject) {
|
|
|
+ if (pages != null) {
|
|
|
+ for (Page page : pages) {
|
|
|
+ page.setStatusSubject(subject);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
}
|