|
|
@ -7,26 +7,12 @@ import io.legado.app.base.BaseService |
|
|
|
import io.legado.app.constant.AppConst |
|
|
|
import io.legado.app.constant.AppConst |
|
|
|
import io.legado.app.constant.EventBus |
|
|
|
import io.legado.app.constant.EventBus |
|
|
|
import io.legado.app.constant.IntentAction |
|
|
|
import io.legado.app.constant.IntentAction |
|
|
|
import io.legado.app.data.appDb |
|
|
|
|
|
|
|
import io.legado.app.data.entities.Book |
|
|
|
|
|
|
|
import io.legado.app.data.entities.BookChapter |
|
|
|
|
|
|
|
import io.legado.app.data.entities.BookSource |
|
|
|
|
|
|
|
import io.legado.app.help.AppConfig |
|
|
|
import io.legado.app.help.AppConfig |
|
|
|
import io.legado.app.help.BookHelp |
|
|
|
|
|
|
|
import io.legado.app.help.coroutine.CompositeCoroutine |
|
|
|
|
|
|
|
import io.legado.app.help.coroutine.Coroutine |
|
|
|
|
|
|
|
import io.legado.app.model.CacheBook |
|
|
|
import io.legado.app.model.CacheBook |
|
|
|
import io.legado.app.model.webBook.WebBook |
|
|
|
|
|
|
|
import io.legado.app.utils.postEvent |
|
|
|
import io.legado.app.utils.postEvent |
|
|
|
import io.legado.app.utils.servicePendingIntent |
|
|
|
import io.legado.app.utils.servicePendingIntent |
|
|
|
import io.legado.app.utils.toastOnUi |
|
|
|
import kotlinx.coroutines.* |
|
|
|
import kotlinx.coroutines.asCoroutineDispatcher |
|
|
|
|
|
|
|
import kotlinx.coroutines.delay |
|
|
|
|
|
|
|
import kotlinx.coroutines.isActive |
|
|
|
|
|
|
|
import kotlinx.coroutines.launch |
|
|
|
|
|
|
|
import splitties.init.appCtx |
|
|
|
import splitties.init.appCtx |
|
|
|
import java.util.concurrent.ConcurrentHashMap |
|
|
|
|
|
|
|
import java.util.concurrent.CopyOnWriteArraySet |
|
|
|
|
|
|
|
import java.util.concurrent.Executors |
|
|
|
import java.util.concurrent.Executors |
|
|
|
import kotlin.math.min |
|
|
|
import kotlin.math.min |
|
|
|
|
|
|
|
|
|
|
@ -34,16 +20,8 @@ class CacheBookService : BaseService() { |
|
|
|
private val threadCount = AppConfig.threadCount |
|
|
|
private val threadCount = AppConfig.threadCount |
|
|
|
private var cachePool = |
|
|
|
private var cachePool = |
|
|
|
Executors.newFixedThreadPool(min(threadCount, 8)).asCoroutineDispatcher() |
|
|
|
Executors.newFixedThreadPool(min(threadCount, 8)).asCoroutineDispatcher() |
|
|
|
private var tasks = CompositeCoroutine() |
|
|
|
private var downloadJob: Job? = null |
|
|
|
private val bookMap = ConcurrentHashMap<String, Book>() |
|
|
|
|
|
|
|
private val bookSourceMap = ConcurrentHashMap<String, BookSource>() |
|
|
|
|
|
|
|
private val downloadMap = ConcurrentHashMap<String, CopyOnWriteArraySet<BookChapter>>() |
|
|
|
|
|
|
|
private val downloadCount = ConcurrentHashMap<String, DownloadCount>() |
|
|
|
|
|
|
|
private val finalMap = ConcurrentHashMap<String, CopyOnWriteArraySet<BookChapter>>() |
|
|
|
|
|
|
|
private val downloadingList = CopyOnWriteArraySet<String>() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Volatile |
|
|
|
|
|
|
|
private var downloadingCount = 0 |
|
|
|
|
|
|
|
private var notificationContent = appCtx.getString(R.string.starting_download) |
|
|
|
private var notificationContent = appCtx.getString(R.string.starting_download) |
|
|
|
|
|
|
|
|
|
|
|
private val notificationBuilder by lazy { |
|
|
|
private val notificationBuilder by lazy { |
|
|
@ -65,8 +43,8 @@ class CacheBookService : BaseService() { |
|
|
|
launch { |
|
|
|
launch { |
|
|
|
while (isActive) { |
|
|
|
while (isActive) { |
|
|
|
delay(1000) |
|
|
|
delay(1000) |
|
|
|
upNotification() |
|
|
|
upNotificationContent() |
|
|
|
postEvent(EventBus.UP_DOWNLOAD, downloadMap) |
|
|
|
postEvent(EventBus.UP_DOWNLOAD, "") |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
@ -87,180 +65,48 @@ class CacheBookService : BaseService() { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
override fun onDestroy() { |
|
|
|
override fun onDestroy() { |
|
|
|
tasks.clear() |
|
|
|
|
|
|
|
cachePool.close() |
|
|
|
cachePool.close() |
|
|
|
downloadMap.clear() |
|
|
|
|
|
|
|
finalMap.clear() |
|
|
|
|
|
|
|
super.onDestroy() |
|
|
|
super.onDestroy() |
|
|
|
postEvent(EventBus.UP_DOWNLOAD, downloadMap) |
|
|
|
postEvent(EventBus.UP_DOWNLOAD, "") |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private fun getBook(bookUrl: String): Book? { |
|
|
|
|
|
|
|
var book = bookMap[bookUrl] |
|
|
|
|
|
|
|
if (book == null) { |
|
|
|
|
|
|
|
synchronized(this) { |
|
|
|
|
|
|
|
book = bookMap[bookUrl] |
|
|
|
|
|
|
|
if (book == null) { |
|
|
|
|
|
|
|
book = appDb.bookDao.getBook(bookUrl) |
|
|
|
|
|
|
|
if (book == null) { |
|
|
|
|
|
|
|
removeDownload(bookUrl) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return book |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private fun getBookSource(bookUrl: String, origin: String): BookSource? { |
|
|
|
|
|
|
|
var bookSource = bookSourceMap[origin] |
|
|
|
|
|
|
|
if (bookSource == null) { |
|
|
|
|
|
|
|
synchronized(this) { |
|
|
|
|
|
|
|
bookSource = bookSourceMap[origin] |
|
|
|
|
|
|
|
if (bookSource == null) { |
|
|
|
|
|
|
|
bookSource = appDb.bookSourceDao.getBookSource(origin) |
|
|
|
|
|
|
|
if (bookSource == null) { |
|
|
|
|
|
|
|
removeDownload(bookUrl) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return bookSource |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private fun addDownloadData(bookUrl: String?, start: Int, end: Int) { |
|
|
|
private fun addDownloadData(bookUrl: String?, start: Int, end: Int) { |
|
|
|
bookUrl ?: return |
|
|
|
bookUrl ?: return |
|
|
|
if (downloadMap.containsKey(bookUrl)) { |
|
|
|
val cacheBook = CacheBook.get(bookUrl) ?: return |
|
|
|
notificationContent = getString(R.string.already_in_download) |
|
|
|
cacheBook.addDownload(start, end) |
|
|
|
upNotification() |
|
|
|
if (downloadJob == null) { |
|
|
|
toastOnUi(notificationContent) |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
downloadCount[bookUrl] = DownloadCount() |
|
|
|
|
|
|
|
execute(context = cachePool) { |
|
|
|
|
|
|
|
appDb.bookChapterDao.getChapterList(bookUrl, start, end).let { |
|
|
|
|
|
|
|
if (it.isNotEmpty()) { |
|
|
|
|
|
|
|
val chapters = CopyOnWriteArraySet<BookChapter>() |
|
|
|
|
|
|
|
chapters.addAll(it) |
|
|
|
|
|
|
|
downloadMap[bookUrl] = chapters |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
CacheBook.addLog("${getBook(bookUrl)?.name} is empty") |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
for (i in 0 until threadCount) { |
|
|
|
|
|
|
|
if (downloadingCount < threadCount) { |
|
|
|
|
|
|
|
download() |
|
|
|
download() |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private fun removeDownload(bookUrl: String?) { |
|
|
|
private fun removeDownload(bookUrl: String?) { |
|
|
|
downloadMap.remove(bookUrl) |
|
|
|
CacheBook.cacheBookMap.remove(bookUrl) |
|
|
|
finalMap.remove(bookUrl) |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private fun download() { |
|
|
|
private fun download() { |
|
|
|
downloadingCount += 1 |
|
|
|
downloadJob = launch(cachePool) { |
|
|
|
val task = Coroutine.async(this, context = cachePool) { |
|
|
|
while (isActive) { |
|
|
|
if (!isActive) return@async |
|
|
|
CacheBook.cacheBookMap.forEach { |
|
|
|
val bookChapter: BookChapter? = synchronized(this@CacheBookService) { |
|
|
|
while (CacheBook.onDownloadCount > threadCount) { |
|
|
|
downloadMap.forEach { |
|
|
|
delay(50) |
|
|
|
it.value.forEach { chapter -> |
|
|
|
|
|
|
|
if (!downloadingList.contains(chapter.url)) { |
|
|
|
|
|
|
|
downloadingList.add(chapter.url) |
|
|
|
|
|
|
|
return@synchronized chapter |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return@synchronized null |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (bookChapter == null) { |
|
|
|
|
|
|
|
postDownloading(false) |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
val book = getBook(bookChapter.bookUrl) |
|
|
|
|
|
|
|
if (book == null) { |
|
|
|
|
|
|
|
postDownloading(true) |
|
|
|
|
|
|
|
return@async |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
val bookSource = getBookSource(bookChapter.bookUrl, book.origin) |
|
|
|
|
|
|
|
if (bookSource == null) { |
|
|
|
|
|
|
|
postDownloading(true) |
|
|
|
|
|
|
|
return@async |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (!BookHelp.hasImageContent(book, bookChapter)) { |
|
|
|
|
|
|
|
WebBook.getContent(this, bookSource, book, bookChapter, context = cachePool) |
|
|
|
|
|
|
|
.timeout(60000L) |
|
|
|
|
|
|
|
.onError(cachePool) { |
|
|
|
|
|
|
|
synchronized(this) { |
|
|
|
|
|
|
|
downloadingList.remove(bookChapter.url) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
notificationContent = "getContentError${it.localizedMessage}" |
|
|
|
|
|
|
|
upNotification() |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
.onSuccess(cachePool) { |
|
|
|
|
|
|
|
synchronized(this@CacheBookService) { |
|
|
|
|
|
|
|
downloadCount[book.bookUrl]?.increaseSuccess() |
|
|
|
|
|
|
|
downloadCount[book.bookUrl]?.increaseFinished() |
|
|
|
|
|
|
|
downloadCount[book.bookUrl]?.let { |
|
|
|
|
|
|
|
upNotification( |
|
|
|
|
|
|
|
it, |
|
|
|
|
|
|
|
downloadMap[book.bookUrl]?.size, |
|
|
|
|
|
|
|
bookChapter.title |
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
val chapterMap = |
|
|
|
|
|
|
|
finalMap[book.bookUrl] |
|
|
|
|
|
|
|
?: CopyOnWriteArraySet<BookChapter>().apply { |
|
|
|
|
|
|
|
finalMap[book.bookUrl] = this |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
chapterMap.add(bookChapter) |
|
|
|
|
|
|
|
if (chapterMap.size == downloadMap[book.bookUrl]?.size) { |
|
|
|
|
|
|
|
downloadMap.remove(book.bookUrl) |
|
|
|
|
|
|
|
finalMap.remove(book.bookUrl) |
|
|
|
|
|
|
|
downloadCount.remove(book.bookUrl) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}.onFinally(cachePool) { |
|
|
|
|
|
|
|
postDownloading(true) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
//无需下载的,设置为增加成功 |
|
|
|
|
|
|
|
downloadCount[book.bookUrl]?.increaseSuccess() |
|
|
|
|
|
|
|
downloadCount[book.bookUrl]?.increaseFinished() |
|
|
|
|
|
|
|
postDownloading(true) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}.onError(cachePool) { |
|
|
|
|
|
|
|
notificationContent = "ERROR:${it.localizedMessage}" |
|
|
|
|
|
|
|
CacheBook.addLog(notificationContent) |
|
|
|
|
|
|
|
upNotification() |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
tasks.add(task) |
|
|
|
it.value.download(this, cachePool) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private fun postDownloading(hasChapter: Boolean) { |
|
|
|
|
|
|
|
downloadingCount -= 1 |
|
|
|
|
|
|
|
if (hasChapter) { |
|
|
|
|
|
|
|
download() |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
if (downloadingCount < 1) { |
|
|
|
|
|
|
|
stopDownload() |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private fun stopDownload() { |
|
|
|
private fun stopDownload() { |
|
|
|
tasks.clear() |
|
|
|
CacheBook.cacheBookMap.forEach { |
|
|
|
|
|
|
|
it.value.waitDownloadSet.clear() |
|
|
|
|
|
|
|
} |
|
|
|
stopSelf() |
|
|
|
stopSelf() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private fun upNotification( |
|
|
|
private fun upNotificationContent() { |
|
|
|
downloadCount: DownloadCount, |
|
|
|
|
|
|
|
totalCount: Int?, |
|
|
|
|
|
|
|
content: String |
|
|
|
|
|
|
|
) { |
|
|
|
|
|
|
|
notificationContent = |
|
|
|
notificationContent = |
|
|
|
"进度:" + downloadCount.downloadFinishedCount + "/" + totalCount + ",成功:" + downloadCount.successCount + "," + content |
|
|
|
"正在下载:${CacheBook.onDownloadCount}/等待中:${CacheBook.waitDownloadCount}/成功:${CacheBook.successDownloadCount}" |
|
|
|
|
|
|
|
upNotification() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -272,19 +118,4 @@ class CacheBookService : BaseService() { |
|
|
|
startForeground(AppConst.notificationIdDownload, notification) |
|
|
|
startForeground(AppConst.notificationIdDownload, notification) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
class DownloadCount { |
|
|
|
|
|
|
|
@Volatile |
|
|
|
|
|
|
|
var downloadFinishedCount = 0 // 下载完成的条目数量 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Volatile |
|
|
|
|
|
|
|
var successCount = 0 //下载成功的条目数量 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fun increaseSuccess() { |
|
|
|
|
|
|
|
++successCount |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fun increaseFinished() { |
|
|
|
|
|
|
|
++downloadFinishedCount |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |