mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-21 02:59:05 +08:00
51d6eed48e
2002-12-19 Andrew Haley <aph@redhat.com> * java/util/natResourceBundle.cc: Include ArrayIndexOutOfBoundsException.h. (getCallingClassLoader): Don't put upper bound on stack search. Catch ArrayIndexOutOfBoundsException. From-SVN: r60348
40 lines
961 B
C++
40 lines
961 B
C++
/* Copyright (C) 2002 Free Software Foundation
|
|
|
|
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. */
|
|
|
|
// Written by Tom Tromey <tromey@redhat.com>
|
|
|
|
#include <config.h>
|
|
|
|
#include <gcj/cni.h>
|
|
#include <jvm.h>
|
|
#include <java/util/ResourceBundle.h>
|
|
#include <java/lang/SecurityManager.h>
|
|
#include <java/lang/ClassLoader.h>
|
|
#include <java/lang/Class.h>
|
|
#include <java/lang/ArrayIndexOutOfBoundsException.h>
|
|
#include <gnu/gcj/runtime/StackTrace.h>
|
|
|
|
java::lang::ClassLoader *
|
|
java::util::ResourceBundle::getCallingClassLoader ()
|
|
{
|
|
gnu::gcj::runtime::StackTrace *t = new gnu::gcj::runtime::StackTrace(6);
|
|
try
|
|
{
|
|
for (int i = 3; ; ++i)
|
|
{
|
|
jclass klass = t->classAt(i);
|
|
if (klass != NULL)
|
|
return klass->getClassLoaderInternal();
|
|
}
|
|
}
|
|
catch (::java::lang::ArrayIndexOutOfBoundsException *e)
|
|
{
|
|
}
|
|
return NULL;
|
|
}
|