summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1fce035)
raw | patch | inline | side by side (parent: 1fce035)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sun, 22 Feb 2009 11:46:42 +0000 (12:46 +0100) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sun, 22 Feb 2009 11:46:42 +0000 (12:46 +0100) |
src/java.c | patch | blob | history |
diff --git a/src/java.c b/src/java.c
index a942cc9fdf06c2f9931aea47ac13b81b84b57489..72d3569cf8359f47a2dd46396a96e83d0724dd99 100644 (file)
--- a/src/java.c
+++ b/src/java.c
jmethodID m_config;
jmethodID m_init;
- jmethodID m_read;
jmethodID m_write;
jmethodID m_shutdown;
};
typedef struct cjni_jvm_env_s cjni_jvm_env_t;
/* }}} */
+struct cjni_callback_info_s /* {{{ */
+{
+ jclass class;
+ jobject object;
+ jmethodID method;
+};
+typedef struct cjni_callback_info_s cjni_callback_info_t;
+/* }}} */
+
/*
* Global variables
*/
*
* Mostly functions that are needed by the Java interface functions.
*/
-static void cjni_objectref_destroy (void *arg);
+static void cjni_callback_info_destroy (void *arg);
static int cjni_read (user_data_t *user_data);
/*
return (0);
} /* }}} int jtoc_value_list */
+static cjni_callback_info_t *cjni_callback_info_create (JNIEnv *jvm_env, /* {{{ */
+ jobject obj, const char *method_name, const char *signature)
+{
+ cjni_callback_info_t *cbi;
+
+ cbi = (cjni_callback_info_t *) malloc (sizeof (*cbi));
+ if (cbi == NULL)
+ {
+ ERROR ("java plugin: cjni_callback_info_create: malloc failed.");
+ return (NULL);
+ }
+ memset (cbi, 0, sizeof (*cbi));
+
+ cbi->class = (*jvm_env)->GetObjectClass (jvm_env, obj);
+ if (cbi->class == NULL)
+ {
+ ERROR ("java plugin: cjni_callback_info_create: GetObjectClass failed.");
+ free (cbi);
+ return (NULL);
+ }
+
+ cbi->object = obj;
+
+ cbi->method = (*jvm_env)->GetMethodID (jvm_env, cbi->class,
+ method_name, signature);
+ if (cbi->method == NULL)
+ {
+ ERROR ("java plugin: cjni_callback_info_create: "
+ "Cannot find the `%s' method with signature `%s'.",
+ method_name, signature);
+ free (cbi);
+ return (NULL);
+ }
+
+ (*jvm_env)->NewGlobalRef (jvm_env, obj);
+
+ return (cbi);
+} /* }}} cjni_callback_info_t cjni_callback_info_create */
+
/*
* Functions accessible from Java
*/
{
const char *c_name;
user_data_t ud;
+ cjni_callback_info_t *cbi;
c_name = (*jvm_env)->GetStringUTFChars (jvm_env, o_name, 0);
if (c_name == NULL)
return (-1);
}
- DEBUG ("java plugin: cjni_api_register_read: c_name = %s;", c_name);
+ cbi = cjni_callback_info_create (jvm_env, o_read, "Read", "()I");
+ if (cbi == NULL)
+ return (-1);
memset (&ud, 0, sizeof (ud));
- ud.data = (void *) o_read;
- ud.free_func = cjni_objectref_destroy;
-
- (*jvm_env)->NewGlobalRef (jvm_env, o_read);
+ ud.data = (void *) cbi;
+ ud.free_func = cjni_callback_info_destroy;
plugin_register_complex_read (c_name, cjni_read, &ud);
/*
* Delete a global reference, set by the various `Register*' functions.
*/
-static void cjni_objectref_destroy (void *arg) /* {{{ */
+static void cjni_callback_info_destroy (void *arg) /* {{{ */
{
JNIEnv *jni_env;
- jobject obj;
+ cjni_callback_info_t *cbi;
- DEBUG ("java plugin: cjni_objectref_destroy (arg = %p);", arg);
+ DEBUG ("java plugin: cjni_callback_info_destroy (arg = %p);", arg);
if (arg == NULL)
return;
jni_env = cjni_thread_attach ();
if (jni_env == NULL)
{
- ERROR ("java plugin: cjni_objectref_destroy: cjni_thread_attach failed.");
+ ERROR ("java plugin: cjni_callback_info_destroy: cjni_thread_attach failed.");
return;
}
- obj = (jobject) arg;
+ cbi = (cjni_callback_info_t *) arg;
+
+ (*jni_env)->DeleteGlobalRef (jni_env, cbi->object);
- (*jni_env)->DeleteGlobalRef (jni_env, obj);
+ cbi->method = NULL;
+ cbi->object = NULL;
+ cbi->class = NULL;
+ free (cbi);
cjni_thread_detach ();
-} /* }}} void cjni_objectref_destroy */
+} /* }}} void cjni_callback_info_destroy */
static int cjni_config_add_jvm_arg (oconfig_item_t *ci) /* {{{ */
{
jp->flags = 0;
jp->m_config = NULL;
jp->m_init = NULL;
- jp->m_read = NULL;
jp->m_write = NULL;
jp->m_shutdown = NULL;
return (0);
} /* }}} int cjni_shutdown */
-static int cjni_read_one_plugin (JNIEnv *jvm_env, java_plugin_t *jp) /* {{{ */
-{
- int status;
-
- if ((jp == NULL)
- || ((jp->flags & CJNI_FLAG_ENABLED) == 0)
- || (jp->m_read == NULL))
- return (0);
-
- DEBUG ("java plugin: Calling: %s.Read()", jp->class_name);
-
- status = (*jvm_env)->CallIntMethod (jvm_env, jp->object_ptr,
- jp->m_read);
- if (status != 0)
- {
- ERROR ("java plugin: cjni_read_one_plugin: "
- "Calling `Read' on an `%s' object failed with status %i.",
- jp->class_name, status);
- return (-1);
- }
-
- return (0);
-} /* }}} int cjni_read_one_plugin */
-
static int cjni_read (user_data_t *user_data) /* {{{ */
{
JNIEnv *jvm_env;
- java_plugin_t *jp;
+ cjni_callback_info_t *cbi;
int status;
if (jvm == NULL)
if (jvm_env == NULL)
return (-1);
- jp = (java_plugin_t *) user_data->data;
+ cbi = (cjni_callback_info_t *) user_data->data;
- cjni_read_one_plugin (jvm_env, jp);
+ status = (*jvm_env)->CallIntMethod (jvm_env, cbi->object,
+ cbi->method);
status = cjni_thread_detach ();
if (status != 0)
+ {
+ ERROR ("java plugin: cjni_read: cjni_thread_detach failed.");
return (-1);
+ }
- return (0);
+ return (status);
} /* }}} int cjni_read */
static int cjni_init_one_plugin (JNIEnv *jvm_env, java_plugin_t *jp) /* {{{ */
@@ -1771,12 +1803,6 @@ static int cjni_init_one_plugin (JNIEnv *jvm_env, java_plugin_t *jp) /* {{{ */
"jp->class_name = %s; jp->m_init = %p;",
jp->class_name, (void *) jp->m_init);
- jp->m_read = (*jvm_env)->GetMethodID (jvm_env, jp->class_ptr,
- "Read", "()I");
- DEBUG ("java plugin: cjni_init_one_plugin: "
- "jp->class_name = %s; jp->m_read = %p;",
- jp->class_name, (void *) jp->m_read);
-
jp->m_write = (*jvm_env)->GetMethodID (jvm_env, jp->class_ptr,
"Write", "(Lorg/collectd/api/ValueList;)I");
DEBUG ("java plugin: cjni_init_one_plugin: "