我正在尝试使用JVMTI来知道GC释放了多少内存,这将用作探查器的一部分。

使用JVMTI,我可以获取GC_START和GC_END的事件。
JVMTI还提供了遍历堆的设施,从中我可以获得其确切的当前大小。
从逻辑上讲,我可以在GC_START和GC_END上获得堆大小,然后得到堆大小差。

问题是,尽管GC_START和GC_END事件处理程序功能已禁用,但大多数JVMTI功能都被禁用,并且出现JVMTI_ERROR_UNATTACHED_THREAD(115)错误。

如果我看一下JVMTI API参考
http://download.oracle.com/javase/6/docs/platform/jvmti/jvmti.html#GarbageCollectionStart

“垃圾收集开始
该事件是在VM仍停止时发送的,因此事件处理程序不得使用JNI函数,并且不得使用JVM TI函数,除非明确允许使用这些函数(请参阅原始监视器,内存管理和环境本地存储函数)。 ”

所以看来我无法从事件处理程序访问内存。

在GetCurrentHeapMemory函数中引发该错误。

代码如下
    / *
    * memory_collector.c
    *
    *创建于:2011年5月8日
    *作者:ycarel
    * /

#include "memory_collector.h"
#include <stdlib.h>
#include <memory.h>
#include "globals.h"

/* Heap object callback */
static jvmtiIterationControl JNICALL accumulateHeap(jlong class_tag, jlong size, jlong* tag_ptr, void* user_data)
//(jlong class_tag, jlong size, jlong* tag_ptr, jint length, void* user_data)
{
    jint *total;
    total = (jint *)user_data;
(*total)+=size;
return JVMTI_ITERATION_CONTINUE;
}

jlong getCurrentHeapMemory()
{
    jint totalCount=0;
    jint rc;

    /* This returns the JVMTI_ERROR_UNATTACHED_THREAD */
    rc = gdata.jvmti->IterateOverHeap((jvmtiHeapObjectFilter)0 ,&accumulateHeap,&totalCount);
            //(0, &heapCallbacks, &totalCount);
    if (rc != JVMTI_ERROR_NONE)
    {
        printf("Iterating over heap objects failed, returning error %d\n",rc);
        return MEMORY_COLL_ERROR;
    } else {
        printf("Heap memory calculated %d\n",totalCount);
    }
    return totalCount;
}

/* Callback for JVMTI_EVENT_GARBAGE_COLLECTION_START */
static void JNICALL gc_start(jvmtiEnv* jvmti_env)
{
    jint rc;
    printf("Garbage Collection Started...\n");
    rc = gdata.jvmti->RawMonitorEnter(gdata.lock);
    if (rc != JVMTI_ERROR_NONE)
    {
        printf("Failed to get lock for heap memory collection, skipping gc_start collection\n");
        return;
    }

    getCurrentHeapMemory();

    rc = gdata.jvmti->RawMonitorExit(gdata.lock);
    if (rc != JVMTI_ERROR_NONE)
    {
        printf("Failed to release lock for heap memory collection, skipping gc_start collection\n");
        return;
    }

}

/* Callback for JVMTI_EVENT_GARBAGE_COLLECTION_END */
static void JNICALL gc_end(jvmtiEnv* jvmti_env)
{
    printf("Garbage Collection Ended...\n");
}

static void JNICALL vm_init(jvmtiEnv *jvmti, JNIEnv *env, jthread thread)
{
    printf("vm_init called\n");
}

JNIEXPORT jint JNICALL Agent_OnLoad(JavaVM *vm, char *options, void *reserved)
{
    jint rc;
    jvmtiCapabilities capabilities;
    jvmtiEventCallbacks callbacks;
    /* Here goes the code for initalisation removed for making the code readble */

    memset(&callbacks, 0x00, sizeof(callbacks));
    callbacks.GarbageCollectionStart = gc_start;
    callbacks.GarbageCollectionFinish = gc_end;
    callbacks.VMInit = vm_init;

    rc = gdata.jvmti->SetEventCallbacks(&callbacks, sizeof(callbacks));
    if (rc != JVMTI_ERROR_NONE)
    {
        printf("Failed to set JVMTI event handlers, quitting\n");
        return JNI_ERR;
    }

    rc = gdata.jvmti->SetEventNotificationMode(JVMTI_ENABLE,JVMTI_EVENT_GARBAGE_COLLECTION_START,NULL);
    rc &= gdata.jvmti->SetEventNotificationMode(JVMTI_ENABLE,JVMTI_EVENT_GARBAGE_COLLECTION_FINISH,NULL);
    rc &= gdata.jvmti->SetEventNotificationMode(JVMTI_ENABLE,JVMTI_EVENT_VM_INIT,NULL);
    if (rc != JVMTI_ERROR_NONE)
    {
        printf("Failed to set JVMTI event notification mode, quitting\n");
        return JNI_ERR;
    }

    return JNI_OK;
}


我很高兴获得有关如何使用JVMTI收集此信息的信息,也将赞赏JVMTI的替代方法。

谢谢

最佳答案

由于您的回调方法getCurrentHeapMemory()是在未获取JNIEnv的本机方法上调用的,因此该线程无法访问JVM,因此无法访问JVM内部的任何对象,即该实例中的对象堆。

您可以执行以下任一操作来获得访问权限:


在调用IterateOverHeap之前,通过执行AttachCurrentThread将当前线程附加到JVM,该操作将提供对JVM中对象的访问。
另外,JVMTI接口提供了一种方便的方法来为您执行此操作(并注意分离),您可以在启动确实遍历堆的方法时使用RunAgentThread API进行利用。

09-04 13:12