/* * Copyright (c) 1998, 2020, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions.
*/
/* * Get system specific defines.
*/ #include"emessages.h" #include"java_md.h" #include"jli_util.h" #include"manifest_info.h" #include"wildcard.h" #include"splashscreen.h"
/* * The following environment variable is used to influence the behavior * of the jre exec'd through the SelectVersion routine. The command line * options which specify the version are not passed to the exec'd version, * because that jre may be an older version which wouldn't recognize them. * This environment variable is known to this (and later) version and serves * to suppress the version selection code. This is not only for efficiency, * but also for correctness, since any command line options have been * removed which would cause any value found in the manifest to be used. * This would be incorrect because the command line options are defined * to take precedence. * * The value associated with this environment variable is the MainClass * name from within the executable jar file (if any). This is strictly a * performance enhancement to avoid re-reading the jar file manifest. *
*/ #define ENV_ENTRY "_JAVA_VERSION_SET"
/* * Different platforms will implement this, here * pargc is a pointer to the original argc, * pargv is a pointer to the original argv, * jrepath is an accessible path to the jre as determined by the call * so_jrepath is the length of the buffer jrepath * jvmpath is an accessible path to the jvm as determined by the call * so_jvmpath is the length of the buffer jvmpath
*/ void CreateExecutionEnvironment(int *argc, char ***argv, char *jrepath, jint so_jrepath, char *jvmpath, jint so_jvmpath, char *jvmcfg, jint so_jvmcfg);
/* Reports an error message to stderr or a window as appropriate. */
JNIEXPORT void JNICALL
JLI_ReportErrorMessage(constchar * message, ...);
/* Reports a system error message to stderr or a window */
JNIEXPORT void JNICALL
JLI_ReportErrorMessageSys(constchar * message, ...);
/* Reports an error message only to stderr. */
JNIEXPORT void JNICALL
JLI_ReportMessage(constchar * message, ...);
/* Reports a message only to stdout. */ void JLI_ShowMessage(constchar * message, ...);
/* * Reports an exception which terminates the vm to stderr or a window * as appropriate.
*/
JNIEXPORT void JNICALL
JLI_ReportExceptionDescription(JNIEnv * env); void PrintMachineDependentOptions();
/* * Block current thread and continue execution in new thread.
*/ int CallJavaMainInNewThread(jlong stack_size, void* args);
/* * Functions defined in java.c and used in java_md.c.
*/
jint ReadKnownVMs(constchar *jvmcfg, jboolean speculative); char *CheckJvmType(int *argc, char ***argv, jboolean speculative); void AddOption(char *str, void *info);
jboolean IsWhiteSpaceOption(constchar* name);
jlong CurrentTimeMicros();
// Utility function defined in args.c int isTerminalOpt(char *arg);
jboolean IsJavaw();
int ContinueInNewThread(InvocationFunctions* ifn, jlong threadStackSize, int argc, char** argv, int mode, char *what, int ret);
int JVMInit(InvocationFunctions* ifn, jlong threadStackSize, int argc, char** argv, int mode, char *what, int ret);
/* * Initialize platform specific settings
*/ void InitLauncher(jboolean javaw);
/* * For MacOSX and Windows/Unix compatibility we require these * entry points, some of them may be stubbed out on Windows/Unixes.
*/ void PostJVMInit(JNIEnv *env, jclass mainClass, JavaVM *vm); void ShowSplashScreen(); void RegisterThread(); /* * this method performs additional platform specific processing and * should return JNI_TRUE to indicate the argument has been consumed, * otherwise returns JNI_FALSE to allow the calling logic to further * process the option.
*/
jboolean ProcessPlatformOption(constchar *arg);
/* * This allows for finding classes from the VM's bootstrap class loader directly, * FindClass uses the application class loader internally, this will cause * unnecessary searching of the classpath for the required classes. *
*/ typedef jclass (JNICALL FindClassFromBootLoader_t(JNIEnv *env, constchar *name));
jclass FindBootStrapClass(JNIEnv *env, constchar *classname);
jobjectArray CreateApplicationArgs(JNIEnv *env, char **strv, int argc);
jobjectArray NewPlatformStringArray(JNIEnv *env, char **strv, int strc);
jclass GetLauncherHelperClass(JNIEnv *env);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.