|
@@ -114,8 +114,8 @@ class Downloader(
|
|
|
initializeSubscriptions()
|
|
|
}
|
|
|
|
|
|
- val pending = queue.filter { it.status != Download.DOWNLOADED }
|
|
|
- pending.forEach { if (it.status != Download.QUEUE) it.status = Download.QUEUE }
|
|
|
+ val pending = queue.filter { it.status != Download.State.DOWNLOADED }
|
|
|
+ pending.forEach { if (it.status != Download.State.QUEUE) it.status = Download.State.QUEUE }
|
|
|
|
|
|
notifier.paused = false
|
|
|
|
|
@@ -129,8 +129,8 @@ class Downloader(
|
|
|
fun stop(reason: String? = null) {
|
|
|
destroySubscriptions()
|
|
|
queue
|
|
|
- .filter { it.status == Download.DOWNLOADING }
|
|
|
- .forEach { it.status = Download.ERROR }
|
|
|
+ .filter { it.status == Download.State.DOWNLOADING }
|
|
|
+ .forEach { it.status = Download.State.ERROR }
|
|
|
|
|
|
if (reason != null) {
|
|
|
notifier.onWarning(reason)
|
|
@@ -151,8 +151,8 @@ class Downloader(
|
|
|
fun pause() {
|
|
|
destroySubscriptions()
|
|
|
queue
|
|
|
- .filter { it.status == Download.DOWNLOADING }
|
|
|
- .forEach { it.status = Download.QUEUE }
|
|
|
+ .filter { it.status == Download.State.DOWNLOADING }
|
|
|
+ .forEach { it.status = Download.State.QUEUE }
|
|
|
notifier.paused = true
|
|
|
}
|
|
|
|
|
@@ -167,8 +167,8 @@ class Downloader(
|
|
|
// Needed to update the chapter view
|
|
|
if (isNotification) {
|
|
|
queue
|
|
|
- .filter { it.status == Download.QUEUE }
|
|
|
- .forEach { it.status = Download.NOT_DOWNLOADED }
|
|
|
+ .filter { it.status == Download.State.QUEUE }
|
|
|
+ .forEach { it.status = Download.State.NOT_DOWNLOADED }
|
|
|
}
|
|
|
queue.clear()
|
|
|
notifier.dismissProgress()
|
|
@@ -271,7 +271,7 @@ class Downloader(
|
|
|
|
|
|
val availSpace = DiskUtil.getAvailableStorageSpace(mangaDir)
|
|
|
if (availSpace != -1L && availSpace < MIN_DISK_SPACE) {
|
|
|
- download.status = Download.ERROR
|
|
|
+ download.status = Download.State.ERROR
|
|
|
notifier.onError(context.getString(R.string.download_insufficient_space), download.chapter.name)
|
|
|
return@defer Observable.just(download)
|
|
|
}
|
|
@@ -301,7 +301,7 @@ class Downloader(
|
|
|
?.forEach { it.delete() }
|
|
|
|
|
|
download.downloadedImages = 0
|
|
|
- download.status = Download.DOWNLOADING
|
|
|
+ download.status = Download.State.DOWNLOADING
|
|
|
}
|
|
|
// Get all the URLs to the source images, fetch pages if necessary
|
|
|
.flatMap { download.source.fetchAllImageUrlsFromPageList(it) }
|
|
@@ -317,7 +317,7 @@ class Downloader(
|
|
|
.doOnNext { ensureSuccessfulDownload(download, mangaDir, tmpDir, chapterDirname) }
|
|
|
// If the page list threw, it will resume here
|
|
|
.onErrorReturn { error ->
|
|
|
- download.status = Download.ERROR
|
|
|
+ download.status = Download.State.ERROR
|
|
|
notifier.onError(error.message, download.chapter.name)
|
|
|
download
|
|
|
}
|
|
@@ -457,13 +457,13 @@ class Downloader(
|
|
|
val downloadedImages = tmpDir.listFiles().orEmpty().filterNot { it.name!!.endsWith(".tmp") }
|
|
|
|
|
|
download.status = if (downloadedImages.size == download.pages!!.size) {
|
|
|
- Download.DOWNLOADED
|
|
|
+ Download.State.DOWNLOADED
|
|
|
} else {
|
|
|
- Download.ERROR
|
|
|
+ Download.State.ERROR
|
|
|
}
|
|
|
|
|
|
// Only rename the directory if it's downloaded.
|
|
|
- if (download.status == Download.DOWNLOADED) {
|
|
|
+ if (download.status == Download.State.DOWNLOADED) {
|
|
|
tmpDir.renameTo(dirname)
|
|
|
cache.addChapter(dirname, mangaDir, download.manga)
|
|
|
|
|
@@ -476,7 +476,7 @@ class Downloader(
|
|
|
*/
|
|
|
private fun completeDownload(download: Download) {
|
|
|
// Delete successful downloads from queue
|
|
|
- if (download.status == Download.DOWNLOADED) {
|
|
|
+ if (download.status == Download.State.DOWNLOADED) {
|
|
|
// remove downloaded chapter from queue
|
|
|
queue.remove(download)
|
|
|
}
|
|
@@ -489,7 +489,7 @@ class Downloader(
|
|
|
* Returns true if all the queued downloads are in DOWNLOADED or ERROR state.
|
|
|
*/
|
|
|
private fun areAllDownloadsFinished(): Boolean {
|
|
|
- return queue.none { it.status <= Download.DOWNLOADING }
|
|
|
+ return queue.none { it.status.value <= Download.State.DOWNLOADING.value }
|
|
|
}
|
|
|
|
|
|
companion object {
|