Dirty Quilt Hacks

Dirty Quilt Hacks

Mod

Gives access to a lot of reflective tooling.

Client or server CursedUtility

710 downloads
5 followers
Follow Save
90% of ad revenue goes to creators. Go ad-free while supporting creators with Modrinth Plus. Subscribe today!

A small library built as a Quilt mod which gives modders access to Unsafe (both the sun one and the jdk internal one, assuming it's exported at compile time) and easily supports runtime module exporting and trusted MethodHandles.Lookup calls.

Current features

  • Unsafe.sun() for a sun.misc.Unsafe instance
  • Unsafe.jdk() for a jdk.internal.misc.Unsafe instance (needs export — see below)
  • Unsafe.lookup() for the trusted MethodHandles.Lookup instance
  • Field getting and setting with force
  • Enum widening
  • Function accessor for allowing runtime use of JDK's internal ASM copy
  • Shortcut methods for getting MethodHandle instances through the trusted lookup
  • Runtime module exporting / opening
  • Forceful SecurityManager setting

Exporting modules

At runtime, call ModuleWidener.exportModule with either a class in the requested package, a class in the module and a string of the package, or the module instance and a string of the package.

At compile time, use javac compile arguments:

tasks.withType(JavaCompile).configureEach {
    it.options.compilerArgs << "addExports" << "TheModuleGoesHere/ThePackageToExport=ALL-UNNAMED"
    // This cannot be used with the release field. Instead use source / target compatibility fields in the java object.
}

Project members

sschr15

Owner

Details

Licensed MPL-2.0
Published 2 years ago
Updated 2 years ago