blob: 23871b5d2a1a045285a52da918417349e846935a [file] [log] [blame]
duke6e45e102007-12-01 00:00:00 +00001/*
xdonod10b8cf2008-07-02 12:55:45 -07002 * Copyright 1998-2008 Sun Microsystems, Inc. All Rights Reserved.
duke6e45e102007-12-01 00:00:00 +00003 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Sun designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25
26#ifndef _JAVA_H_
27#define _JAVA_H_
28
29#include <stdio.h>
30#include <stdlib.h>
31#include <string.h>
32#include <limits.h>
33
34#include <jni.h>
35#include <jvm.h>
36
37/*
38 * Get system specific defines.
39 */
40#include "emessages.h"
41#include "java_md.h"
42#include "jli_util.h"
43
44#include "manifest_info.h"
45#include "version_comp.h"
46#include "wildcard.h"
47#include "splashscreen.h"
48
49# define KB (1024UL)
50# define MB (1024UL * KB)
51# define GB (1024UL * MB)
52
53#define CURRENT_DATA_MODEL (CHAR_BIT * sizeof(void*))
54
55/*
56 * The following environment variable is used to influence the behavior
57 * of the jre exec'd through the SelectVersion routine. The command line
58 * options which specify the version are not passed to the exec'd version,
59 * because that jre may be an older version which wouldn't recognize them.
60 * This environment variable is known to this (and later) version and serves
61 * to suppress the version selection code. This is not only for efficiency,
62 * but also for correctness, since any command line options have been
63 * removed which would cause any value found in the manifest to be used.
64 * This would be incorrect because the command line options are defined
65 * to take precedence.
66 *
67 * The value associated with this environment variable is the MainClass
68 * name from within the executable jar file (if any). This is strictly a
69 * performance enhancement to avoid re-reading the jar file manifest.
70 *
71 */
72#define ENV_ENTRY "_JAVA_VERSION_SET"
73
74#define SPLASH_FILE_ENV_ENTRY "_JAVA_SPLASH_FILE"
75#define SPLASH_JAR_ENV_ENTRY "_JAVA_SPLASH_JAR"
76
77/*
78 * Pointers to the needed JNI invocation API, initialized by LoadJavaVM.
79 */
80typedef jint (JNICALL *CreateJavaVM_t)(JavaVM **pvm, void **env, void *args);
81typedef jint (JNICALL *GetDefaultJavaVMInitArgs_t)(void *args);
82
83typedef struct {
84 CreateJavaVM_t CreateJavaVM;
85 GetDefaultJavaVMInitArgs_t GetDefaultJavaVMInitArgs;
86} InvocationFunctions;
87
88int
89JLI_Launch(int argc, char ** argv, /* main argc, argc */
90 int jargc, const char** jargv, /* java args */
91 int appclassc, const char** appclassv, /* app classpath */
92 const char* fullversion, /* full version defined */
93 const char* dotversion, /* dot version defined */
94 const char* pname, /* program name */
95 const char* lname, /* launcher name */
96 jboolean javaargs, /* JAVA_ARGS */
97 jboolean cpwildcard, /* classpath wildcard */
98 jboolean javaw, /* windows-only javaw */
99 jint ergo_class /* ergnomics policy */
100);
101
102/*
103 * Prototypes for launcher functions in the system specific java_md.c.
104 */
105
106jboolean
107LoadJavaVM(const char *jvmpath, InvocationFunctions *ifn);
108
109void
110GetXUsagePath(char *buf, jint bufsize);
111
112jboolean
113GetApplicationHome(char *buf, jint bufsize);
114
115#define GetArch() GetArchPath(CURRENT_DATA_MODEL)
116
117void CreateExecutionEnvironment(int *_argc,
118 char ***_argv,
119 char jrepath[],
120 jint so_jrepath,
121 char jvmpath[],
122 jint so_jvmpath,
123 char **original_argv);
ksrini0e817162008-08-26 10:21:20 -0700124/* Reports an error message to stderr or a window as appropriate. */
125void JLI_ReportErrorMessage(const char * message, ...);
126
127/* Reports a system error message to stderr or a window */
128void JLI_ReportErrorMessageSys(const char * message, ...);
129
130/* Reports an error message only to stderr. */
131void JLI_ReportMessage(const char * message, ...);
duke6e45e102007-12-01 00:00:00 +0000132
133/*
ksrini0e817162008-08-26 10:21:20 -0700134 * Reports an exception which terminates the vm to stderr or a window
duke6e45e102007-12-01 00:00:00 +0000135 * as appropriate.
136 */
ksrini0e817162008-08-26 10:21:20 -0700137void JLI_ReportExceptionDescription(JNIEnv * env);
duke6e45e102007-12-01 00:00:00 +0000138void PrintMachineDependentOptions();
139
140const char *jlong_format_specifier();
141
142/*
143 * Block current thread and continue execution in new thread
144 */
145int ContinueInNewThread0(int (JNICALL *continuation)(void *),
146 jlong stack_size, void * args);
147
148/* sun.java.launcher.* platform properties. */
149void SetJavaLauncherPlatformProps(void);
150void SetJavaCommandLineProp(char* classname, char* jarfile, int argc, char** argv);
151void SetJavaLauncherProp(void);
152
153/*
154 * Functions defined in java.c and used in java_md.c.
155 */
156jint ReadKnownVMs(const char *jrepath, const char * arch, jboolean speculative);
157char *CheckJvmType(int *argc, char ***argv, jboolean speculative);
158void AddOption(char *str, void *info);
159
160enum ergo_policy {
161 DEFAULT_POLICY = 0,
162 NEVER_SERVER_CLASS,
163 ALWAYS_SERVER_CLASS
164};
165
166const char* GetProgramName();
167const char* GetDotVersion();
168const char* GetFullVersion();
169jboolean IsJavaArgs();
170jboolean IsJavaw();
duke6e45e102007-12-01 00:00:00 +0000171jint GetErgoPolicy();
172
173jboolean ServerClassMachine();
174
175static int ContinueInNewThread(InvocationFunctions* ifn, int argc, char** argv,
176 char* jarfile, char* classname, int ret);
177
ksrini52cded22008-03-06 07:51:28 -0800178/*
179 * Initialize platform specific settings
180 */
181void InitLauncher(jboolean javaw);
duke6e45e102007-12-01 00:00:00 +0000182
183#endif /* _JAVA_H_ */