use of com.justwayward.reader.bean.support.DownloadProgress in project BookReader by JustWayward.
the class DownloadBookService method download.
private int download(String url, final String bookId, final String title, final int chapter, final int chapterSize) {
final int[] result = { -1 };
Subscription subscription = bookApi.getChapterRead(url).subscribeOn(Schedulers.io()).observeOn(AndroidSchedulers.mainThread()).subscribe(new Observer<ChapterRead>() {
@Override
public void onNext(ChapterRead data) {
if (data.chapter != null) {
post(new DownloadProgress(bookId, String.format(getString(R.string.book_read_download_progress), title, chapter, chapterSize), true));
CacheManager.getInstance().saveChapterFile(bookId, chapter, data.chapter);
result[0] = 1;
} else {
result[0] = 0;
}
}
@Override
public void onCompleted() {
result[0] = 1;
}
@Override
public void onError(Throwable e) {
result[0] = 0;
}
});
addSubscrebe(subscription);
while (result[0] == -1) {
try {
Thread.sleep(350);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
return result[0];
}
use of com.justwayward.reader.bean.support.DownloadProgress in project BookReader by JustWayward.
the class DownloadBookService method downloadBook.
public synchronized void downloadBook(final DownloadQueue downloadQueue) {
AsyncTask<Integer, Integer, Integer> downloadTask = new AsyncTask<Integer, Integer, Integer>() {
List<BookMixAToc.mixToc.Chapters> list = downloadQueue.list;
String bookId = downloadQueue.bookId;
// 起始章节
int start = downloadQueue.start;
// 结束章节
int end = downloadQueue.end;
@Override
protected Integer doInBackground(Integer... params) {
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
}
int failureCount = 0;
for (int i = start; i <= end && i <= list.size(); i++) {
if (canceled) {
break;
}
// 网络异常,取消下载
if (!NetworkUtils.isAvailable(AppUtils.getAppContext())) {
downloadQueue.isCancel = true;
post(new DownloadMessage(bookId, getString(R.string.book_read_download_error), true));
failureCount = -1;
break;
}
if (!downloadQueue.isFinish && !downloadQueue.isCancel) {
// 章节文件不存在,则下载,否则跳过
if (CacheManager.getInstance().getChapterFile(bookId, i) == null) {
BookMixAToc.mixToc.Chapters chapters = list.get(i - 1);
String url = chapters.link;
int ret = download(url, bookId, chapters.title, i, list.size());
if (ret != 1) {
failureCount++;
}
} else {
post(new DownloadProgress(bookId, String.format(getString(R.string.book_read_alreday_download), list.get(i - 1).title, i, list.size()), true));
}
}
}
try {
Thread.sleep(500);
} catch (InterruptedException e) {
}
return failureCount;
}
@Override
protected void onPostExecute(Integer failureCount) {
super.onPostExecute(failureCount);
downloadQueue.isFinish = true;
if (failureCount > -1) {
// 完成通知
post(new DownloadMessage(bookId, String.format(getString(R.string.book_read_download_complete), failureCount), true));
}
// 下载完成,从队列里移除
downloadQueues.remove(downloadQueue);
// 释放 空闲状态
isBusy = false;
if (!canceled) {
// post一个空事件,通知继续执行下一个任务
post(new DownloadQueue());
} else {
downloadQueues.clear();
}
canceled = false;
LogUtils.i(bookId + "缓存完成,失败" + failureCount + "章");
}
};
downloadTask.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
}
Aggregations