Open-Source JPMS / Panama Projects?
leerho
leerho at gmail.com
Thu Mar 18 04:40:46 UTC 2021
Thank you all!
My apologies, what I wrote was a little confusing, allow me to clarify:
I am seriously looking at *redesigning* our JDK8 Library using Java Modules
(sorry, I thought JPMS was the proper term :) ) leveraging JDK16+/FMA and
completely replacing the need for Unsafe, etc. (Not just adapting our JDK8
code to access Java internals using JVM args.)
Samual & Ty, thanks for your JavaCPP & *BlueGoliath/ctype_h* references.
We also have a C++ part of our library where leveraging something like what
you have done may be useful.
Nonetheless, if there are any other readers out there with references to
open-source references to multi java module implementations (perhaps
implementing parts of Panama), it would be greatly appreciated.
Lee.
On Wed, Mar 17, 2021 at 6:40 PM Ty Young <youngty1997 at gmail.com> wrote:
> In order to use FMA with modules you just need to add:
>
>
> requires jdk.incubator.foreign;
>
>
> and for VM arguments add:
>
>
> --add-modules=jdk.incubator.foreign
>
> -Dforeign.restricted=permit
>
>
> If you want a slightly less-standard example, here is some ctype
> bindings I made:
>
>
> https://gist.github.com/BlueGoliath/cb5ac2584f4fe0d8462fc619876feecb
>
>
> It takes advantage of the fact that all function recipes are the same by
> making use of a not too long ago added feature that allows for virtual
> function MethodHandle support. As a result, the bindings are far smaller
> than it otherwise would be normally.
>
>
> My main project revolving Panama is a fairly nice cross-platform Nvidia
> GPU monitoring and management utility using Java, JavaFX, Panama, and
> NVML however it isn't Open Source.
>
>
> Hope it helps.
>
>
> On 3/17/21 5:24 PM, leerho wrote:
> > Hi,
> > Is anyone aware of an open-source project that has actually migrated
> their
> > code from Java < 9 to a multi module JPMS? Especially one that has had
> to
> > deal with access to JVM internals like *Unsafe*. If the project is also
> > implementing the Panama FMA that would be an extra bonus! :)
> >
> > It would be helpful to see a more complete example than the toy examples
> > given in most tutorials.
> >
> > Thanks,
> > Lee.
>
More information about the panama-dev
mailing list