Skip to content

Commit 377f2e5

Browse files
committedApr 26, 2024
8329862: libjli GetApplicationHome cleanups and enhance jli tracing
Reviewed-by: clanger, stuefe
1 parent 006f090 commit 377f2e5

File tree

2 files changed

+10
-38
lines changed

2 files changed

+10
-38
lines changed
 

‎src/java.base/unix/native/libjli/java_md.c

+5-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1998, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1998, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -495,27 +495,19 @@ GetJREPath(char *path, jint pathsize, jboolean speculative)
495495
char libjava[MAXPATHLEN];
496496
struct stat s;
497497

498+
JLI_TraceLauncher("Attempt to get JRE path from launcher executable path\n");
499+
498500
if (GetApplicationHome(path, pathsize)) {
499501
/* Is JRE co-located with the application? */
500502
JLI_Snprintf(libjava, sizeof(libjava), "%s/lib/" JAVA_DLL, path);
501503
if (access(libjava, F_OK) == 0) {
502504
JLI_TraceLauncher("JRE path is %s\n", path);
503505
return JNI_TRUE;
504506
}
505-
/* ensure storage for path + /jre + NULL */
506-
if ((JLI_StrLen(path) + 4 + 1) > (size_t) pathsize) {
507-
JLI_TraceLauncher("Insufficient space to store JRE path\n");
508-
return JNI_FALSE;
509-
}
510-
/* Does the app ship a private JRE in <apphome>/jre directory? */
511-
JLI_Snprintf(libjava, sizeof(libjava), "%s/jre/lib/" JAVA_DLL, path);
512-
if (access(libjava, F_OK) == 0) {
513-
JLI_StrCat(path, "/jre");
514-
JLI_TraceLauncher("JRE path is %s\n", path);
515-
return JNI_TRUE;
516-
}
517507
}
518508

509+
JLI_TraceLauncher("Attempt to get JRE path from shared lib of the image\n");
510+
519511
if (GetApplicationHomeFromDll(path, pathsize)) {
520512
JLI_Snprintf(libjava, sizeof(libjava), "%s/lib/" JAVA_DLL, path);
521513
if (stat(libjava, &s) == 0) {

‎src/java.base/windows/native/libjli/java_md.c

+5-25
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -49,10 +49,6 @@ static jboolean GetJVMPath(const char *jrepath, const char *jvmtype,
4949
char *jvmpath, jint jvmpathsize);
5050
static jboolean GetJREPath(char *path, jint pathsize);
5151

52-
#ifdef USE_REGISTRY_LOOKUP
53-
jboolean GetPublicJREHome(char *buf, jint bufsize);
54-
#endif
55-
5652
/* We supports warmup for UI stack that is performed in parallel
5753
* to VM initialization.
5854
* This helps to improve startup of UI application as warmup phase
@@ -300,27 +296,19 @@ GetJREPath(char *path, jint pathsize)
300296
char javadll[MAXPATHLEN];
301297
struct stat s;
302298

299+
JLI_TraceLauncher("Attempt to get JRE path from launcher executable path\n");
300+
303301
if (GetApplicationHome(path, pathsize)) {
304302
/* Is JRE co-located with the application? */
305303
JLI_Snprintf(javadll, sizeof(javadll), "%s\\bin\\" JAVA_DLL, path);
306304
if (stat(javadll, &s) == 0) {
307305
JLI_TraceLauncher("JRE path is %s\n", path);
308306
return JNI_TRUE;
309307
}
310-
/* ensure storage for path + \jre + NULL */
311-
if ((JLI_StrLen(path) + 4 + 1) > (size_t) pathsize) {
312-
JLI_TraceLauncher("Insufficient space to store JRE path\n");
313-
return JNI_FALSE;
314-
}
315-
/* Does this app ship a private JRE in <apphome>\jre directory? */
316-
JLI_Snprintf(javadll, sizeof (javadll), "%s\\jre\\bin\\" JAVA_DLL, path);
317-
if (stat(javadll, &s) == 0) {
318-
JLI_StrCat(path, "\\jre");
319-
JLI_TraceLauncher("JRE path is %s\n", path);
320-
return JNI_TRUE;
321-
}
322308
}
323309

310+
JLI_TraceLauncher("Attempt to get JRE path from shared lib of the image\n");
311+
324312
/* Try getting path to JRE from path to JLI.DLL */
325313
if (GetApplicationHomeFromDll(path, pathsize)) {
326314
JLI_Snprintf(javadll, sizeof(javadll), "%s\\bin\\" JAVA_DLL, path);
@@ -330,14 +318,6 @@ GetJREPath(char *path, jint pathsize)
330318
}
331319
}
332320

333-
#ifdef USE_REGISTRY_LOOKUP
334-
/* Lookup public JRE using Windows registry. */
335-
if (GetPublicJREHome(path, pathsize)) {
336-
JLI_TraceLauncher("JRE path is %s\n", path);
337-
return JNI_TRUE;
338-
}
339-
#endif
340-
341321
JLI_ReportErrorMessage(JRE_ERROR8 JAVA_DLL);
342322
return JNI_FALSE;
343323
}

0 commit comments

Comments
 (0)
Please sign in to comment.