Merged with tip.
[cacao.git] / src / cacao / cacao.c
1 /* src/cacao/cacao.c - contains main() of cacao
2
3    Copyright (C) 1996-2005, 2006, 2007, 2008
4    CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
5
6    This file is part of CACAO.
7
8    This program is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License as
10    published by the Free Software Foundation; either version 2, or (at
11    your option) any later version.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23 */
24
25
26 #include "config.h"
27
28 #include <assert.h>
29
30 #if defined(ENABLE_JRE_LAYOUT)
31 # include <errno.h>
32 # include <libgen.h>
33 # include <unistd.h>
34 #endif
35
36 #include <stdlib.h>
37 #include <string.h>
38
39 #include "vm/types.h"
40
41 #include "native/jni.h"
42 #include "native/native.h"
43
44 #if defined(ENABLE_JVMTI)
45 # include "native/jvmti/jvmti.h"
46 # include "native/jvmti/cacaodbg.h"
47 #endif
48
49 #include "vmcore/system.h"
50
51 #include "vm/vm.h"
52
53
54 /* Defines. *******************************************************************/
55
56 #define LIBJVM_NAME    NATIVE_LIBRARY_PREFIX"jvm"NATIVE_LIBRARY_SUFFIX
57
58
59 /* forward declarations *******************************************************/
60
61 static JavaVMInitArgs *cacao_options_prepare(int argc, char **argv);
62
63
64 /* main ************************************************************************
65
66    The main program.
67    
68 *******************************************************************************/
69
70 int main(int argc, char **argv)
71 {
72 #if defined(ENABLE_LIBJVM)
73         char*       path;
74
75 # if defined(ENABLE_JRE_LAYOUT)
76         int         len;
77 # endif
78 #endif
79
80 #if defined(ENABLE_LIBJVM)      
81         /* Variables for JNI_CreateJavaVM dlopen call. */
82         void*       libjvm_handle;
83         void*       libjvm_vm_createjvm;
84         void*       libjvm_vm_run;
85         const char* lterror;
86
87         bool (*vm_createjvm)(JavaVM **, void **, void *);
88         void (*vm_run)(JavaVM *, JavaVMInitArgs *);
89 #endif
90
91         JavaVM         *vm;                 /* denotes a Java VM                  */
92         JNIEnv         *env;
93         JavaVMInitArgs *vm_args;
94
95         /* prepare the options */
96
97         vm_args = cacao_options_prepare(argc, argv);
98         
99         /* load and initialize a Java VM, return a JNI interface pointer in env */
100
101 #if defined(ENABLE_LIBJVM)
102 # if defined(ENABLE_JRE_LAYOUT)
103         /* SUN also uses a buffer of 4096-bytes (strace is your friend). */
104
105         path = malloc(sizeof(char) * 4096);
106
107         if (readlink("/proc/self/exe", path, 4095) == -1) {
108                 fprintf(stderr, "main: readlink failed: %s\n", strerror(errno));
109                 abort();
110         }
111
112         /* get the path of the current executable */
113
114         path = dirname(path);
115         len  = strlen(path) + strlen("/../lib/"LIBJVM_NAME) + strlen("0");
116
117         if (len > 4096) {
118                 fprintf(stderr, "main: libjvm name to long for buffer\n");
119                 abort();
120         }
121
122         /* concatinate the library name */
123
124         strcat(path, "/../lib/"LIBJVM_NAME);
125 # else
126         path = CACAO_LIBDIR"/"LIBJVM_NAME;
127 # endif
128
129         /* First try to open where dlopen searches, e.g. LD_LIBRARY_PATH.
130            If not found, try the absolute path. */
131
132         libjvm_handle = system_dlopen(LIBJVM_NAME, RTLD_NOW);
133
134         if (libjvm_handle == NULL) {
135                 /* save the error message */
136
137                 lterror = strdup(system_dlerror());
138
139                 libjvm_handle = system_dlopen(path, RTLD_NOW);
140
141                 if (libjvm_handle == NULL) {
142                         /* print the first error message too */
143
144                         fprintf(stderr, "main: system_dlopen failed: %s\n", lterror);
145
146                         /* and now the current one */
147
148                         fprintf(stderr, "main: system_dlopen failed: %s\n",
149                                         system_dlerror());
150                         abort();
151                 }
152
153                 /* free the error string */
154
155                 free((void *) lterror);
156         }
157
158         libjvm_vm_createjvm = system_dlsym(libjvm_handle, "vm_createjvm");
159
160         if (libjvm_vm_createjvm == NULL) {
161                 fprintf(stderr, "main: lt_dlsym failed: %s\n", system_dlerror());
162                 abort();
163         }
164
165         vm_createjvm =
166                 (bool (*)(JavaVM **, void **, void *)) (ptrint) libjvm_vm_createjvm;
167 #endif
168
169         /* create the Java VM */
170
171         (void) vm_createjvm(&vm, (void *) &env, vm_args);
172
173 #if defined(ENABLE_JVMTI)
174 # error This should be a JVMTI function.
175         Mutex_init(&dbgcomlock);
176         if (jvmti) jvmti_set_phase(JVMTI_PHASE_START);
177 #endif
178
179 #if defined(ENABLE_LIBJVM)
180         libjvm_vm_run = system_dlsym(libjvm_handle, "vm_run");
181
182         if (libjvm_vm_run == NULL) {
183                 fprintf(stderr, "main: system_dlsym failed: %s\n", system_dlerror());
184                 abort();
185         }
186
187         vm_run = (void (*)(JavaVM *, JavaVMInitArgs *)) (ptrint) libjvm_vm_run;
188 #endif
189
190         /* run the VM */
191
192         vm_run(vm, vm_args);
193
194         /* keep compiler happy */
195
196         return 0;
197 }
198
199
200 /* cacao_options_prepare *******************************************************
201
202    Prepare the JavaVMInitArgs.
203
204 *******************************************************************************/
205
206 static JavaVMInitArgs *cacao_options_prepare(int argc, char **argv)
207 {
208         JavaVMInitArgs *vm_args;
209         s4              i;
210
211         vm_args = malloc(sizeof(JavaVMInitArgs));
212
213         vm_args->version            = JNI_VERSION_1_2;
214         vm_args->nOptions           = argc - 1;
215         vm_args->options            = malloc(sizeof(JavaVMOption) * argc);
216         vm_args->ignoreUnrecognized = JNI_FALSE;
217
218         for (i = 1; i < argc; i++)
219                 vm_args->options[i - 1].optionString = argv[i];
220
221         return vm_args;
222 }
223
224
225 /*
226  * These are local overrides for various environment variables in Emacs.
227  * Please do not remove this and leave it at the end of the file, where
228  * Emacs will automagically detect them.
229  * ---------------------------------------------------------------------
230  * Local variables:
231  * mode: c
232  * indent-tabs-mode: t
233  * c-basic-offset: 4
234  * tab-width: 4
235  * End:
236  */