Java9 incompability

The current JME3 is not capable of running in a Java9 environment.

The reason is, that the access to the cleaner methods in Bufferutils is not possible anymore, since they are now hidden.

This thread is intended for discussion how to workaround/solve this. See end of this post for current ideas (i will add more as they are proposed):

Jul 05, 2016 11:54:30 AM com.jme3.system.JmeDesktopSystem initialize
INFO: Running on jMonkeyEngine 3.2-5781
 * Branch: master
 * Git Hash: e2b6c51
 * Build Date: 2016-06-23
Jul 05, 2016 11:54:31 AM com.jme3.system.lwjgl.LwjglContext printContextInitInfo
INFO: LWJGL 2.9.3 context running on thread jME3 Main
 * Graphics Adapter: null
 * Driver Version: null
 * Scaling Factor: 1
Jul 05, 2016 11:54:31 AM com.jme3.app.LegacyApplication handleError
SEVERE: Uncaught exception thrown in Thread[jME3 Main,5,main]
java.lang.ExceptionInInitializerError
	at com.jme3.renderer.opengl.GLRenderer.<init>(GLRenderer.java:80)
	at com.jme3.system.lwjgl.LwjglContext.initContextFirstTime(LwjglContext.java:236)
	at com.jme3.system.lwjgl.LwjglContext.internalCreate(LwjglContext.java:377)
	at com.jme3.system.lwjgl.LwjglAbstractDisplay.initInThread(LwjglAbstractDisplay.java:117)
	at com.jme3.system.lwjgl.LwjglAbstractDisplay.run(LwjglAbstractDisplay.java:211)
	at java.lang.Thread.run(java.base@9-ea/Thread.java:843)
Caused by: java.lang.reflect.InaccessibleObjectException: Unable to make member of interface sun.nio.ch.DirectBuffer accessible:  module java.base does not export sun.nio.ch to unnamed module @76fb893d
	at jdk.internal.reflect.Reflection.throwInaccessibleObjectException(java.base@9-ea/Reflection.java:414)
	at java.lang.reflect.AccessibleObject.checkCanSetAccessible(java.base@9-ea/AccessibleObject.java:174)
	at java.lang.reflect.Method.checkCanSetAccessible(java.base@9-ea/Method.java:191)
	at java.lang.reflect.Method.setAccessible(java.base@9-ea/Method.java:185)
	at com.jme3.util.BufferUtils.loadMethod(BufferUtils.java:1278)
	at com.jme3.util.BufferUtils.<clinit>(BufferUtils.java:1291)
	... 6 more


Exception: java.lang.NullPointerException thrown from the UncaughtExceptionHandler in thread "jME3 Main"

1.) The simple way
Just remove the dispose method, and hope that the jdk9 is now finally capable of properly cleaning buffers

2.) The native way
Create a ultra small malloc/free wrapper that allows to abitrarly request and delete directbuffers.

3.) The selfmade memoryManagement way
At startup request a fixed size of directmemory (user specifiable). Then only give out subbuffers of this. Internally ensure that no part is given out twice without a further delete by manageing the free space. (Kinda similar how malloc itself works in C)

1 Like

I thought it used to be written that it would just ignore the call if it couldnā€™t find the methods. I may be misremembering. That seems like the safest fallback to me. Then we still get the nice behavior on Java 8 and under and can tread water and hope for the best for JDK 9 while we work out a solution there.

The other options are kind of not good. (2) means we bypass any kind of knowledge the VM might have wanted about that memory. (3) means we have to deal with heap fragmentation and all kinds of other nasty things that presumably smarter people have already thought about.

This is not a solution. The jira for fixing the broken cleaning of buffers and the broken unmap implementation of memory map files in java is about 18 years old and STILL not addressed.

I agree,

personally Iā€™m kinda in favour of the native way, that utility is pretty small, and with bullet we already have knowledge/example how to create native stuff.

And about pspeeds argument, the problem here is that the damn jvm does not even want to know, else it would work okay.

This is not a solution. The jira for fixing the broken cleaning of
buffers and the broken unmap implementation of memory map files in java
is about 18 years old and STILL not addressed.

Doesnā€™t necessarily mean it is not fixed. Just not documented. Happens sometimes :slight_smile: Just a thought,

and

You sure are bleeding edgeā€¦ but isnā€™t it a bit early to worry about this?

Itā€™s not fixed. I still have to use my workarounds in my commercial projects. I already tested the memory leaks and unreleased file handles.

2 Likes

I found something interesting: truly unusual experience of revolution / Code / [r1369] /pre_beta/src/main/java/engine/misc/DeallocationHelper.java

Surely not,
we have ~ 200 days to find a acceptable solution and maybee programm a native part.

about the deallocation helper, it uses the same concept we use, so tuer is broken as well then :slight_smile:

(You can no longer see/use the corresponding sun classes at all, not even via reflection)

Another way might be to use this
http://javadoc.lwjgl.org/org/lwjgl/system/MemoryUtil.html#memFree-java.nio.Buffer-
if a similar solution for jogl does exist.

lwjgl3 has bindings to http://www.canonware.com/jemalloc/ for buffer managementā€¦ might be worth a shot

Whatever you guys do please do a at runtime to see if itā€™s running under java 8 or below and make sure you are still using the same code we have now for those versions.

No,

whatever I do, I will try to reduce reflection usage as much as possible,
my personal favourite would be to put a interface between the bufferstuff,
and allow different implementations for buffers, as a solution working great on desktop does not necessarly make sense on android ect.

One of those solution could of course be the current implementation

Anyway this wonā€™t affect 3.0 or even 3.1 most likely it will only affect 3.2

Unless you use native libraries there is no way to avoid reflection with jdk8 unless you want leaks

Take a look:

1 Like

the diff is a bit hard to read

I noticed :frowning: basically it just replaces every call with allocateDirect to allocator.allocate and psuhes the reflection magic to a new class.

Extracted BufferAllocation to be replaceable and allow java9 to run by empirephoenix Ā· Pull Request #526 Ā· jMonkeyEngine/jmonkeyengine Ā· GitHub try with ?w=1

oh I didnā€™t know this trick! nice!

alright.
Are you completely sure that those packages will be accessible through reflection though?
Seems weird to meā€¦

interesting post from @gouessej