/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 8010117
* @summary Verify if CallerSensitive methods are annotated with
* sun.reflect.CallerSensitive annotation
* @build CallerSensitiveFinder MethodFinder ClassFileReader
*/
private static boolean verbose = false;
int i = 0;
verbose = true;
} else {
}
}
}
}
" caller-sensitive methods are missing @CallerSensitive annotation");
}
}
super(methods);
}
{
java.lang.reflect.Method m = cls.getDeclaredMethod("isCallerSensitiveMethod", Class.class, String.class);
m.setAccessible(true);
return m;
}
try {
false,
} catch (ClassNotFoundException|IllegalAccessException e) {
throw new RuntimeException(e);
} catch (InvocationTargetException e) {
throw new RuntimeException(e.getCause());
}
}
{
// for each ClassFile
// parse constant pool to find matching method refs
// parse each method (caller)
// - visit and find method references matching the given method name
}
}
return csMethodsMissingAnnotation;
}
throws ConstantPoolException
{
int index = 0;
return true;
}
}
}
return false;
}
throws ConstantPoolException
{
} else if (verbose) {
}
} else if (verbose) {
}
}
}
}
});
return task;
}
}
}
static class PlatformClassPath {
// skip <javahome>/lib
// either a JRE or a jdk build image
// jdk build outputdir
}
// add other JAR files
} else {
}
return result;
}
throws IOException {
return FileVisitResult.CONTINUE;
} else {
// skip other cobundled JAR files
return FileVisitResult.SKIP_SUBTREE;
}
}
throws IOException {
// parse alt-rt.jar as well
}
return FileVisitResult.CONTINUE;
}
});
return result;
}
}
}