⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 natruntime.cc

📁 this gcc-g++-3.3.1.tar.gz is a source file of gcc, you can learn more about gcc through this codes f
💻 CC
📖 第 1 页 / 共 2 页
字号:
// natRuntime.cc - Implementation of native side of Runtime class./* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003  Free Software Foundation   This file is part of libgcj.This software is copyrighted work licensed under the terms of theLibgcj License.  Please consult the file "LIBGCJ_LICENSE" fordetails.  */#include <config.h>#include <platform.h>#include <stdlib.h>#include <gcj/cni.h>#include <jvm.h>#include <java-props.h>#include <java/lang/Long.h>#include <java/lang/Runtime.h>#include <java/lang/UnknownError.h>#include <java/lang/UnsatisfiedLinkError.h>#include <gnu/gcj/runtime/FileDeleter.h>#include <gnu/gcj/runtime/FinalizerThread.h>#include <java/io/File.h>#include <java/util/Properties.h>#include <java/util/TimeZone.h>#include <java/lang/StringBuffer.h>#include <java/lang/Process.h>#include <java/lang/ConcreteProcess.h>#include <java/lang/ClassLoader.h>#include <gnu/gcj/runtime/StackTrace.h>#include <java/lang/ArrayIndexOutOfBoundsException.h>#include <jni.h>#ifdef HAVE_PWD_H#include <pwd.h>#endif#include <errno.h>#ifdef HAVE_UNAME#include <sys/utsname.h>#endif#ifdef HAVE_LOCALE_H#include <locale.h>#endif#ifdef HAVE_LANGINFO_H#include <langinfo.h>#endif#ifdef USE_LTDL#include <ltdl.h>/* FIXME: we don't always need this.  The next libtool will let us use   AC_LTDL_PREOPEN to see if we do.  */extern const lt_dlsymlist lt_preloaded_symbols[1] = { { 0, 0 } };// 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 voidadd_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;    }  return NULL;}void_Jv_SetDLLSearchPath (const char *path){  lt_dlsetsearchpath (path);}#elsevoid *_Jv_FindSymbolInExecutable (const char *){  return NULL;}void_Jv_SetDLLSearchPath (const char *){  // Nothing.}#endif /* USE_LTDL */voidjava::lang::Runtime::exitInternal (jint status){  // Make status right for Unix.  This is perhaps strange.  if (status < 0 || status > 255)    status = 255;  if (finalizeOnExit)    _Jv_RunAllFinalizers ();  // Delete all files registered with File.deleteOnExit()  gnu::gcj::runtime::FileDeleter::deleteOnExitNow ();  ::exit (status);}jlongjava::lang::Runtime::freeMemory (void){  return _Jv_GCFreeMemory ();}voidjava::lang::Runtime::gc (void){  _Jv_RunGC ();}voidjava::lang::Runtime::_load (jstring path, jboolean do_search){  JvSynchronize sync (this);  using namespace java::lang;#ifdef USE_LTDL  jint len = _Jv_GetStringUTFLength (path);  char buf[len + 1 + strlen (_Jv_platform_solib_prefix)	   + strlen (_Jv_platform_solib_suffix)];  int offset = 0;  if (do_search)    {      strcpy (buf, _Jv_platform_solib_prefix);      offset = strlen (_Jv_platform_solib_prefix);    }  jsize total = JvGetStringUTFRegion (path, 0, path->length(), &buf[offset]);  buf[offset + total] = '\0';  char *lib_name = buf;  if (do_search)    {      ClassLoader *sys = ClassLoader::getSystemClassLoader();      ClassLoader *look = NULL;      gnu::gcj::runtime::StackTrace *t = new gnu::gcj::runtime::StackTrace(10);      try      	{	  for (int i = 0; i < 10; ++i)	    {	      jclass klass = t->classAt(i);	      if (klass != NULL)		{		  ClassLoader *loader = klass->getClassLoaderInternal();		  if (loader != NULL && loader != sys)		    {		      look = loader;		      break;		    }		}	    }	}      catch (::java::lang::ArrayIndexOutOfBoundsException *e)	{	}      if (look != NULL)	{	  // Don't include solib prefix in string passed to	  // findLibrary.	  jstring name = look->findLibrary(JvNewStringUTF(&buf[offset]));	  if (name != NULL)	    {	      len = _Jv_GetStringUTFLength (name);	      lib_name = (char *) _Jv_AllocBytes(len + 1);	      total = JvGetStringUTFRegion (name, 0,					    name->length(), lib_name);	      lib_name[total] = '\0';	      // Don't append suffixes any more; we have the full file	      // name.	      do_search = false;	    }	}    }  lt_dlhandle h;  // FIXME: make sure path is absolute.  {    // 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 (lib_name) : lt_dlopen (lib_name);  }  if (h == NULL)    {      const char *msg = lt_dlerror ();      jstring str = path->concat (JvNewStringLatin1 (": "));      str = str->concat (JvNewStringLatin1 (msg));      throw new UnsatisfiedLinkError (str);    }  add_library (h);  void *onload = lt_dlsym (h, "JNI_OnLoad");#ifdef WIN32  // On Win32, JNI_OnLoad is an "stdcall" function taking two pointers  // (8 bytes) as arguments.  It could also have been exported as  // "JNI_OnLoad@8" (MinGW) or "_JNI_OnLoad@8" (MSVC).  if (onload == NULL)    {      onload = lt_dlsym (h, "JNI_OnLoad@8");      if (onload == NULL)	onload = lt_dlsym (h, "_JNI_OnLoad@8");    }#endif /* WIN32 */  if (onload != NULL)    {      JavaVM *vm = _Jv_GetJavaVM ();      if (vm == NULL)	{	  // FIXME: what?	  return;	}      jint vers = ((jint (JNICALL *) (JavaVM *, void *)) onload) (vm, NULL);      if (vers != JNI_VERSION_1_1 && vers != JNI_VERSION_1_2	  && vers != JNI_VERSION_1_4)	{	  // FIXME: unload the library.	  throw new UnsatisfiedLinkError (JvNewStringLatin1 ("unrecognized version from JNI_OnLoad"));	}    }#else  throw new UnknownError    (JvNewStringLatin1 (do_search			? "Runtime.loadLibrary not implemented"			: "Runtime.load not implemented"));#endif /* USE_LTDL */}jbooleanjava::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);  if (h != NULL)    add_library (h);  return h != NULL;#else  return false;#endif /* USE_LTDL */}voidjava::lang::Runtime::init (void){#ifdef USE_LTDL  lt_dlinit ();  lt_dlhandle self = lt_dlopen (NULL);  if (self != NULL)    add_library (self);#endif}voidjava::lang::Runtime::runFinalization (void){  gnu::gcj::runtime::FinalizerThread::finalizerReady ();}jlongjava::lang::Runtime::totalMemory (void){  return _Jv_GCTotalMemory ();}jlongjava::lang::Runtime::maxMemory (void){  // We don't have a maximum.  FIXME: we might if we ask the GC for  // one.  return Long::MAX_VALUE;}voidjava::lang::Runtime::traceInstructions (jboolean){  // Do nothing.}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -