Skip to content

Commit

Permalink
Make Public Suffix Database failures permanent (#7828)
Browse files Browse the repository at this point in the history
  • Loading branch information
yschimke committed Sep 15, 2023
1 parent b147d28 commit 708d89b
Showing 1 changed file with 16 additions and 14 deletions.
Expand Up @@ -203,26 +203,28 @@ class PublicSuffixDatabase {

@Throws(IOException::class)
private fun readTheList() {
var publicSuffixListBytes: ByteArray?
var publicSuffixExceptionListBytes: ByteArray?
try {
var publicSuffixListBytes: ByteArray?
var publicSuffixExceptionListBytes: ByteArray?

val resource =
val resource =
PublicSuffixDatabase::class.java.getResourceAsStream(PUBLIC_SUFFIX_RESOURCE) ?: return

GzipSource(resource.source()).buffer().use { bufferedSource ->
val totalBytes = bufferedSource.readInt()
publicSuffixListBytes = bufferedSource.readByteArray(totalBytes.toLong())
GzipSource(resource.source()).buffer().use { bufferedSource ->
val totalBytes = bufferedSource.readInt()
publicSuffixListBytes = bufferedSource.readByteArray(totalBytes.toLong())

val totalExceptionBytes = bufferedSource.readInt()
publicSuffixExceptionListBytes = bufferedSource.readByteArray(totalExceptionBytes.toLong())
}
val totalExceptionBytes = bufferedSource.readInt()
publicSuffixExceptionListBytes = bufferedSource.readByteArray(totalExceptionBytes.toLong())
}

synchronized(this) {
this.publicSuffixListBytes = publicSuffixListBytes!!
this.publicSuffixExceptionListBytes = publicSuffixExceptionListBytes!!
synchronized(this) {
this.publicSuffixListBytes = publicSuffixListBytes!!
this.publicSuffixExceptionListBytes = publicSuffixExceptionListBytes!!
}
} finally {
readCompleteLatch.countDown()
}

readCompleteLatch.countDown()
}

/** Visible for testing. */
Expand Down

0 comments on commit 708d89b

Please sign in to comment.