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

8274397: [macOS] Stop setting env. var JAVA_MAIN_CLASS_<pid> in launcher code #5724

Closed
wants to merge 6 commits into from
25 changes: 24 additions & 1 deletion src/java.base/macosx/native/libjli/java_md_macosx.m
Original file line number Diff line number Diff line change
@@ -828,18 +828,41 @@ static void MacOSXStartup(int argc, char *argv[]) {
jmethodID getCanonicalNameMID = NULL;
NULL_CHECK(getCanonicalNameMID = (*env)->GetMethodID(env, classClass, "getCanonicalName", "()Ljava/lang/String;"));

jclass strClass = NULL;
NULL_CHECK(strClass = (*env)->FindClass(env, "java/lang/String"));

jmethodID lastIndexMID = NULL;
NULL_CHECK(lastIndexMID = (*env)->GetMethodID(env, strClass, "lastIndexOf", "(I)I"));

jmethodID subStringMID = NULL;
NULL_CHECK(subStringMID = (*env)->GetMethodID(env, strClass, "substring", "(I)Ljava/lang/String;"));

jstring mainClassString = (*env)->CallObjectMethod(env, mainClass, getCanonicalNameMID);
if ((*env)->ExceptionCheck(env) || NULL == mainClassString) {
(*env)->ExceptionClear(env);
return;
}

jint lastPeriod = (*env)->CallIntMethod(env, mainClassString, lastIndexMID, (jint)'.');
if ((*env)->ExceptionCheck(env)) {
(*env)->ExceptionClear(env);
return;
}

if (lastPeriod != -1) {
mainClassString = (*env)->CallObjectMethod(env, mainClassString, subStringMID, lastPeriod+1);
if ((*env)->ExceptionCheck(env)) {
(*env)->ExceptionClear(env);
return;
}
}

/* There are multiple apple.awt.*" system properties that AWT(the desktop module)
* references that are inherited from Apple JDK.
* This inherited AWT code looks for this property and uses it for the name
* of the app as it appears in the system menu bar.
*
* Not idea if how much external code ever sets it, but use it if set, else
* No idea if how much external code ever sets it, but use it if set, else
* if not set (the high probability event) set it to the application class name.
*/
const char* propName = "apple.awt.application.name";