mirror of
https://github.com/gedoor/legado.git
synced 2025-08-10 00:52:30 +00:00
优化
This commit is contained in:
@@ -1,10 +1,7 @@
|
||||
package io.legado.app.ui.book.read.page.provider
|
||||
|
||||
import android.graphics.Bitmap
|
||||
import com.bumptech.glide.load.DataSource
|
||||
import com.bumptech.glide.load.engine.GlideException
|
||||
import com.bumptech.glide.request.RequestListener
|
||||
import com.bumptech.glide.request.target.Target
|
||||
import android.util.Size
|
||||
import io.legado.app.R
|
||||
import io.legado.app.data.entities.Book
|
||||
import io.legado.app.data.entities.BookSource
|
||||
@@ -12,24 +9,66 @@ import io.legado.app.help.BookHelp
|
||||
import io.legado.app.help.coroutine.Coroutine
|
||||
import io.legado.app.help.glide.ImageLoader
|
||||
import io.legado.app.model.localBook.EpubFile
|
||||
import io.legado.app.utils.FileUtils
|
||||
import io.legado.app.utils.BitmapUtils
|
||||
import io.legado.app.utils.FileUtils
|
||||
import kotlinx.coroutines.runBlocking
|
||||
import kotlinx.coroutines.suspendCancellableCoroutine
|
||||
import splitties.init.appCtx
|
||||
import java.io.File
|
||||
import java.io.FileOutputStream
|
||||
import kotlin.coroutines.resume
|
||||
|
||||
object ImageProvider {
|
||||
|
||||
private val errorBitmap: Bitmap? by lazy {
|
||||
BitmapUtils.decodeBitmap(
|
||||
appCtx,
|
||||
R.drawable.image_loading_error,
|
||||
ChapterProvider.visibleWidth,
|
||||
ChapterProvider.visibleHeight
|
||||
appCtx,
|
||||
R.drawable.image_loading_error,
|
||||
ChapterProvider.visibleWidth,
|
||||
ChapterProvider.visibleHeight
|
||||
)
|
||||
}
|
||||
|
||||
private suspend fun cacheImage(
|
||||
book: Book,
|
||||
src: String,
|
||||
bookSource: BookSource?
|
||||
): File {
|
||||
val vFile = BookHelp.getImage(book, src)
|
||||
if (!vFile.exists()) {
|
||||
if (book.isEpub()) {
|
||||
EpubFile.getImage(book, src)?.use { input ->
|
||||
val newFile = FileUtils.createFileIfNotExist(vFile.absolutePath)
|
||||
@Suppress("BlockingMethodInNonBlockingContext")
|
||||
FileOutputStream(newFile).use { output ->
|
||||
input.copyTo(output)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
BookHelp.saveImage(bookSource, book, src)
|
||||
}
|
||||
}
|
||||
return vFile
|
||||
}
|
||||
|
||||
suspend fun getImageSize(
|
||||
book: Book,
|
||||
src: String,
|
||||
bookSource: BookSource?
|
||||
): Size {
|
||||
val file = cacheImage(book, src, bookSource)
|
||||
return suspendCancellableCoroutine { block ->
|
||||
kotlin.runCatching {
|
||||
ImageLoader.loadBitmap(appCtx, file.absolutePath).submit()
|
||||
.getSize { width, height ->
|
||||
block.resume(Size(width, height))
|
||||
}
|
||||
}.onFailure {
|
||||
block.cancel(it)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun getImage(
|
||||
book: Book,
|
||||
src: String,
|
||||
@@ -51,14 +90,14 @@ object ImageProvider {
|
||||
}
|
||||
}
|
||||
}
|
||||
return try {
|
||||
return try {
|
||||
ImageLoader.loadBitmap(appCtx, vFile.absolutePath).submit().get()
|
||||
} catch (e: Exception) {
|
||||
} catch (e: Exception) {
|
||||
Coroutine.async { vFile.delete() }
|
||||
//must call this method on a background thread
|
||||
//ImageLoader.loadBitmap(appCtx, R.drawable.image_loading_error).submit().get()
|
||||
errorBitmap
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user