1999-04-07 22:42:40 +08:00
|
|
|
// natRuntime.cc - Implementation of native side of Runtime class.
|
|
|
|
|
2001-03-12 15:40:17 +08:00
|
|
|
/* Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation
|
1999-04-07 22:42:40 +08:00
|
|
|
|
|
|
|
This file is part of libgcj.
|
|
|
|
|
|
|
|
This software is copyrighted work licensed under the terms of the
|
|
|
|
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
1999-09-11 06:03:10 +08:00
|
|
|
#include <gcj/cni.h>
|
1999-04-07 22:42:40 +08:00
|
|
|
#include <jvm.h>
|
|
|
|
#include <java/lang/Runtime.h>
|
1999-05-05 22:19:24 +08:00
|
|
|
#include <java/lang/UnknownError.h>
|
|
|
|
#include <java/lang/UnsatisfiedLinkError.h>
|
2000-09-05 00:55:48 +08:00
|
|
|
#include <gnu/gcj/runtime/FileDeleter.h>
|
2001-10-11 06:25:43 +08:00
|
|
|
#include <gnu/gcj/runtime/FinalizerThread.h>
|
1999-05-05 22:19:24 +08:00
|
|
|
|
2000-02-08 08:26:58 +08:00
|
|
|
#include <jni.h>
|
|
|
|
|
1999-05-05 22:19:24 +08:00
|
|
|
#ifdef USE_LTDL
|
|
|
|
#include <ltdl.h>
|
2000-01-18 03:22:20 +08:00
|
|
|
|
|
|
|
/* FIXME: we don't always need this. The next libtool will let us use
|
|
|
|
AC_LTDL_PREOPEN to see if we do. */
|
2000-09-14 15:56:28 +08:00
|
|
|
extern const lt_dlsymlist lt_preloaded_symbols[1] = { { 0, 0 } };
|
2000-02-05 04:49:27 +08:00
|
|
|
|
|
|
|
// We keep track of all the libraries loaded by this application. For
|
|
|
|
// now we use them to look up symbols for JNI. `libraries_size' holds
|
|
|
|
// the total size of the buffer. `libraries_count' is the number of
|
|
|
|
// items which are in use.
|
|
|
|
static int libraries_size;
|
|
|
|
static int libraries_count;
|
|
|
|
static lt_dlhandle *libraries;
|
|
|
|
|
|
|
|
static void
|
|
|
|
add_library (lt_dlhandle lib)
|
|
|
|
{
|
|
|
|
if (libraries_count == libraries_size)
|
|
|
|
{
|
|
|
|
int ns = libraries_size * 2;
|
|
|
|
if (ns == 0)
|
|
|
|
ns = 10;
|
|
|
|
lt_dlhandle *n = (lt_dlhandle *) _Jv_Malloc (ns * sizeof (lt_dlhandle));
|
|
|
|
if (libraries)
|
|
|
|
{
|
|
|
|
memcpy (n, libraries, libraries_size * sizeof (lt_dlhandle));
|
|
|
|
_Jv_Free (libraries);
|
|
|
|
}
|
|
|
|
libraries = n;
|
|
|
|
libraries_size = ns;
|
|
|
|
for (int i = libraries_count; i < libraries_size; ++i)
|
|
|
|
libraries[i] = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
libraries[libraries_count++] = lib;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
_Jv_FindSymbolInExecutable (const char *symname)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < libraries_count; ++i)
|
|
|
|
{
|
|
|
|
void *r = lt_dlsym (libraries[i], symname);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2001-06-16 07:22:02 +08:00
|
|
|
return NULL;
|
2000-02-05 04:49:27 +08:00
|
|
|
}
|
|
|
|
|
2001-06-03 03:40:53 +08:00
|
|
|
#else
|
|
|
|
|
|
|
|
void *
|
|
|
|
_Jv_FindSymbolInExecutable (const char *symname)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2000-02-05 04:49:27 +08:00
|
|
|
#endif /* USE_LTDL */
|
1999-04-07 22:42:40 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
java::lang::Runtime::exit (jint status)
|
|
|
|
{
|
|
|
|
checkExit (status);
|
2001-03-12 15:40:17 +08:00
|
|
|
_exit (status);
|
|
|
|
}
|
1999-04-07 22:42:40 +08:00
|
|
|
|
2001-03-12 15:40:17 +08:00
|
|
|
void
|
|
|
|
java::lang::Runtime::_exit (jint status)
|
|
|
|
{
|
1999-04-07 22:42:40 +08:00
|
|
|
// Make status right for Unix. This is perhaps strange.
|
|
|
|
if (status < 0 || status > 255)
|
|
|
|
status = 255;
|
|
|
|
|
|
|
|
if (finalize_on_exit)
|
|
|
|
_Jv_RunAllFinalizers ();
|
|
|
|
|
2000-09-05 00:55:48 +08:00
|
|
|
// Delete all files registered with File.deleteOnExit()
|
|
|
|
gnu::gcj::runtime::FileDeleter::deleteOnExitNow ();
|
|
|
|
|
1999-04-07 22:42:40 +08:00
|
|
|
::exit (status);
|
|
|
|
}
|
|
|
|
|
|
|
|
jlong
|
|
|
|
java::lang::Runtime::freeMemory (void)
|
|
|
|
{
|
|
|
|
return _Jv_GCFreeMemory ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
java::lang::Runtime::gc (void)
|
|
|
|
{
|
|
|
|
_Jv_RunGC ();
|
|
|
|
}
|
|
|
|
|
1999-05-05 22:19:24 +08:00
|
|
|
void
|
2000-02-08 08:26:58 +08:00
|
|
|
java::lang::Runtime::_load (jstring path, jboolean do_search)
|
1999-05-05 22:19:24 +08:00
|
|
|
{
|
|
|
|
JvSynchronize sync (this);
|
|
|
|
checkLink (path);
|
|
|
|
using namespace java::lang;
|
|
|
|
#ifdef USE_LTDL
|
2000-01-18 03:22:20 +08:00
|
|
|
jint len = _Jv_GetStringUTFLength (path);
|
2000-02-15 15:53:11 +08:00
|
|
|
char buf[len + 1 + 3];
|
|
|
|
int offset = 0;
|
|
|
|
#ifndef WIN32
|
|
|
|
// On Unix boxes, prefix library name with `lib', for loadLibrary.
|
|
|
|
if (do_search)
|
|
|
|
{
|
|
|
|
strcpy (buf, "lib");
|
|
|
|
offset = 3;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
jsize total = JvGetStringUTFRegion (path, 0, path->length(), &buf[offset]);
|
|
|
|
buf[offset + total] = '\0';
|
2001-10-16 16:35:17 +08:00
|
|
|
lt_dlhandle h;
|
1999-05-05 22:19:24 +08:00
|
|
|
// FIXME: make sure path is absolute.
|
2001-10-16 16:35:17 +08:00
|
|
|
{
|
|
|
|
// Synchronize on java.lang.Class. This is to protect the class chain from
|
|
|
|
// concurrent modification by class registration calls which may be run
|
|
|
|
// during the dlopen().
|
|
|
|
JvSynchronize sync (&java::lang::Class::class$);
|
|
|
|
h = do_search ? lt_dlopenext (buf) : lt_dlopen (buf);
|
|
|
|
}
|
1999-05-05 22:19:24 +08:00
|
|
|
if (h == NULL)
|
|
|
|
{
|
|
|
|
const char *msg = lt_dlerror ();
|
2000-02-15 16:51:04 +08:00
|
|
|
jstring str = path->concat (JvNewStringLatin1 (": "));
|
|
|
|
str = str->concat (JvNewStringLatin1 (msg));
|
exception.cc (java_eh_info): Make value type jthrowable.
* exception.cc (java_eh_info): Make value type jthrowable.
(_Jv_type_matcher): Remove now unneeded cast.
(_Jv_Throw): Make argument type jthrowable. Munge name
for SJLJ_EXCEPTIONS here ...
* gcj/cni.h: ... not here.
(JvThrow): Remove.
* gcj/javaprims.h (_Jv_Throw, _Jv_Sjlj_Throw): Update declarations.
* defineclass.cc, interpret.cc, jni.cc, posix-threads.cc,
prims.cc, resolve.cc, gnu/gcj/runtime/natFirstThread.cc,
gnu/gcj/xlib/natDrawable.cc, gnu/gcj/xlib/natFont.cc,
gnu/gcj/xlib/natWMSizeHints.cc, gnu/gcj/xlib/natWindowAttributes.cc,
gnu/gcj/xlib/natXImage.cc, java/io/natFile.cc,
java/io/natFileDescriptorEcos.cc, java/io/natFileDescriptorPosix.cc,
java/io/natFileDescriptorWin32.cc, java/io/natFileWin32.cc,
java/lang/natClass.cc, java/lang/natClassLoader.cc,
java/lang/natDouble.cc, java/lang/natObject.cc,
java/lang/natPosixProcess.cc, java/lang/natRuntime.cc,
java/lang/natString.cc, java/lang/natSystem.cc,
java/lang/natThread.cc, java/lang/reflect/natArray.cc,
java/lang/reflect/natConstructor.cc, java/lang/reflect/natField.cc,
java/lang/reflect/natMethod.cc, java/util/zip/natDeflater.cc,
java/util/zip/natInflater.cc:
Use throw, not JvThrow or _Jv_Throw.
From-SVN: r40838
2001-03-26 15:05:32 +08:00
|
|
|
throw new UnsatisfiedLinkError (str);
|
1999-05-05 22:19:24 +08:00
|
|
|
}
|
|
|
|
|
2000-02-10 08:17:10 +08:00
|
|
|
add_library (h);
|
|
|
|
|
2000-02-08 08:26:58 +08:00
|
|
|
void *onload = lt_dlsym (h, "JNI_OnLoad");
|
|
|
|
if (onload != NULL)
|
1999-05-05 22:19:24 +08:00
|
|
|
{
|
2000-02-19 05:22:06 +08:00
|
|
|
JavaVM *vm = _Jv_GetJavaVM ();
|
|
|
|
if (vm == NULL)
|
|
|
|
{
|
|
|
|
// FIXME: what?
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
jint vers = ((jint (*) (JavaVM *, void *)) onload) (vm, NULL);
|
2000-02-08 08:26:58 +08:00
|
|
|
if (vers != JNI_VERSION_1_1 && vers != JNI_VERSION_1_2)
|
|
|
|
{
|
|
|
|
// FIXME: unload the library.
|
exception.cc (java_eh_info): Make value type jthrowable.
* exception.cc (java_eh_info): Make value type jthrowable.
(_Jv_type_matcher): Remove now unneeded cast.
(_Jv_Throw): Make argument type jthrowable. Munge name
for SJLJ_EXCEPTIONS here ...
* gcj/cni.h: ... not here.
(JvThrow): Remove.
* gcj/javaprims.h (_Jv_Throw, _Jv_Sjlj_Throw): Update declarations.
* defineclass.cc, interpret.cc, jni.cc, posix-threads.cc,
prims.cc, resolve.cc, gnu/gcj/runtime/natFirstThread.cc,
gnu/gcj/xlib/natDrawable.cc, gnu/gcj/xlib/natFont.cc,
gnu/gcj/xlib/natWMSizeHints.cc, gnu/gcj/xlib/natWindowAttributes.cc,
gnu/gcj/xlib/natXImage.cc, java/io/natFile.cc,
java/io/natFileDescriptorEcos.cc, java/io/natFileDescriptorPosix.cc,
java/io/natFileDescriptorWin32.cc, java/io/natFileWin32.cc,
java/lang/natClass.cc, java/lang/natClassLoader.cc,
java/lang/natDouble.cc, java/lang/natObject.cc,
java/lang/natPosixProcess.cc, java/lang/natRuntime.cc,
java/lang/natString.cc, java/lang/natSystem.cc,
java/lang/natThread.cc, java/lang/reflect/natArray.cc,
java/lang/reflect/natConstructor.cc, java/lang/reflect/natField.cc,
java/lang/reflect/natMethod.cc, java/util/zip/natDeflater.cc,
java/util/zip/natInflater.cc:
Use throw, not JvThrow or _Jv_Throw.
From-SVN: r40838
2001-03-26 15:05:32 +08:00
|
|
|
throw new UnsatisfiedLinkError (JvNewStringLatin1 ("unrecognized version from JNI_OnLoad"));
|
2000-02-08 08:26:58 +08:00
|
|
|
}
|
1999-05-05 22:19:24 +08:00
|
|
|
}
|
|
|
|
#else
|
exception.cc (java_eh_info): Make value type jthrowable.
* exception.cc (java_eh_info): Make value type jthrowable.
(_Jv_type_matcher): Remove now unneeded cast.
(_Jv_Throw): Make argument type jthrowable. Munge name
for SJLJ_EXCEPTIONS here ...
* gcj/cni.h: ... not here.
(JvThrow): Remove.
* gcj/javaprims.h (_Jv_Throw, _Jv_Sjlj_Throw): Update declarations.
* defineclass.cc, interpret.cc, jni.cc, posix-threads.cc,
prims.cc, resolve.cc, gnu/gcj/runtime/natFirstThread.cc,
gnu/gcj/xlib/natDrawable.cc, gnu/gcj/xlib/natFont.cc,
gnu/gcj/xlib/natWMSizeHints.cc, gnu/gcj/xlib/natWindowAttributes.cc,
gnu/gcj/xlib/natXImage.cc, java/io/natFile.cc,
java/io/natFileDescriptorEcos.cc, java/io/natFileDescriptorPosix.cc,
java/io/natFileDescriptorWin32.cc, java/io/natFileWin32.cc,
java/lang/natClass.cc, java/lang/natClassLoader.cc,
java/lang/natDouble.cc, java/lang/natObject.cc,
java/lang/natPosixProcess.cc, java/lang/natRuntime.cc,
java/lang/natString.cc, java/lang/natSystem.cc,
java/lang/natThread.cc, java/lang/reflect/natArray.cc,
java/lang/reflect/natConstructor.cc, java/lang/reflect/natField.cc,
java/lang/reflect/natMethod.cc, java/util/zip/natDeflater.cc,
java/util/zip/natInflater.cc:
Use throw, not JvThrow or _Jv_Throw.
From-SVN: r40838
2001-03-26 15:05:32 +08:00
|
|
|
throw new UnknownError
|
|
|
|
(JvNewStringLatin1 (do_search
|
|
|
|
? "Runtime.loadLibrary not implemented"
|
|
|
|
: "Runtime.load not implemented"));
|
1999-05-05 22:19:24 +08:00
|
|
|
#endif /* USE_LTDL */
|
|
|
|
}
|
|
|
|
|
2000-01-18 03:22:20 +08:00
|
|
|
jboolean
|
|
|
|
java::lang::Runtime::loadLibraryInternal (jstring lib)
|
|
|
|
{
|
|
|
|
JvSynchronize sync (this);
|
|
|
|
using namespace java::lang;
|
|
|
|
#ifdef USE_LTDL
|
|
|
|
jint len = _Jv_GetStringUTFLength (lib);
|
|
|
|
char buf[len + 1];
|
|
|
|
jsize total = JvGetStringUTFRegion (lib, 0, lib->length(), buf);
|
|
|
|
buf[total] = '\0';
|
|
|
|
// FIXME: make sure path is absolute.
|
|
|
|
lt_dlhandle h = lt_dlopenext (buf);
|
2000-02-10 08:17:10 +08:00
|
|
|
if (h != NULL)
|
|
|
|
add_library (h);
|
2000-01-18 03:22:20 +08:00
|
|
|
return h != NULL;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif /* USE_LTDL */
|
|
|
|
}
|
|
|
|
|
1999-05-05 22:19:24 +08:00
|
|
|
void
|
|
|
|
java::lang::Runtime::init (void)
|
|
|
|
{
|
|
|
|
finalize_on_exit = false;
|
|
|
|
#ifdef USE_LTDL
|
|
|
|
lt_dlinit ();
|
2001-06-16 07:22:02 +08:00
|
|
|
lt_dlhandle self = lt_dlopen (NULL);
|
|
|
|
if (self != NULL)
|
|
|
|
add_library (self);
|
1999-05-05 22:19:24 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1999-04-07 22:42:40 +08:00
|
|
|
void
|
|
|
|
java::lang::Runtime::runFinalization (void)
|
|
|
|
{
|
2001-10-11 06:25:43 +08:00
|
|
|
gnu::gcj::runtime::FinalizerThread::finalizerReady ();
|
1999-04-07 22:42:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
jlong
|
|
|
|
java::lang::Runtime::totalMemory (void)
|
|
|
|
{
|
|
|
|
return _Jv_GCTotalMemory ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
java::lang::Runtime::traceInstructions (jboolean)
|
|
|
|
{
|
|
|
|
// Do nothing.
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
java::lang::Runtime::traceMethodCalls (jboolean)
|
|
|
|
{
|
|
|
|
// Do nothing.
|
|
|
|
}
|