readium / kotlin-toolkit

A toolkit for ebooks, audiobooks and comics written in Kotlin
https://readium.org/kotlin-toolkit
BSD 3-Clause "New" or "Revised" License
163 stars 72 forks source link

Control access to ZipFile with a mutex in StreamingZipContainer #543

Closed qnga closed 2 weeks ago

qnga commented 3 weeks ago

Resources are neither thread-safe nor coroutine-safe BUT several resources from the same container can be used at the same time (for instance by the WebView). Java ZipFile is thread-safe but the one from Apache Compress is not.

Should fix #526