author | malenkov |
Thu, 10 Nov 2011 17:27:40 +0400 | |
changeset 11086 | 09b1d6383d0b |
parent 9035 | 1255eb81cc2f |
child 12047 | 320a714614e9 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
9035
1255eb81cc2f
7033660: Update copyright year to 2011 on any files changed in 2011
ohair
parents:
7997
diff
changeset
|
2 |
* Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
* 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 |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 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 |
* |
|
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2 | 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 |
*/ |
|
80 |
typedef jint (JNICALL *CreateJavaVM_t)(JavaVM **pvm, void **env, void *args); |
|
81 |
typedef jint (JNICALL *GetDefaultJavaVMInitArgs_t)(void *args); |
|
82 |
||
83 |
typedef struct { |
|
84 |
CreateJavaVM_t CreateJavaVM; |
|
85 |
GetDefaultJavaVMInitArgs_t GetDefaultJavaVMInitArgs; |
|
86 |
} InvocationFunctions; |
|
87 |
||
88 |
int |
|
89 |
JLI_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 |
||
106 |
jboolean |
|
107 |
LoadJavaVM(const char *jvmpath, InvocationFunctions *ifn); |
|
108 |
||
109 |
void |
|
110 |
GetXUsagePath(char *buf, jint bufsize); |
|
111 |
||
112 |
jboolean |
|
113 |
GetApplicationHome(char *buf, jint bufsize); |
|
114 |
||
115 |
#define GetArch() GetArchPath(CURRENT_DATA_MODEL) |
|
116 |
||
6005 | 117 |
/* |
118 |
* Different platforms will implement this, here |
|
119 |
* pargc is a pointer to the original argc, |
|
120 |
* pargv is a pointer to the original argv, |
|
121 |
* jrepath is an accessible path to the jre as determined by the call |
|
122 |
* so_jrepath is the length of the buffer jrepath |
|
123 |
* jvmpath is an accessible path to the jvm as determined by the call |
|
124 |
* so_jvmpath is the length of the buffer jvmpath |
|
125 |
*/ |
|
126 |
void CreateExecutionEnvironment(int *argc, char ***argv, |
|
127 |
char *jrepath, jint so_jrepath, |
|
128 |
char *jvmpath, jint so_jvmpath); |
|
129 |
||
1145
404b11752c57
6685121: (launcher) make ReportErrorMessages accessible by other launcher subsystems
ksrini
parents:
715
diff
changeset
|
130 |
/* Reports an error message to stderr or a window as appropriate. */ |
404b11752c57
6685121: (launcher) make ReportErrorMessages accessible by other launcher subsystems
ksrini
parents:
715
diff
changeset
|
131 |
void JLI_ReportErrorMessage(const char * message, ...); |
2 | 132 |
|
1145
404b11752c57
6685121: (launcher) make ReportErrorMessages accessible by other launcher subsystems
ksrini
parents:
715
diff
changeset
|
133 |
/* Reports a system error message to stderr or a window */ |
404b11752c57
6685121: (launcher) make ReportErrorMessages accessible by other launcher subsystems
ksrini
parents:
715
diff
changeset
|
134 |
void JLI_ReportErrorMessageSys(const char * message, ...); |
404b11752c57
6685121: (launcher) make ReportErrorMessages accessible by other launcher subsystems
ksrini
parents:
715
diff
changeset
|
135 |
|
404b11752c57
6685121: (launcher) make ReportErrorMessages accessible by other launcher subsystems
ksrini
parents:
715
diff
changeset
|
136 |
/* Reports an error message only to stderr. */ |
404b11752c57
6685121: (launcher) make ReportErrorMessages accessible by other launcher subsystems
ksrini
parents:
715
diff
changeset
|
137 |
void JLI_ReportMessage(const char * message, ...); |
2 | 138 |
|
139 |
/* |
|
1145
404b11752c57
6685121: (launcher) make ReportErrorMessages accessible by other launcher subsystems
ksrini
parents:
715
diff
changeset
|
140 |
* Reports an exception which terminates the vm to stderr or a window |
2 | 141 |
* as appropriate. |
142 |
*/ |
|
1145
404b11752c57
6685121: (launcher) make ReportErrorMessages accessible by other launcher subsystems
ksrini
parents:
715
diff
changeset
|
143 |
void JLI_ReportExceptionDescription(JNIEnv * env); |
2 | 144 |
void PrintMachineDependentOptions(); |
145 |
||
146 |
const char *jlong_format_specifier(); |
|
147 |
||
148 |
/* |
|
149 |
* Block current thread and continue execution in new thread |
|
150 |
*/ |
|
151 |
int ContinueInNewThread0(int (JNICALL *continuation)(void *), |
|
152 |
jlong stack_size, void * args); |
|
153 |
||
154 |
/* sun.java.launcher.* platform properties. */ |
|
155 |
void SetJavaLauncherPlatformProps(void); |
|
7997
78536cac0841
6912013: Remove the temporary launcher fix to add modules in the bootclasspath
mchung
parents:
6005
diff
changeset
|
156 |
void SetJavaCommandLineProp(char* what, int argc, char** argv); |
2 | 157 |
void SetJavaLauncherProp(void); |
158 |
||
159 |
/* |
|
160 |
* Functions defined in java.c and used in java_md.c. |
|
161 |
*/ |
|
162 |
jint ReadKnownVMs(const char *jrepath, const char * arch, jboolean speculative); |
|
163 |
char *CheckJvmType(int *argc, char ***argv, jboolean speculative); |
|
164 |
void AddOption(char *str, void *info); |
|
165 |
||
166 |
enum ergo_policy { |
|
167 |
DEFAULT_POLICY = 0, |
|
168 |
NEVER_SERVER_CLASS, |
|
169 |
ALWAYS_SERVER_CLASS |
|
170 |
}; |
|
171 |
||
172 |
const char* GetProgramName(); |
|
173 |
const char* GetDotVersion(); |
|
174 |
const char* GetFullVersion(); |
|
175 |
jboolean IsJavaArgs(); |
|
176 |
jboolean IsJavaw(); |
|
177 |
jint GetErgoPolicy(); |
|
178 |
||
179 |
jboolean ServerClassMachine(); |
|
180 |
||
7997
78536cac0841
6912013: Remove the temporary launcher fix to add modules in the bootclasspath
mchung
parents:
6005
diff
changeset
|
181 |
static int ContinueInNewThread(InvocationFunctions* ifn, |
78536cac0841
6912013: Remove the temporary launcher fix to add modules in the bootclasspath
mchung
parents:
6005
diff
changeset
|
182 |
int argc, char** argv, |
78536cac0841
6912013: Remove the temporary launcher fix to add modules in the bootclasspath
mchung
parents:
6005
diff
changeset
|
183 |
int mode, char *what, int ret); |
2 | 184 |
|
39
560da37936db
6596475: (launcher) javaw should call InitCommonControls
ksrini
parents:
2
diff
changeset
|
185 |
/* |
560da37936db
6596475: (launcher) javaw should call InitCommonControls
ksrini
parents:
2
diff
changeset
|
186 |
* Initialize platform specific settings |
560da37936db
6596475: (launcher) javaw should call InitCommonControls
ksrini
parents:
2
diff
changeset
|
187 |
*/ |
560da37936db
6596475: (launcher) javaw should call InitCommonControls
ksrini
parents:
2
diff
changeset
|
188 |
void InitLauncher(jboolean javaw); |
2 | 189 |
|
1323
e14a3b3536cd
6742159: (launcher) improve the java launching mechanism
ksrini
parents:
1145
diff
changeset
|
190 |
/* |
e14a3b3536cd
6742159: (launcher) improve the java launching mechanism
ksrini
parents:
1145
diff
changeset
|
191 |
* This allows for finding classes from the VM's bootstrap class loader directly, |
e14a3b3536cd
6742159: (launcher) improve the java launching mechanism
ksrini
parents:
1145
diff
changeset
|
192 |
* FindClass uses the application class loader internally, this will cause |
e14a3b3536cd
6742159: (launcher) improve the java launching mechanism
ksrini
parents:
1145
diff
changeset
|
193 |
* unnecessary searching of the classpath for the required classes. |
e14a3b3536cd
6742159: (launcher) improve the java launching mechanism
ksrini
parents:
1145
diff
changeset
|
194 |
* |
e14a3b3536cd
6742159: (launcher) improve the java launching mechanism
ksrini
parents:
1145
diff
changeset
|
195 |
*/ |
e14a3b3536cd
6742159: (launcher) improve the java launching mechanism
ksrini
parents:
1145
diff
changeset
|
196 |
typedef jclass (JNICALL FindClassFromBootLoader_t(JNIEnv *env, |
3834
16342ebd576d
6864028: Update the java launcher to use the new entry point JVM_FindClassFromBootLoader
mchung
parents:
1331
diff
changeset
|
197 |
const char *name)); |
1323
e14a3b3536cd
6742159: (launcher) improve the java launching mechanism
ksrini
parents:
1145
diff
changeset
|
198 |
jclass FindBootStrapClass(JNIEnv *env, const char *classname); |
2 | 199 |
#endif /* _JAVA_H_ */ |