From 76508852a0241db33b2512c0b460cdf06f7e0ce5 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Thu, 5 Dec 2002 00:49:30 +0000 Subject: Makefile.in: Rebuilt. * Makefile.in: Rebuilt. * Makefile.am (nat_source_files): Added natVMSecurityManager, natResourceBundle. * java/util/ResourceBundle.java (Security): Removed. (getCallingClassLoader): Now native. * java/util/natResourceBundle.cc: New file. * java/lang/natVMSecurityManager.cc: New file. * java/lang/VMSecurityManager.java (getClassContext): Now native. From-SVN: r59840 --- libjava/java/lang/VMSecurityManager.java | 8 ++--- libjava/java/lang/natVMSecurityManager.cc | 54 +++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+), 6 deletions(-) create mode 100644 libjava/java/lang/natVMSecurityManager.cc (limited to 'libjava/java/lang') diff --git a/libjava/java/lang/VMSecurityManager.java b/libjava/java/lang/VMSecurityManager.java index fd16804..f6f0645 100644 --- a/libjava/java/lang/VMSecurityManager.java +++ b/libjava/java/lang/VMSecurityManager.java @@ -1,6 +1,6 @@ /* * java.lang.SecurityManager: part of the Java Class Libraries project. - * Copyright (C) 1998, 2001 Free Software Foundation + * Copyright (C) 1998, 2001, 2002 Free Software Foundation * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public @@ -43,11 +43,7 @@ class VMSecurityManager ** @return an array containing all the methods on classes ** on the Java execution stack. **/ - static Class[] getClassContext() - { - // FIXME: can't yet implement this for libgcj. - return new Class[0]; - } + static native Class[] getClassContext(); /** Get the current ClassLoader--the one nearest to the ** top of the stack. diff --git a/libjava/java/lang/natVMSecurityManager.cc b/libjava/java/lang/natVMSecurityManager.cc new file mode 100644 index 0000000..7b88e8a --- /dev/null +++ b/libjava/java/lang/natVMSecurityManager.cc @@ -0,0 +1,54 @@ +/* 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 + +#include + +#include +#include +#include +#include +#include +#include +#include + +JArray * +java::lang::VMSecurityManager::getClassContext () +{ + JArray *result = NULL; + gnu::gcj::runtime::StackTrace *t = new gnu::gcj::runtime::StackTrace(); + if (t) + { + int maxlen = t->length(); + + int len = 0; + while (len < maxlen) + { + jclass klass = t->classAt(len); + if (klass != NULL && klass != &java::lang::VMSecurityManager::class$ + && klass != &java::lang::SecurityManager::class$) + ++len; + } + + result = + (JArray *) _Jv_NewObjectArray (len, &java::lang::Class::class$, + NULL); + + len = 0; + while (len < maxlen) + { + jclass klass = t->classAt(len); + if (klass != NULL && klass != &java::lang::VMSecurityManager::class$ + && klass != &java::lang::SecurityManager::class$) + elements(result)[len++] = klass; + } + } + + return result; +} -- cgit v1.1