Search in sources :

Example 1 with GetMBeanInfo

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();
}
Also used : ObjectHandles(org.graalvm.nativeimage.ObjectHandles) GetMBeanInfo(org.graalvm.compiler.hotspot.management.libgraal.annotation.JMXToLibGraal.Id.GetMBeanInfo) MBeanInfo(javax.management.MBeanInfo) JNIMethodScope(org.graalvm.jniutils.JNIMethodScope) MBeanOperationInfo(javax.management.MBeanOperationInfo) MBeanAttributeInfo(javax.management.MBeanAttributeInfo) CEntryPoint(org.graalvm.nativeimage.c.function.CEntryPoint) LinkedHashMap(java.util.LinkedHashMap) CEntryPoint(org.graalvm.nativeimage.c.function.CEntryPoint) JMXToLibGraal(org.graalvm.compiler.hotspot.management.libgraal.annotation.JMXToLibGraal)

Aggregations

LinkedHashMap (java.util.LinkedHashMap)1 MBeanAttributeInfo (javax.management.MBeanAttributeInfo)1 MBeanInfo (javax.management.MBeanInfo)1 MBeanOperationInfo (javax.management.MBeanOperationInfo)1 JMXToLibGraal (org.graalvm.compiler.hotspot.management.libgraal.annotation.JMXToLibGraal)1 GetMBeanInfo (org.graalvm.compiler.hotspot.management.libgraal.annotation.JMXToLibGraal.Id.GetMBeanInfo)1 JNIMethodScope (org.graalvm.jniutils.JNIMethodScope)1 ObjectHandles (org.graalvm.nativeimage.ObjectHandles)1 CEntryPoint (org.graalvm.nativeimage.c.function.CEntryPoint)1