![]() |
Web Development »
Applications & Tools »
General
Intermediate
License: The Code Project Open License (CPOL)
JVM LauncherBy jafarmlpAn article on creating a JVM launcher |
C++, Java, Windows, Visual-Studio, Dev
|
|
Advanced Search Add to IE Search |
|
|
|
||||||||||||||||
This article explains how can we create a Java Virtual Machine Launcher (like java.exe or javaw.exe). It explores how the Java Virtual Machine launches a Java application. It gives you more ideas on the JDK or JRE you are using. This launcher is very useful in Cygwin (Linux emulator) with Java Native Interface. This article assumes a basic understanding of JNI.
The standard launcher command (java or javaw.exe) in JDK or JRE is no more than a simple C program linked with the Java Virtual Machine. The launcher parses the command line arguments, loads the virtual machine, and runs Java applications through the invocation interface.
Before going further, let us discuss some of the structures and functions used to create the JVM.
The arguments to the Java Virtual Machine are defined in jni.h as follows:
typedef struct JavaVMInitArgs {
/*JVM Version .It must be JNI_VERSION_1_2 or JNI_VERSION_1_4 or JVM will
interpret pointer as a JDK1_1InitArgs*/
jint version;
/*number of JVM options*/
jint nOptions;
JavaVMOption *options; /*see definition of JavaVMOption below*/
/*JVM option status.
if JNI_TRUE, ignore options VM does not understand
otherwise return JNI_ERR if there are any unrecognized options*/
jboolean ignoreUnrecognized;
} JavaVMInitArgs;
/*Definition of JavaVMOption*/
typedef struct JavaVMOption {
char *optionString; /*a string containing the argument*/
/*extra info to the JVM.Not important.*/
void *extraInfo;
} JavaVMOption;
jint JNI_CreateJavaVM(JavaVM **p_vm, JNIEnv **p_env, void *vm_args);
The first argument is a pointer to a JavaVM pointer. The JavaVM structure can be used to attach and detach native threads to/from the virtual machine. The second argument is a pointer to a JNIEnv pointer. A JNIEnv structure is the main workhorse for JNI programming. It roughly corresponds to a particular Java thread. The JNIEnv returned from JNI_CreateJavaVM(), thus, represents the VM's main thread. The third argument is a pointer to an arbitrary pointer, and consists of the VM arguments. Here is the example code that creates a virtual machine instance:
JavaVMInitArgs vm_args;
JavaVMOption options[4];
/* disable JIT */
options[0].optionString ="-Djava.compiler=NONE";
/* user classes */
options[1].optionString = "-Djava.class.path=c:\\myclasses";
/* native lib path */
options[2].optionString = "-Djava.library.path=c:\\mylibs";
options[3].optionString = "-verbose:jni"; /* print JNI msgs */
vm_args.version = JNI_VERSION_1_2;
vm_args.options = options;
vm_args.nOptions = 4;
vm_args.ignoreUnrecognized = TRUE;
//Pointer to the function JNI_CreateJavaVM
typedef jint (JNICALL CreateJavaVM_t)(JavaVM **pvm, void **env, void *args);
//Load the jvm DLL (the jvm !)
HINSTANCE hinst = LoadLibrary("jvm.dll")
//Get the address of the function
CreateJavaVM_t *pfnCreateJavaVM = GetProcAddress(hinst, "JNI_CreateJavaVM");
//Create JVM
Int iRetval = pfnCreateJavaVM((&vm, (void **)&env,
&vm_args);
//Error handling.
if (res < 0) {
... /* error occurred
}
To launch any Java program, first we have to find out the class we specified and then we can call the main method of that class. We can pass arguments also to the Java program we are launching. The following piece of code illustrates this:
//Find the class
jclass jcJclass = psJNIEnv->FindClass(mainClassName);
//Find the main method id
jmethodID jmMainMethod =
psJNIEnv-> GetStaticMethodID(jcJclass, "main", "([Ljava/lang/String;)V");
//Call the main method.
psJNIEnv->CallStaticVoidMethod(jcJclass, jmMainMethod, joApplicationArgs);
Have you ever tried to load the libraries which are compiled under cygwin from Java? You can see that your application hangs during System.loadLibrary(). The problem is, the library built under cygwin depends on cygwin1.dll. If there's no other cygwin-using process running, then dynamically loading a DLL which depends (at load-time) on cygwin causes the process to deadlock. So we need a cygwin process to launch the JVM.
Cygwin is a Linux-like environment for Windows. It consists of two parts:
The code for this launcher is written mainly to work with eclipse. Now it handles only basic JVM arguments.
->Open a cygwin shell ->Run the compiler. (g++ cvm.cpp -o javaw)
export PATH=/cygdrive/c/tools/eclipse3.2/:$PATH
export PATH=/cygdrive/c/tutorial/jni_libs/:$PATH
Note: This launcher may not work with all JRE/JDK versions, because, the arguments to the JVM differ from version to version. I tested with j2re1.4.2_06 and it works.
| You must Sign In to use this message board. | ||||||
|
||||||
|
||||||
|
||||||
General
News
Question
Answer
Joke
Rant
Admin
Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads.
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 2 Feb 2007 Editor: Deeksha Shenoy |
Copyright 2007 by jafarmlp Everything else Copyright © CodeProject, 1999-2010 Web17 | Advertise on the Code Project |