Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try setting JAVA_STARTED_ON_FIRST_THREAD_pid environment variable on macOS #185

Open
ctrueden opened this issue Apr 9, 2022 · 2 comments
Assignees
Labels
enhancement New feature or request macos-gui
Milestone

Comments

@ctrueden
Copy link
Member

ctrueden commented Apr 9, 2022

The node-java project, which allows to embed Java and wrap its classes from inside a node.js app, has an analogous problem with AWT on macOS. The relevant issue is joeferner/node-java#21. But there is a comment saying you can set an environment variable JAVA_STARTED_ON_FIRST_THREAD_pid=1 where pid is the process ID of the parent process, and then everything magically works. Let's try it!

@ctrueden ctrueden self-assigned this Apr 9, 2022
@ctrueden ctrueden added this to the paper milestone Apr 9, 2022
@ctrueden
Copy link
Member Author

I tested this by commenting out the if macos and mode == Mode.INTERACTIVE prohibition in imagej.init, and then doing:

import os
os.environ['JAVA_STARTED_ON_FIRST_THREAD_pid'] = str(os.getpid())
ij = imagej.init(mode='interactive')
ij.ui().showUI()

It almost works! There is just one problem: the GUI never actually appears. But it doesn't hang. Java is working under the hood, including the AWT subsystem.

That's all I have time for now, but it might be progress.

@ctrueden ctrueden modified the milestones: paper, unscheduled Apr 19, 2022
@ctrueden ctrueden changed the title Try setting JAVA_STARTED_ON_FIRST_THREAD_pid environment variable on macoS Try setting JAVA_STARTED_ON_FIRST_THREAD_pid environment variable on macOS Apr 19, 2022
@ctrueden ctrueden added enhancement New feature or request macos-gui labels Jun 23, 2023
@ctrueden
Copy link
Member Author

Relatedly, there is a flag you can pass to Java directly,-XstartOnFirstThread, which might be the same thing. Need to try it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request macos-gui
Projects
None yet
Development

No branches or pull requests

1 participant