Skip to content

Commit

Permalink
fix: JarPatchBundle loading non-class files to class loader
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Jun 5, 2022
1 parent e8a131f commit 849616d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
@@ -1,5 +1,6 @@
name: Release
on:
workflow_dispatch:
push:
branches:
- main
Expand Down
Expand Up @@ -10,9 +10,21 @@ import java.util.jar.JarFile
* @param patchBundlePath The path to the patch bundle.
*/
class JarPatchBundle(patchBundlePath: String) : PatchBundle(patchBundlePath) {
fun loadPatches() = loadPatches(URLClassLoader(arrayOf(this.toURI().toURL()), null), StringIterator(
JarFile(this).entries().iterator()
) {
it.realName.replace('/', '.').replace(".class", "")
})
fun loadPatches() = loadPatches(
URLClassLoader(
arrayOf(this.toURI().toURL()),
Thread.currentThread().contextClassLoader // TODO: find out why this is required
),
StringIterator(
JarFile(this)
.entries()
.toList() // TODO: find a cleaner solution than that to filter non class files
.filter {
it.name.endsWith(".class") && !it.name.contains("$")
}
.iterator()
) {
it.realName.replace('/', '.').replace(".class", "")
}
)
}

0 comments on commit 849616d

Please sign in to comment.