|
@@ -1,52 +1,46 @@
|
|
|
package eu.kanade.tachiyomi.ui.reader.loader
|
|
|
|
|
|
-import android.app.Application
|
|
|
+import android.os.Build
|
|
|
+import eu.kanade.tachiyomi.source.model.Page
|
|
|
import eu.kanade.tachiyomi.ui.reader.model.ReaderPage
|
|
|
-import org.apache.commons.compress.archivers.zip.ZipFile
|
|
|
-import org.apache.commons.compress.utils.SeekableInMemoryByteChannel
|
|
|
-import uy.kohesive.injekt.injectLazy
|
|
|
-import java.io.ByteArrayOutputStream
|
|
|
+import eu.kanade.tachiyomi.util.lang.compareToCaseInsensitiveNaturalOrder
|
|
|
+import tachiyomi.core.util.system.ImageUtil
|
|
|
import java.io.File
|
|
|
-import java.io.FileInputStream
|
|
|
+import java.nio.charset.StandardCharsets
|
|
|
+import java.util.zip.ZipFile
|
|
|
|
|
|
/**
|
|
|
* Loader used to load a chapter from a .zip or .cbz file.
|
|
|
*/
|
|
|
internal class ZipPageLoader(file: File) : PageLoader() {
|
|
|
|
|
|
- private val context: Application by injectLazy()
|
|
|
- private val tmpDir = File(context.externalCacheDir, "reader_${file.hashCode()}").also {
|
|
|
- it.deleteRecursively()
|
|
|
- it.mkdirs()
|
|
|
+ private val zip = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
|
|
|
+ ZipFile(file, StandardCharsets.ISO_8859_1)
|
|
|
+ } else {
|
|
|
+ ZipFile(file)
|
|
|
}
|
|
|
|
|
|
- init {
|
|
|
- ByteArrayOutputStream().use { byteArrayOutputStream ->
|
|
|
- FileInputStream(file).use { it.copyTo(byteArrayOutputStream) }
|
|
|
+ override var isLocal: Boolean = true
|
|
|
|
|
|
- ZipFile(SeekableInMemoryByteChannel(byteArrayOutputStream.toByteArray())).use { zip ->
|
|
|
- zip.entries.asSequence()
|
|
|
- .filterNot { it.isDirectory }
|
|
|
- .forEach { entry ->
|
|
|
- File(tmpDir, entry.name.substringAfterLast("/"))
|
|
|
- .also { it.createNewFile() }
|
|
|
- .outputStream().use { pageOutputStream ->
|
|
|
- zip.getInputStream(entry).copyTo(pageOutputStream)
|
|
|
- pageOutputStream.flush()
|
|
|
- }
|
|
|
- }
|
|
|
+ override suspend fun getPages(): List<ReaderPage> {
|
|
|
+ return zip.entries().asSequence()
|
|
|
+ .filter { !it.isDirectory && ImageUtil.isImage(it.name) { zip.getInputStream(it) } }
|
|
|
+ .sortedWith { f1, f2 -> f1.name.compareToCaseInsensitiveNaturalOrder(f2.name) }
|
|
|
+ .mapIndexed { i, entry ->
|
|
|
+ ReaderPage(i).apply {
|
|
|
+ stream = { zip.getInputStream(entry) }
|
|
|
+ status = Page.State.READY
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
+ .toList()
|
|
|
}
|
|
|
|
|
|
- override var isLocal: Boolean = true
|
|
|
-
|
|
|
- override suspend fun getPages(): List<ReaderPage> {
|
|
|
- return DirectoryPageLoader(tmpDir).getPages()
|
|
|
+ override suspend fun loadPage(page: ReaderPage) {
|
|
|
+ check(!isRecycled)
|
|
|
}
|
|
|
|
|
|
override fun recycle() {
|
|
|
super.recycle()
|
|
|
- tmpDir.deleteRecursively()
|
|
|
+ zip.close()
|
|
|
}
|
|
|
}
|