use of org.graalvm.compiler.hotspot.management.libgraal.annotation.JMXToLibGraal.Id.GetMBeanInfo in project graal by oracle.
the class JMXToLibGraalEntryPoints method getMBeanInfo.
/**
* Returns the {@link MBeanInfo} encoded as a byte array using {@link OptionsEncoder}.
*/
@JMXToLibGraal(GetMBeanInfo)
@CEntryPoint(name = "Java_org_graalvm_compiler_hotspot_management_JMXToLibGraalCalls_getMBeanInfo")
@SuppressWarnings({ "try", "unused" })
static JNI.JByteArray getMBeanInfo(JNI.JNIEnv env, JNI.JClass hsClazz, @CEntryPoint.IsolateThreadContext long isolateThreadId, long handle) {
JNIMethodScope scope = LibGraalUtil.openScope(JMXToLibGraalEntryPoints.class, GetMBeanInfo, env);
try (JNIMethodScope s = scope) {
ObjectHandles globalHandles = ObjectHandles.getGlobal();
MBeanProxy<?> registration = globalHandles.get(WordFactory.pointer(handle));
MBeanInfo info = registration.getBean().getMBeanInfo();
Map<String, Object> map = new LinkedHashMap<>();
map.put("bean.class", info.getClassName());
map.put("bean.description", info.getDescription());
for (MBeanAttributeInfo attr : info.getAttributes()) {
putAttributeInfo(map, attr);
}
int opCounter = 0;
for (MBeanOperationInfo op : info.getOperations()) {
putOperationInfo(map, op, ++opCounter);
}
scope.setObjectResult(mapToRaw(env, map));
}
return scope.getObjectResult();
}
Aggregations