2 * collectd - src/java.c
3 * Copyright (C) 2009 Florian octo Forster
4 * Copyright (C) 2008 Justo Alonso Achaques
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; only version 2 of the License is applicable.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * Florian octo Forster <octo at collectd.org>
21 * Justo Alonso Achaques <justo.alonso at gmail.com>
26 #include "filter_chain.h"
28 #include "utils/common/common.h"
32 #if !defined(JNI_VERSION_1_2)
33 #error "Need JNI 1.2 compatible interface!"
39 struct cjni_jvm_env_s /* {{{ */
42 int reference_counter;
44 typedef struct cjni_jvm_env_s cjni_jvm_env_t;
47 struct java_plugin_class_s /* {{{ */
53 typedef struct java_plugin_class_s java_plugin_class_t;
56 #define CB_TYPE_CONFIG 1
57 #define CB_TYPE_INIT 2
58 #define CB_TYPE_READ 3
59 #define CB_TYPE_WRITE 4
60 #define CB_TYPE_FLUSH 5
61 #define CB_TYPE_SHUTDOWN 6
63 #define CB_TYPE_NOTIFICATION 8
64 #define CB_TYPE_MATCH 9
65 #define CB_TYPE_TARGET 10
66 struct cjni_callback_info_s /* {{{ */
74 typedef struct cjni_callback_info_s cjni_callback_info_t;
81 static pthread_key_t jvm_env_key;
83 /* Configuration options for the JVM. */
84 static char **jvm_argv;
85 static size_t jvm_argc;
87 /* List of class names to load */
88 static java_plugin_class_t *java_classes_list;
89 static size_t java_classes_list_len;
91 /* List of config, init, and shutdown callbacks. */
92 static cjni_callback_info_t *java_callbacks;
93 static size_t java_callbacks_num;
94 static pthread_mutex_t java_callbacks_lock = PTHREAD_MUTEX_INITIALIZER;
96 static oconfig_item_t *config_block;
101 * Mostly functions that are needed by the Java interface (``native'')
104 static void cjni_callback_info_destroy(void *arg);
105 static cjni_callback_info_t *cjni_callback_info_create(JNIEnv *jvm_env,
109 static int cjni_callback_register(JNIEnv *jvm_env, jobject o_name,
110 jobject o_callback, int type);
111 static int cjni_read(user_data_t *user_data);
112 static int cjni_write(const data_set_t *ds, const value_list_t *vl,
114 static int cjni_flush(cdtime_t timeout, const char *identifier,
116 static void cjni_log(int severity, const char *message, user_data_t *ud);
117 static int cjni_notification(const notification_t *n, user_data_t *ud);
119 /* Create, destroy, and match/invoke functions, used by both, matches AND
121 static int cjni_match_target_create(const oconfig_item_t *ci, void **user_data);
122 static int cjni_match_target_destroy(void **user_data);
123 static int cjni_match_target_invoke(const data_set_t *ds, value_list_t *vl,
124 notification_meta_t **meta,
128 * C to Java conversion functions
130 static int ctoj_string(JNIEnv *jvm_env, /* {{{ */
131 const char *string, jclass class_ptr, jobject object_ptr,
132 const char *method_name) {
136 /* Create a java.lang.String */
137 o_string = (*jvm_env)->NewStringUTF(jvm_env, (string != NULL) ? string : "");
138 if (o_string == NULL) {
139 ERROR("java plugin: ctoj_string: NewStringUTF failed.");
143 /* Search for the `void setFoo (String s)' method. */
144 m_set = (*jvm_env)->GetMethodID(jvm_env, class_ptr, method_name,
145 "(Ljava/lang/String;)V");
147 ERROR("java plugin: ctoj_string: Cannot find method `void %s (String)'.",
149 (*jvm_env)->DeleteLocalRef(jvm_env, o_string);
153 /* Call the method. */
154 (*jvm_env)->CallVoidMethod(jvm_env, object_ptr, m_set, o_string);
156 /* Decrease reference counter on the java.lang.String object. */
157 (*jvm_env)->DeleteLocalRef(jvm_env, o_string);
160 } /* }}} int ctoj_string */
162 static jstring ctoj_output_string(JNIEnv *jvm_env, /* {{{ */
163 const char *string) {
166 /* Create a java.lang.String */
167 o_string = (*jvm_env)->NewStringUTF(jvm_env, (string != NULL) ? string : "");
168 if (o_string == NULL) {
169 ERROR("java plugin: ctoj_output_string: NewStringUTF failed.");
174 } /* }}} int ctoj_output_string */
176 static int ctoj_int(JNIEnv *jvm_env, /* {{{ */
177 jint value, jclass class_ptr, jobject object_ptr,
178 const char *method_name) {
181 /* Search for the `void setFoo (int i)' method. */
182 m_set = (*jvm_env)->GetMethodID(jvm_env, class_ptr, method_name, "(I)V");
184 ERROR("java plugin: ctoj_int: Cannot find method `void %s (int)'.",
189 (*jvm_env)->CallVoidMethod(jvm_env, object_ptr, m_set, value);
192 } /* }}} int ctoj_int */
194 static int ctoj_long(JNIEnv *jvm_env, /* {{{ */
195 jlong value, jclass class_ptr, jobject object_ptr,
196 const char *method_name) {
199 /* Search for the `void setFoo (long l)' method. */
200 m_set = (*jvm_env)->GetMethodID(jvm_env, class_ptr, method_name, "(J)V");
202 ERROR("java plugin: ctoj_long: Cannot find method `void %s (long)'.",
207 (*jvm_env)->CallVoidMethod(jvm_env, object_ptr, m_set, value);
210 } /* }}} int ctoj_long */
212 static int ctoj_double(JNIEnv *jvm_env, /* {{{ */
213 jdouble value, jclass class_ptr, jobject object_ptr,
214 const char *method_name) {
217 /* Search for the `void setFoo (double d)' method. */
218 m_set = (*jvm_env)->GetMethodID(jvm_env, class_ptr, method_name, "(D)V");
220 ERROR("java plugin: ctoj_double: Cannot find method `void %s (double)'.",
225 (*jvm_env)->CallVoidMethod(jvm_env, object_ptr, m_set, value);
228 } /* }}} int ctoj_double */
230 /* Convert a jlong to a java.lang.Number */
231 static jobject ctoj_jlong_to_number(JNIEnv *jvm_env, jlong value) /* {{{ */
234 jmethodID m_long_constructor;
236 /* Look up the java.lang.Long class */
237 c_long = (*jvm_env)->FindClass(jvm_env, "java/lang/Long");
238 if (c_long == NULL) {
239 ERROR("java plugin: ctoj_jlong_to_number: Looking up the "
240 "java.lang.Long class failed.");
245 (*jvm_env)->GetMethodID(jvm_env, c_long, "<init>", "(J)V");
246 if (m_long_constructor == NULL) {
247 ERROR("java plugin: ctoj_jlong_to_number: Looking up the "
248 "`Long (long)' constructor failed.");
252 return (*jvm_env)->NewObject(jvm_env, c_long, m_long_constructor, value);
253 } /* }}} jobject ctoj_jlong_to_number */
255 /* Convert a jdouble to a java.lang.Number */
256 static jobject ctoj_jdouble_to_number(JNIEnv *jvm_env, jdouble value) /* {{{ */
259 jmethodID m_double_constructor;
261 /* Look up the java.lang.Long class */
262 c_double = (*jvm_env)->FindClass(jvm_env, "java/lang/Double");
263 if (c_double == NULL) {
264 ERROR("java plugin: ctoj_jdouble_to_number: Looking up the "
265 "java.lang.Double class failed.");
269 m_double_constructor =
270 (*jvm_env)->GetMethodID(jvm_env, c_double, "<init>", "(D)V");
271 if (m_double_constructor == NULL) {
272 ERROR("java plugin: ctoj_jdouble_to_number: Looking up the "
273 "`Double (double)' constructor failed.");
277 return (*jvm_env)->NewObject(jvm_env, c_double, m_double_constructor, value);
278 } /* }}} jobject ctoj_jdouble_to_number */
280 /* Convert a value_t to a java.lang.Number */
281 static jobject ctoj_value_to_number(JNIEnv *jvm_env, /* {{{ */
282 value_t value, int ds_type) {
283 if (ds_type == DS_TYPE_COUNTER)
284 return ctoj_jlong_to_number(jvm_env, (jlong)value.counter);
285 else if (ds_type == DS_TYPE_GAUGE)
286 return ctoj_jdouble_to_number(jvm_env, (jdouble)value.gauge);
287 if (ds_type == DS_TYPE_DERIVE)
288 return ctoj_jlong_to_number(jvm_env, (jlong)value.derive);
289 if (ds_type == DS_TYPE_ABSOLUTE)
290 return ctoj_jlong_to_number(jvm_env, (jlong)value.absolute);
293 } /* }}} jobject ctoj_value_to_number */
295 /* Convert a data_source_t to a org/collectd/api/DataSource */
296 static jobject ctoj_data_source(JNIEnv *jvm_env, /* {{{ */
297 const data_source_t *dsrc) {
299 jmethodID m_datasource_constructor;
300 jobject o_datasource;
303 /* Look up the DataSource class */
304 c_datasource = (*jvm_env)->FindClass(jvm_env, "org/collectd/api/DataSource");
305 if (c_datasource == NULL) {
306 ERROR("java plugin: ctoj_data_source: "
307 "FindClass (org/collectd/api/DataSource) failed.");
311 /* Lookup the `ValueList ()' constructor. */
312 m_datasource_constructor =
313 (*jvm_env)->GetMethodID(jvm_env, c_datasource, "<init>", "()V");
314 if (m_datasource_constructor == NULL) {
315 ERROR("java plugin: ctoj_data_source: Cannot find the "
316 "`DataSource ()' constructor.");
320 /* Create a new instance. */
322 (*jvm_env)->NewObject(jvm_env, c_datasource, m_datasource_constructor);
323 if (o_datasource == NULL) {
324 ERROR("java plugin: ctoj_data_source: "
325 "Creating a new DataSource instance failed.");
329 /* Set name via `void setName (String name)' */
331 ctoj_string(jvm_env, dsrc->name, c_datasource, o_datasource, "setName");
333 ERROR("java plugin: ctoj_data_source: "
334 "ctoj_string (setName) failed.");
335 (*jvm_env)->DeleteLocalRef(jvm_env, o_datasource);
339 /* Set type via `void setType (int type)' */
340 status = ctoj_int(jvm_env, dsrc->type, c_datasource, o_datasource, "setType");
342 ERROR("java plugin: ctoj_data_source: "
343 "ctoj_int (setType) failed.");
344 (*jvm_env)->DeleteLocalRef(jvm_env, o_datasource);
348 /* Set min via `void setMin (double min)' */
350 ctoj_double(jvm_env, dsrc->min, c_datasource, o_datasource, "setMin");
352 ERROR("java plugin: ctoj_data_source: "
353 "ctoj_double (setMin) failed.");
354 (*jvm_env)->DeleteLocalRef(jvm_env, o_datasource);
358 /* Set max via `void setMax (double max)' */
360 ctoj_double(jvm_env, dsrc->max, c_datasource, o_datasource, "setMax");
362 ERROR("java plugin: ctoj_data_source: "
363 "ctoj_double (setMax) failed.");
364 (*jvm_env)->DeleteLocalRef(jvm_env, o_datasource);
369 } /* }}} jobject ctoj_data_source */
371 /* Convert a oconfig_value_t to a org/collectd/api/OConfigValue */
372 static jobject ctoj_oconfig_value(JNIEnv *jvm_env, /* {{{ */
373 oconfig_value_t ocvalue) {
375 jmethodID m_ocvalue_constructor;
379 m_ocvalue_constructor = NULL;
382 c_ocvalue = (*jvm_env)->FindClass(jvm_env, "org/collectd/api/OConfigValue");
383 if (c_ocvalue == NULL) {
384 ERROR("java plugin: ctoj_oconfig_value: "
385 "FindClass (org/collectd/api/OConfigValue) failed.");
389 if (ocvalue.type == OCONFIG_TYPE_BOOLEAN) {
390 jboolean tmp_boolean;
392 tmp_boolean = (ocvalue.value.boolean == 0) ? JNI_FALSE : JNI_TRUE;
394 m_ocvalue_constructor =
395 (*jvm_env)->GetMethodID(jvm_env, c_ocvalue, "<init>", "(Z)V");
396 if (m_ocvalue_constructor == NULL) {
397 ERROR("java plugin: ctoj_oconfig_value: Cannot find the "
398 "`OConfigValue (boolean)' constructor.");
402 return (*jvm_env)->NewObject(jvm_env, c_ocvalue, m_ocvalue_constructor,
404 } /* if (ocvalue.type == OCONFIG_TYPE_BOOLEAN) */
405 else if (ocvalue.type == OCONFIG_TYPE_STRING) {
406 m_ocvalue_constructor = (*jvm_env)->GetMethodID(
407 jvm_env, c_ocvalue, "<init>", "(Ljava/lang/String;)V");
408 if (m_ocvalue_constructor == NULL) {
409 ERROR("java plugin: ctoj_oconfig_value: Cannot find the "
410 "`OConfigValue (String)' constructor.");
414 o_argument = (*jvm_env)->NewStringUTF(jvm_env, ocvalue.value.string);
415 if (o_argument == NULL) {
416 ERROR("java plugin: ctoj_oconfig_value: "
417 "Creating a String object failed.");
420 } else if (ocvalue.type == OCONFIG_TYPE_NUMBER) {
421 m_ocvalue_constructor = (*jvm_env)->GetMethodID(
422 jvm_env, c_ocvalue, "<init>", "(Ljava/lang/Number;)V");
423 if (m_ocvalue_constructor == NULL) {
424 ERROR("java plugin: ctoj_oconfig_value: Cannot find the "
425 "`OConfigValue (Number)' constructor.");
429 o_argument = ctoj_jdouble_to_number(jvm_env, (jdouble)ocvalue.value.number);
430 if (o_argument == NULL) {
431 ERROR("java plugin: ctoj_oconfig_value: "
432 "Creating a Number object failed.");
439 assert(m_ocvalue_constructor != NULL);
440 assert(o_argument != NULL);
442 o_ocvalue = (*jvm_env)->NewObject(jvm_env, c_ocvalue, m_ocvalue_constructor,
444 if (o_ocvalue == NULL) {
445 ERROR("java plugin: ctoj_oconfig_value: "
446 "Creating an OConfigValue object failed.");
447 (*jvm_env)->DeleteLocalRef(jvm_env, o_argument);
451 (*jvm_env)->DeleteLocalRef(jvm_env, o_argument);
453 } /* }}} jobject ctoj_oconfig_value */
455 /* Convert a oconfig_item_t to a org/collectd/api/OConfigItem */
456 static jobject ctoj_oconfig_item(JNIEnv *jvm_env, /* {{{ */
457 const oconfig_item_t *ci) {
459 jmethodID m_ocitem_constructor;
460 jmethodID m_addvalue;
461 jmethodID m_addchild;
465 c_ocitem = (*jvm_env)->FindClass(jvm_env, "org/collectd/api/OConfigItem");
466 if (c_ocitem == NULL) {
467 ERROR("java plugin: ctoj_oconfig_item: "
468 "FindClass (org/collectd/api/OConfigItem) failed.");
472 /* Get the required methods: m_ocitem_constructor, m_addvalue, and m_addchild
474 m_ocitem_constructor = (*jvm_env)->GetMethodID(jvm_env, c_ocitem, "<init>",
475 "(Ljava/lang/String;)V");
476 if (m_ocitem_constructor == NULL) {
477 ERROR("java plugin: ctoj_oconfig_item: Cannot find the "
478 "`OConfigItem (String)' constructor.");
482 m_addvalue = (*jvm_env)->GetMethodID(jvm_env, c_ocitem, "addValue",
483 "(Lorg/collectd/api/OConfigValue;)V");
484 if (m_addvalue == NULL) {
485 ERROR("java plugin: ctoj_oconfig_item: Cannot find the "
486 "`addValue (OConfigValue)' method.");
490 m_addchild = (*jvm_env)->GetMethodID(jvm_env, c_ocitem, "addChild",
491 "(Lorg/collectd/api/OConfigItem;)V");
492 if (m_addchild == NULL) {
493 ERROR("java plugin: ctoj_oconfig_item: Cannot find the "
494 "`addChild (OConfigItem)' method.");
499 /* Create a String object with the key.
500 * Needed for calling the constructor. */
501 o_key = (*jvm_env)->NewStringUTF(jvm_env, ci->key);
503 ERROR("java plugin: ctoj_oconfig_item: "
504 "Creating String object failed.");
508 /* Create an OConfigItem object */
510 (*jvm_env)->NewObject(jvm_env, c_ocitem, m_ocitem_constructor, o_key);
511 if (o_ocitem == NULL) {
512 ERROR("java plugin: ctoj_oconfig_item: "
513 "Creating an OConfigItem object failed.");
514 (*jvm_env)->DeleteLocalRef(jvm_env, o_key);
518 /* We don't need the String object any longer.. */
519 (*jvm_env)->DeleteLocalRef(jvm_env, o_key);
521 /* Call OConfigItem.addValue for each value */
522 for (int i = 0; i < ci->values_num; i++) /* {{{ */
526 o_value = ctoj_oconfig_value(jvm_env, ci->values[i]);
527 if (o_value == NULL) {
528 ERROR("java plugin: ctoj_oconfig_item: "
529 "Creating an OConfigValue object failed.");
530 (*jvm_env)->DeleteLocalRef(jvm_env, o_ocitem);
534 (*jvm_env)->CallVoidMethod(jvm_env, o_ocitem, m_addvalue, o_value);
535 (*jvm_env)->DeleteLocalRef(jvm_env, o_value);
536 } /* }}} for (i = 0; i < ci->values_num; i++) */
538 /* Call OConfigItem.addChild for each child */
539 for (int i = 0; i < ci->children_num; i++) /* {{{ */
543 o_child = ctoj_oconfig_item(jvm_env, ci->children + i);
544 if (o_child == NULL) {
545 ERROR("java plugin: ctoj_oconfig_item: "
546 "Creating an OConfigItem object failed.");
547 (*jvm_env)->DeleteLocalRef(jvm_env, o_ocitem);
551 (*jvm_env)->CallVoidMethod(jvm_env, o_ocitem, m_addchild, o_child);
552 (*jvm_env)->DeleteLocalRef(jvm_env, o_child);
553 } /* }}} for (i = 0; i < ci->children_num; i++) */
556 } /* }}} jobject ctoj_oconfig_item */
558 /* Convert a data_set_t to a org/collectd/api/DataSet */
559 static jobject ctoj_data_set(JNIEnv *jvm_env, const data_set_t *ds) /* {{{ */
562 jmethodID m_constructor;
567 /* Look up the org/collectd/api/DataSet class */
568 c_dataset = (*jvm_env)->FindClass(jvm_env, "org/collectd/api/DataSet");
569 if (c_dataset == NULL) {
570 ERROR("java plugin: ctoj_data_set: Looking up the "
571 "org/collectd/api/DataSet class failed.");
575 /* Search for the `DataSet (String type)' constructor. */
576 m_constructor = (*jvm_env)->GetMethodID(jvm_env, c_dataset, "<init>",
577 "(Ljava/lang/String;)V");
578 if (m_constructor == NULL) {
579 ERROR("java plugin: ctoj_data_set: Looking up the "
580 "`DataSet (String)' constructor failed.");
584 /* Search for the `void addDataSource (DataSource)' method. */
585 m_add = (*jvm_env)->GetMethodID(jvm_env, c_dataset, "addDataSource",
586 "(Lorg/collectd/api/DataSource;)V");
588 ERROR("java plugin: ctoj_data_set: Looking up the "
589 "`addDataSource (DataSource)' method failed.");
593 o_type = (*jvm_env)->NewStringUTF(jvm_env, ds->type);
594 if (o_type == NULL) {
595 ERROR("java plugin: ctoj_data_set: Creating a String object failed.");
599 o_dataset = (*jvm_env)->NewObject(jvm_env, c_dataset, m_constructor, o_type);
600 if (o_dataset == NULL) {
601 ERROR("java plugin: ctoj_data_set: Creating a DataSet object failed.");
602 (*jvm_env)->DeleteLocalRef(jvm_env, o_type);
606 /* Decrease reference counter on the java.lang.String object. */
607 (*jvm_env)->DeleteLocalRef(jvm_env, o_type);
609 for (size_t i = 0; i < ds->ds_num; i++) {
610 jobject o_datasource;
612 o_datasource = ctoj_data_source(jvm_env, ds->ds + i);
613 if (o_datasource == NULL) {
614 ERROR("java plugin: ctoj_data_set: ctoj_data_source (%s.%s) failed",
615 ds->type, ds->ds[i].name);
616 (*jvm_env)->DeleteLocalRef(jvm_env, o_dataset);
620 (*jvm_env)->CallVoidMethod(jvm_env, o_dataset, m_add, o_datasource);
622 (*jvm_env)->DeleteLocalRef(jvm_env, o_datasource);
623 } /* for (i = 0; i < ds->ds_num; i++) */
626 } /* }}} jobject ctoj_data_set */
628 static int ctoj_value_list_add_value(JNIEnv *jvm_env, /* {{{ */
629 value_t value, int ds_type,
630 jclass class_ptr, jobject object_ptr) {
631 jmethodID m_addvalue;
634 m_addvalue = (*jvm_env)->GetMethodID(jvm_env, class_ptr, "addValue",
635 "(Ljava/lang/Number;)V");
636 if (m_addvalue == NULL) {
637 ERROR("java plugin: ctoj_value_list_add_value: "
638 "Cannot find method `void addValue (Number)'.");
642 o_number = ctoj_value_to_number(jvm_env, value, ds_type);
643 if (o_number == NULL) {
644 ERROR("java plugin: ctoj_value_list_add_value: "
645 "ctoj_value_to_number failed.");
649 (*jvm_env)->CallVoidMethod(jvm_env, object_ptr, m_addvalue, o_number);
651 (*jvm_env)->DeleteLocalRef(jvm_env, o_number);
654 } /* }}} int ctoj_value_list_add_value */
656 static int ctoj_value_list_add_data_set(JNIEnv *jvm_env, /* {{{ */
657 jclass c_valuelist, jobject o_valuelist,
658 const data_set_t *ds) {
659 jmethodID m_setdataset;
662 /* Look for the `void setDataSource (List<DataSource> ds)' method. */
663 m_setdataset = (*jvm_env)->GetMethodID(jvm_env, c_valuelist, "setDataSet",
664 "(Lorg/collectd/api/DataSet;)V");
665 if (m_setdataset == NULL) {
666 ERROR("java plugin: ctoj_value_list_add_data_set: "
667 "Cannot find the `void setDataSet (DataSet)' method.");
671 /* Create a DataSet object. */
672 o_dataset = ctoj_data_set(jvm_env, ds);
673 if (o_dataset == NULL) {
674 ERROR("java plugin: ctoj_value_list_add_data_set: "
675 "ctoj_data_set (%s) failed.",
680 /* Actually call the method. */
681 (*jvm_env)->CallVoidMethod(jvm_env, o_valuelist, m_setdataset, o_dataset);
683 /* Decrease reference counter on the List<DataSource> object. */
684 (*jvm_env)->DeleteLocalRef(jvm_env, o_dataset);
687 } /* }}} int ctoj_value_list_add_data_set */
689 /* Convert a value_list_t (and data_set_t) to a org/collectd/api/ValueList */
690 static jobject ctoj_value_list(JNIEnv *jvm_env, /* {{{ */
691 const data_set_t *ds, const value_list_t *vl) {
693 jmethodID m_valuelist_constructor;
697 /* First, create a new ValueList instance..
698 * Look up the class.. */
699 c_valuelist = (*jvm_env)->FindClass(jvm_env, "org/collectd/api/ValueList");
700 if (c_valuelist == NULL) {
701 ERROR("java plugin: ctoj_value_list: "
702 "FindClass (org/collectd/api/ValueList) failed.");
706 /* Lookup the `ValueList ()' constructor. */
707 m_valuelist_constructor =
708 (*jvm_env)->GetMethodID(jvm_env, c_valuelist, "<init>", "()V");
709 if (m_valuelist_constructor == NULL) {
710 ERROR("java plugin: ctoj_value_list: Cannot find the "
711 "`ValueList ()' constructor.");
715 /* Create a new instance. */
717 (*jvm_env)->NewObject(jvm_env, c_valuelist, m_valuelist_constructor);
718 if (o_valuelist == NULL) {
719 ERROR("java plugin: ctoj_value_list: Creating a new ValueList instance "
724 status = ctoj_value_list_add_data_set(jvm_env, c_valuelist, o_valuelist, ds);
726 ERROR("java plugin: ctoj_value_list: "
727 "ctoj_value_list_add_data_set failed.");
728 (*jvm_env)->DeleteLocalRef(jvm_env, o_valuelist);
732 /* Set the strings.. */
733 #define SET_STRING(str, method_name) \
735 status = ctoj_string(jvm_env, str, c_valuelist, o_valuelist, method_name); \
737 ERROR("java plugin: ctoj_value_list: ctoj_string (%s) failed.", \
739 (*jvm_env)->DeleteLocalRef(jvm_env, o_valuelist); \
744 SET_STRING(vl->host, "setHost");
745 SET_STRING(vl->plugin, "setPlugin");
746 SET_STRING(vl->plugin_instance, "setPluginInstance");
747 SET_STRING(vl->type, "setType");
748 SET_STRING(vl->type_instance, "setTypeInstance");
752 /* Set the `time' member. Java stores time in milliseconds. */
753 status = ctoj_long(jvm_env, (jlong)CDTIME_T_TO_MS(vl->time), c_valuelist,
754 o_valuelist, "setTime");
756 ERROR("java plugin: ctoj_value_list: ctoj_long (setTime) failed.");
757 (*jvm_env)->DeleteLocalRef(jvm_env, o_valuelist);
761 /* Set the `interval' member.. */
762 status = ctoj_long(jvm_env, (jlong)CDTIME_T_TO_MS(vl->interval), c_valuelist,
763 o_valuelist, "setInterval");
765 ERROR("java plugin: ctoj_value_list: ctoj_long (setInterval) failed.");
766 (*jvm_env)->DeleteLocalRef(jvm_env, o_valuelist);
770 for (size_t i = 0; i < vl->values_len; i++) {
771 status = ctoj_value_list_add_value(jvm_env, vl->values[i], ds->ds[i].type,
772 c_valuelist, o_valuelist);
774 ERROR("java plugin: ctoj_value_list: "
775 "ctoj_value_list_add_value failed.");
776 (*jvm_env)->DeleteLocalRef(jvm_env, o_valuelist);
782 } /* }}} jobject ctoj_value_list */
784 /* Convert a notification_t to a org/collectd/api/Notification */
785 static jobject ctoj_notification(JNIEnv *jvm_env, /* {{{ */
786 const notification_t *n) {
787 jclass c_notification;
788 jmethodID m_constructor;
789 jobject o_notification;
792 /* First, create a new Notification instance..
793 * Look up the class.. */
795 (*jvm_env)->FindClass(jvm_env, "org/collectd/api/Notification");
796 if (c_notification == NULL) {
797 ERROR("java plugin: ctoj_notification: "
798 "FindClass (org/collectd/api/Notification) failed.");
802 /* Lookup the `Notification ()' constructor. */
804 (*jvm_env)->GetMethodID(jvm_env, c_notification, "<init>", "()V");
805 if (m_constructor == NULL) {
806 ERROR("java plugin: ctoj_notification: Cannot find the "
807 "`Notification ()' constructor.");
811 /* Create a new instance. */
813 (*jvm_env)->NewObject(jvm_env, c_notification, m_constructor);
814 if (o_notification == NULL) {
815 ERROR("java plugin: ctoj_notification: Creating a new Notification "
820 /* Set the strings.. */
821 #define SET_STRING(str, method_name) \
823 status = ctoj_string(jvm_env, str, c_notification, o_notification, \
826 ERROR("java plugin: ctoj_notification: ctoj_string (%s) failed.", \
828 (*jvm_env)->DeleteLocalRef(jvm_env, o_notification); \
833 SET_STRING(n->host, "setHost");
834 SET_STRING(n->plugin, "setPlugin");
835 SET_STRING(n->plugin_instance, "setPluginInstance");
836 SET_STRING(n->type, "setType");
837 SET_STRING(n->type_instance, "setTypeInstance");
838 SET_STRING(n->message, "setMessage");
842 /* Set the `time' member. Java stores time in milliseconds. */
843 status = ctoj_long(jvm_env, (jlong)CDTIME_T_TO_MS(n->time), c_notification,
844 o_notification, "setTime");
846 ERROR("java plugin: ctoj_notification: ctoj_long (setTime) failed.");
847 (*jvm_env)->DeleteLocalRef(jvm_env, o_notification);
851 /* Set the `severity' member.. */
852 status = ctoj_int(jvm_env, (jint)n->severity, c_notification, o_notification,
855 ERROR("java plugin: ctoj_notification: ctoj_int (setSeverity) failed.");
856 (*jvm_env)->DeleteLocalRef(jvm_env, o_notification);
860 return o_notification;
861 } /* }}} jobject ctoj_notification */
864 * Java to C conversion functions
866 /* Call a `String <method> ()' method. */
867 static int jtoc_string(JNIEnv *jvm_env, /* {{{ */
868 char *buffer, size_t buffer_size, int empty_okay,
869 jclass class_ptr, jobject object_ptr,
870 const char *method_name) {
875 method_id = (*jvm_env)->GetMethodID(jvm_env, class_ptr, method_name,
876 "()Ljava/lang/String;");
877 if (method_id == NULL) {
878 ERROR("java plugin: jtoc_string: Cannot find method `String %s ()'.",
883 string_obj = (*jvm_env)->CallObjectMethod(jvm_env, object_ptr, method_id);
884 if ((string_obj == NULL) && (empty_okay == 0)) {
885 ERROR("java plugin: jtoc_string: CallObjectMethod (%s) failed.",
888 } else if ((string_obj == NULL) && (empty_okay != 0)) {
889 memset(buffer, 0, buffer_size);
893 c_str = (*jvm_env)->GetStringUTFChars(jvm_env, string_obj, 0);
895 ERROR("java plugin: jtoc_string: GetStringUTFChars failed.");
896 (*jvm_env)->DeleteLocalRef(jvm_env, string_obj);
900 sstrncpy(buffer, c_str, buffer_size);
902 (*jvm_env)->ReleaseStringUTFChars(jvm_env, string_obj, c_str);
903 (*jvm_env)->DeleteLocalRef(jvm_env, string_obj);
906 } /* }}} int jtoc_string */
908 /* Call an `int <method> ()' method. */
909 static int jtoc_int(JNIEnv *jvm_env, /* {{{ */
910 jint *ret_value, jclass class_ptr, jobject object_ptr,
911 const char *method_name) {
914 method_id = (*jvm_env)->GetMethodID(jvm_env, class_ptr, method_name, "()I");
915 if (method_id == NULL) {
916 ERROR("java plugin: jtoc_int: Cannot find method `int %s ()'.",
921 *ret_value = (*jvm_env)->CallIntMethod(jvm_env, object_ptr, method_id);
924 } /* }}} int jtoc_int */
926 /* Call a `long <method> ()' method. */
927 static int jtoc_long(JNIEnv *jvm_env, /* {{{ */
928 jlong *ret_value, jclass class_ptr, jobject object_ptr,
929 const char *method_name) {
932 method_id = (*jvm_env)->GetMethodID(jvm_env, class_ptr, method_name, "()J");
933 if (method_id == NULL) {
934 ERROR("java plugin: jtoc_long: Cannot find method `long %s ()'.",
939 *ret_value = (*jvm_env)->CallLongMethod(jvm_env, object_ptr, method_id);
942 } /* }}} int jtoc_long */
944 /* Call a `double <method> ()' method. */
945 static int jtoc_double(JNIEnv *jvm_env, /* {{{ */
946 jdouble *ret_value, jclass class_ptr, jobject object_ptr,
947 const char *method_name) {
950 method_id = (*jvm_env)->GetMethodID(jvm_env, class_ptr, method_name, "()D");
951 if (method_id == NULL) {
952 ERROR("java plugin: jtoc_double: Cannot find method `double %s ()'.",
957 *ret_value = (*jvm_env)->CallDoubleMethod(jvm_env, object_ptr, method_id);
960 } /* }}} int jtoc_double */
962 static int jtoc_value(JNIEnv *jvm_env, /* {{{ */
963 value_t *ret_value, int ds_type, jobject object_ptr) {
967 class_ptr = (*jvm_env)->GetObjectClass(jvm_env, object_ptr);
969 if (ds_type == DS_TYPE_GAUGE) {
973 jtoc_double(jvm_env, &tmp_double, class_ptr, object_ptr, "doubleValue");
975 ERROR("java plugin: jtoc_value: "
976 "jtoc_double failed.");
979 (*ret_value).gauge = (gauge_t)tmp_double;
983 status = jtoc_long(jvm_env, &tmp_long, class_ptr, object_ptr, "longValue");
985 ERROR("java plugin: jtoc_value: "
986 "jtoc_long failed.");
990 if (ds_type == DS_TYPE_DERIVE)
991 (*ret_value).derive = (derive_t)tmp_long;
992 else if (ds_type == DS_TYPE_ABSOLUTE)
993 (*ret_value).absolute = (absolute_t)tmp_long;
995 (*ret_value).counter = (counter_t)tmp_long;
999 } /* }}} int jtoc_value */
1001 /* Read a List<Number>, convert it to `value_t' and add it to the given
1002 * `value_list_t'. */
1003 static int jtoc_values_array(JNIEnv *jvm_env, /* {{{ */
1004 const data_set_t *ds, value_list_t *vl,
1005 jclass class_ptr, jobject object_ptr) {
1006 jmethodID m_getvalues;
1007 jmethodID m_toarray;
1009 jobjectArray o_number_array;
1013 size_t values_num = ds->ds_num;
1016 o_number_array = NULL;
1019 #define BAIL_OUT(status) \
1021 if (o_number_array != NULL) \
1022 (*jvm_env)->DeleteLocalRef(jvm_env, o_number_array); \
1023 if (o_list != NULL) \
1024 (*jvm_env)->DeleteLocalRef(jvm_env, o_list); \
1027 /* Call: List<Number> ValueList.getValues () */
1028 m_getvalues = (*jvm_env)->GetMethodID(jvm_env, class_ptr, "getValues",
1029 "()Ljava/util/List;");
1030 if (m_getvalues == NULL) {
1031 ERROR("java plugin: jtoc_values_array: "
1032 "Cannot find method `List getValues ()'.");
1036 o_list = (*jvm_env)->CallObjectMethod(jvm_env, object_ptr, m_getvalues);
1037 if (o_list == NULL) {
1038 ERROR("java plugin: jtoc_values_array: "
1039 "CallObjectMethod (getValues) failed.");
1043 /* Call: Number[] List.toArray () */
1044 m_toarray = (*jvm_env)->GetMethodID(
1045 jvm_env, (*jvm_env)->GetObjectClass(jvm_env, o_list), "toArray",
1046 "()[Ljava/lang/Object;");
1047 if (m_toarray == NULL) {
1048 ERROR("java plugin: jtoc_values_array: "
1049 "Cannot find method `Object[] toArray ()'.");
1053 o_number_array = (*jvm_env)->CallObjectMethod(jvm_env, o_list, m_toarray);
1054 if (o_number_array == NULL) {
1055 ERROR("java plugin: jtoc_values_array: "
1056 "CallObjectMethod (toArray) failed.");
1060 values = calloc(values_num, sizeof(*values));
1061 if (values == NULL) {
1062 ERROR("java plugin: jtoc_values_array: calloc failed.");
1066 for (size_t i = 0; i < values_num; i++) {
1071 (*jvm_env)->GetObjectArrayElement(jvm_env, o_number_array, (jsize)i);
1072 if (o_number == NULL) {
1073 ERROR("java plugin: jtoc_values_array: "
1074 "GetObjectArrayElement (%zu) failed.",
1079 status = jtoc_value(jvm_env, values + i, ds->ds[i].type, o_number);
1081 ERROR("java plugin: jtoc_values_array: "
1082 "jtoc_value (%zu) failed.",
1086 } /* for (i = 0; i < values_num; i++) */
1088 vl->values = values;
1089 vl->values_len = values_num;
1092 (*jvm_env)->DeleteLocalRef(jvm_env, o_number_array);
1093 (*jvm_env)->DeleteLocalRef(jvm_env, o_list);
1095 } /* }}} int jtoc_values_array */
1097 /* Convert a org/collectd/api/ValueList to a value_list_t. */
1098 static int jtoc_value_list(JNIEnv *jvm_env, value_list_t *vl, /* {{{ */
1099 jobject object_ptr) {
1103 const data_set_t *ds;
1105 class_ptr = (*jvm_env)->GetObjectClass(jvm_env, object_ptr);
1106 if (class_ptr == NULL) {
1107 ERROR("java plugin: jtoc_value_list: GetObjectClass failed.");
1111 /* eo == empty okay */
1112 #define SET_STRING(buffer, method, eo) \
1114 status = jtoc_string(jvm_env, buffer, sizeof(buffer), eo, class_ptr, \
1115 object_ptr, method); \
1116 if (status != 0) { \
1117 ERROR("java plugin: jtoc_value_list: jtoc_string (%s) failed.", method); \
1122 SET_STRING(vl->type, "getType", /* empty = */ 0);
1124 ds = plugin_get_ds(vl->type);
1126 ERROR("java plugin: jtoc_value_list: Data-set `%s' is not defined. "
1127 "Please consult the types.db(5) manpage for mor information.",
1132 SET_STRING(vl->host, "getHost", /* empty = */ 0);
1133 SET_STRING(vl->plugin, "getPlugin", /* empty = */ 0);
1134 SET_STRING(vl->plugin_instance, "getPluginInstance", /* empty = */ 1);
1135 SET_STRING(vl->type_instance, "getTypeInstance", /* empty = */ 1);
1139 status = jtoc_long(jvm_env, &tmp_long, class_ptr, object_ptr, "getTime");
1141 ERROR("java plugin: jtoc_value_list: jtoc_long (getTime) failed.");
1144 /* Java measures time in milliseconds. */
1145 vl->time = MS_TO_CDTIME_T(tmp_long);
1147 status = jtoc_long(jvm_env, &tmp_long, class_ptr, object_ptr, "getInterval");
1149 ERROR("java plugin: jtoc_value_list: jtoc_long (getInterval) failed.");
1152 vl->interval = MS_TO_CDTIME_T(tmp_long);
1154 status = jtoc_values_array(jvm_env, ds, vl, class_ptr, object_ptr);
1156 ERROR("java plugin: jtoc_value_list: jtoc_values_array failed.");
1161 } /* }}} int jtoc_value_list */
1163 /* Convert a org/collectd/api/Notification to a notification_t. */
1164 static int jtoc_notification(JNIEnv *jvm_env, notification_t *n, /* {{{ */
1165 jobject object_ptr) {
1171 class_ptr = (*jvm_env)->GetObjectClass(jvm_env, object_ptr);
1172 if (class_ptr == NULL) {
1173 ERROR("java plugin: jtoc_notification: GetObjectClass failed.");
1177 /* eo == empty okay */
1178 #define SET_STRING(buffer, method, eo) \
1180 status = jtoc_string(jvm_env, buffer, sizeof(buffer), eo, class_ptr, \
1181 object_ptr, method); \
1182 if (status != 0) { \
1183 ERROR("java plugin: jtoc_notification: jtoc_string (%s) failed.", \
1189 SET_STRING(n->host, "getHost", /* empty = */ 1);
1190 SET_STRING(n->plugin, "getPlugin", /* empty = */ 1);
1191 SET_STRING(n->plugin_instance, "getPluginInstance", /* empty = */ 1);
1192 SET_STRING(n->type, "getType", /* empty = */ 1);
1193 SET_STRING(n->type_instance, "getTypeInstance", /* empty = */ 1);
1194 SET_STRING(n->message, "getMessage", /* empty = */ 0);
1198 status = jtoc_long(jvm_env, &tmp_long, class_ptr, object_ptr, "getTime");
1200 ERROR("java plugin: jtoc_notification: jtoc_long (getTime) failed.");
1203 /* Java measures time in milliseconds. */
1204 n->time = MS_TO_CDTIME_T(tmp_long);
1206 status = jtoc_int(jvm_env, &tmp_int, class_ptr, object_ptr, "getSeverity");
1208 ERROR("java plugin: jtoc_notification: jtoc_int (getSeverity) failed.");
1211 n->severity = (int)tmp_int;
1214 } /* }}} int jtoc_notification */
1216 * Functions accessible from Java
1218 static jint JNICALL cjni_api_dispatch_values(JNIEnv *jvm_env, /* {{{ */
1219 jobject this, jobject java_vl) {
1220 value_list_t vl = VALUE_LIST_INIT;
1223 DEBUG("cjni_api_dispatch_values: java_vl = %p;", (void *)java_vl);
1225 status = jtoc_value_list(jvm_env, &vl, java_vl);
1227 ERROR("java plugin: cjni_api_dispatch_values: jtoc_value_list failed.");
1231 status = plugin_dispatch_values(&vl);
1236 } /* }}} jint cjni_api_dispatch_values */
1238 static jint JNICALL cjni_api_dispatch_notification(JNIEnv *jvm_env, /* {{{ */
1240 jobject o_notification) {
1241 notification_t n = {0};
1244 status = jtoc_notification(jvm_env, &n, o_notification);
1246 ERROR("java plugin: cjni_api_dispatch_notification: jtoc_notification "
1251 status = plugin_dispatch_notification(&n);
1254 } /* }}} jint cjni_api_dispatch_notification */
1256 static jobject JNICALL cjni_api_get_ds(JNIEnv *jvm_env, /* {{{ */
1257 jobject this, jobject o_string_type) {
1258 const char *ds_name;
1259 const data_set_t *ds;
1262 ds_name = (*jvm_env)->GetStringUTFChars(jvm_env, o_string_type, 0);
1263 if (ds_name == NULL) {
1264 ERROR("java plugin: cjni_api_get_ds: GetStringUTFChars failed.");
1268 ds = plugin_get_ds(ds_name);
1269 DEBUG("java plugin: cjni_api_get_ds: "
1270 "plugin_get_ds (%s) = %p;",
1271 ds_name, (void *)ds);
1273 (*jvm_env)->ReleaseStringUTFChars(jvm_env, o_string_type, ds_name);
1278 o_dataset = ctoj_data_set(jvm_env, ds);
1280 } /* }}} jint cjni_api_get_ds */
1282 static jint JNICALL cjni_api_register_config(JNIEnv *jvm_env, /* {{{ */
1283 jobject this, jobject o_name,
1285 return cjni_callback_register(jvm_env, o_name, o_config, CB_TYPE_CONFIG);
1286 } /* }}} jint cjni_api_register_config */
1288 static jint JNICALL cjni_api_register_init(JNIEnv *jvm_env, /* {{{ */
1289 jobject this, jobject o_name,
1291 return cjni_callback_register(jvm_env, o_name, o_config, CB_TYPE_INIT);
1292 } /* }}} jint cjni_api_register_init */
1294 static jint JNICALL cjni_api_register_read(JNIEnv *jvm_env, /* {{{ */
1295 jobject this, jobject o_name,
1297 cjni_callback_info_t *cbi;
1299 cbi = cjni_callback_info_create(jvm_env, o_name, o_read, CB_TYPE_READ);
1303 DEBUG("java plugin: Registering new read callback: %s", cbi->name);
1305 plugin_register_complex_read(
1306 /* group = */ NULL, cbi->name, cjni_read,
1310 .free_func = cjni_callback_info_destroy,
1313 (*jvm_env)->DeleteLocalRef(jvm_env, o_read);
1316 } /* }}} jint cjni_api_register_read */
1318 static jint JNICALL cjni_api_register_write(JNIEnv *jvm_env, /* {{{ */
1319 jobject this, jobject o_name,
1321 cjni_callback_info_t *cbi;
1323 cbi = cjni_callback_info_create(jvm_env, o_name, o_write, CB_TYPE_WRITE);
1327 DEBUG("java plugin: Registering new write callback: %s", cbi->name);
1329 plugin_register_write(cbi->name, cjni_write,
1332 .free_func = cjni_callback_info_destroy,
1335 (*jvm_env)->DeleteLocalRef(jvm_env, o_write);
1338 } /* }}} jint cjni_api_register_write */
1340 static jint JNICALL cjni_api_register_flush(JNIEnv *jvm_env, /* {{{ */
1341 jobject this, jobject o_name,
1343 cjni_callback_info_t *cbi;
1345 cbi = cjni_callback_info_create(jvm_env, o_name, o_flush, CB_TYPE_FLUSH);
1349 DEBUG("java plugin: Registering new flush callback: %s", cbi->name);
1351 plugin_register_flush(cbi->name, cjni_flush,
1354 .free_func = cjni_callback_info_destroy,
1357 (*jvm_env)->DeleteLocalRef(jvm_env, o_flush);
1360 } /* }}} jint cjni_api_register_flush */
1362 static jint JNICALL cjni_api_register_shutdown(JNIEnv *jvm_env, /* {{{ */
1363 jobject this, jobject o_name,
1364 jobject o_shutdown) {
1365 return cjni_callback_register(jvm_env, o_name, o_shutdown, CB_TYPE_SHUTDOWN);
1366 } /* }}} jint cjni_api_register_shutdown */
1368 static jint JNICALL cjni_api_register_log(JNIEnv *jvm_env, /* {{{ */
1369 jobject this, jobject o_name,
1371 cjni_callback_info_t *cbi;
1373 cbi = cjni_callback_info_create(jvm_env, o_name, o_log, CB_TYPE_LOG);
1377 DEBUG("java plugin: Registering new log callback: %s", cbi->name);
1379 plugin_register_log(cbi->name, cjni_log,
1382 .free_func = cjni_callback_info_destroy,
1385 (*jvm_env)->DeleteLocalRef(jvm_env, o_log);
1388 } /* }}} jint cjni_api_register_log */
1390 static jint JNICALL cjni_api_register_notification(JNIEnv *jvm_env, /* {{{ */
1391 jobject this, jobject o_name,
1392 jobject o_notification) {
1393 cjni_callback_info_t *cbi;
1395 cbi = cjni_callback_info_create(jvm_env, o_name, o_notification,
1396 CB_TYPE_NOTIFICATION);
1400 DEBUG("java plugin: Registering new notification callback: %s", cbi->name);
1402 plugin_register_notification(cbi->name, cjni_notification,
1405 .free_func = cjni_callback_info_destroy,
1408 (*jvm_env)->DeleteLocalRef(jvm_env, o_notification);
1411 } /* }}} jint cjni_api_register_notification */
1413 static jint JNICALL cjni_api_register_match_target(JNIEnv *jvm_env, /* {{{ */
1414 jobject this, jobject o_name,
1415 jobject o_match, int type) {
1419 c_name = (*jvm_env)->GetStringUTFChars(jvm_env, o_name, 0);
1420 if (c_name == NULL) {
1421 ERROR("java plugin: cjni_api_register_match_target: "
1422 "GetStringUTFChars failed.");
1426 status = cjni_callback_register(jvm_env, o_name, o_match, type);
1428 (*jvm_env)->ReleaseStringUTFChars(jvm_env, o_name, c_name);
1432 if (type == CB_TYPE_MATCH) {
1433 match_proc_t m_proc = {0};
1435 m_proc.create = cjni_match_target_create;
1436 m_proc.destroy = cjni_match_target_destroy;
1437 m_proc.match = (void *)cjni_match_target_invoke;
1439 status = fc_register_match(c_name, m_proc);
1440 } else if (type == CB_TYPE_TARGET) {
1441 target_proc_t t_proc = {0};
1443 t_proc.create = cjni_match_target_create;
1444 t_proc.destroy = cjni_match_target_destroy;
1445 t_proc.invoke = cjni_match_target_invoke;
1447 status = fc_register_target(c_name, t_proc);
1449 ERROR("java plugin: cjni_api_register_match_target: "
1450 "Don't know whether to create a match or a target.");
1451 (*jvm_env)->ReleaseStringUTFChars(jvm_env, o_name, c_name);
1456 ERROR("java plugin: cjni_api_register_match_target: "
1458 (type == CB_TYPE_MATCH) ? "fc_register_match" : "fc_register_target");
1459 (*jvm_env)->ReleaseStringUTFChars(jvm_env, o_name, c_name);
1463 (*jvm_env)->ReleaseStringUTFChars(jvm_env, o_name, c_name);
1466 } /* }}} jint cjni_api_register_match_target */
1468 static jint JNICALL cjni_api_register_match(JNIEnv *jvm_env, /* {{{ */
1469 jobject this, jobject o_name,
1471 return cjni_api_register_match_target(jvm_env, this, o_name, o_match,
1473 } /* }}} jint cjni_api_register_match */
1475 static jint JNICALL cjni_api_register_target(JNIEnv *jvm_env, /* {{{ */
1476 jobject this, jobject o_name,
1478 return cjni_api_register_match_target(jvm_env, this, o_name, o_target,
1480 } /* }}} jint cjni_api_register_target */
1482 static void JNICALL cjni_api_log(JNIEnv *jvm_env, /* {{{ */
1483 jobject this, jint severity,
1484 jobject o_message) {
1487 c_str = (*jvm_env)->GetStringUTFChars(jvm_env, o_message, 0);
1488 if (c_str == NULL) {
1489 ERROR("java plugin: cjni_api_log: GetStringUTFChars failed.");
1493 if (severity < LOG_ERR)
1495 if (severity > LOG_DEBUG)
1496 severity = LOG_DEBUG;
1498 plugin_log(severity, "%s", c_str);
1500 (*jvm_env)->ReleaseStringUTFChars(jvm_env, o_message, c_str);
1501 } /* }}} void cjni_api_log */
1503 static jstring JNICALL cjni_api_get_hostname(JNIEnv *jvm_env, jobject this) {
1504 return ctoj_output_string(jvm_env, hostname_g);
1507 /* List of ``native'' functions, i. e. C-functions that can be called from
1509 static JNINativeMethod jni_api_functions[] = /* {{{ */
1511 {"dispatchValues", "(Lorg/collectd/api/ValueList;)I",
1512 cjni_api_dispatch_values},
1514 {"dispatchNotification", "(Lorg/collectd/api/Notification;)I",
1515 cjni_api_dispatch_notification},
1517 {"getDS", "(Ljava/lang/String;)Lorg/collectd/api/DataSet;",
1521 "(Ljava/lang/String;Lorg/collectd/api/CollectdConfigInterface;)I",
1522 cjni_api_register_config},
1525 "(Ljava/lang/String;Lorg/collectd/api/CollectdInitInterface;)I",
1526 cjni_api_register_init},
1529 "(Ljava/lang/String;Lorg/collectd/api/CollectdReadInterface;)I",
1530 cjni_api_register_read},
1533 "(Ljava/lang/String;Lorg/collectd/api/CollectdWriteInterface;)I",
1534 cjni_api_register_write},
1537 "(Ljava/lang/String;Lorg/collectd/api/CollectdFlushInterface;)I",
1538 cjni_api_register_flush},
1540 {"registerShutdown",
1541 "(Ljava/lang/String;Lorg/collectd/api/CollectdShutdownInterface;)I",
1542 cjni_api_register_shutdown},
1545 "(Ljava/lang/String;Lorg/collectd/api/CollectdLogInterface;)I",
1546 cjni_api_register_log},
1548 {"registerNotification",
1549 "(Ljava/lang/String;Lorg/collectd/api/"
1550 "CollectdNotificationInterface;)I",
1551 cjni_api_register_notification},
1554 "(Ljava/lang/String;Lorg/collectd/api/"
1555 "CollectdMatchFactoryInterface;)I",
1556 cjni_api_register_match},
1559 "(Ljava/lang/String;Lorg/collectd/api/"
1560 "CollectdTargetFactoryInterface;)I",
1561 cjni_api_register_target},
1563 {"log", "(ILjava/lang/String;)V", cjni_api_log},
1565 {"getHostname", "()Ljava/lang/String;", cjni_api_get_hostname},
1568 static size_t jni_api_functions_num =
1569 sizeof(jni_api_functions) / sizeof(jni_api_functions[0]);
1575 /* Allocate a `cjni_callback_info_t' given the type and objects necessary for
1576 * all registration functions. */
1577 static cjni_callback_info_t *
1578 cjni_callback_info_create(JNIEnv *jvm_env, /* {{{ */
1579 jobject o_name, jobject o_callback, int type) {
1581 cjni_callback_info_t *cbi;
1582 const char *method_name;
1583 const char *method_signature;
1586 case CB_TYPE_CONFIG:
1587 method_name = "config";
1588 method_signature = "(Lorg/collectd/api/OConfigItem;)I";
1592 method_name = "init";
1593 method_signature = "()I";
1597 method_name = "read";
1598 method_signature = "()I";
1602 method_name = "write";
1603 method_signature = "(Lorg/collectd/api/ValueList;)I";
1607 method_name = "flush";
1608 method_signature = "(Ljava/lang/Number;Ljava/lang/String;)I";
1611 case CB_TYPE_SHUTDOWN:
1612 method_name = "shutdown";
1613 method_signature = "()I";
1617 method_name = "log";
1618 method_signature = "(ILjava/lang/String;)V";
1621 case CB_TYPE_NOTIFICATION:
1622 method_name = "notification";
1623 method_signature = "(Lorg/collectd/api/Notification;)I";
1627 method_name = "createMatch";
1628 method_signature = "(Lorg/collectd/api/OConfigItem;)"
1629 "Lorg/collectd/api/CollectdMatchInterface;";
1632 case CB_TYPE_TARGET:
1633 method_name = "createTarget";
1634 method_signature = "(Lorg/collectd/api/OConfigItem;)"
1635 "Lorg/collectd/api/CollectdTargetInterface;";
1639 ERROR("java plugin: cjni_callback_info_create: Unknown type: %#x", type);
1643 c_name = (*jvm_env)->GetStringUTFChars(jvm_env, o_name, 0);
1644 if (c_name == NULL) {
1645 ERROR("java plugin: cjni_callback_info_create: "
1646 "GetStringUTFChars failed.");
1650 cbi = calloc(1, sizeof(*cbi));
1652 ERROR("java plugin: cjni_callback_info_create: calloc failed.");
1653 (*jvm_env)->ReleaseStringUTFChars(jvm_env, o_name, c_name);
1658 cbi->name = strdup(c_name);
1659 if (cbi->name == NULL) {
1660 pthread_mutex_unlock(&java_callbacks_lock);
1661 ERROR("java plugin: cjni_callback_info_create: strdup failed.");
1662 (*jvm_env)->ReleaseStringUTFChars(jvm_env, o_name, c_name);
1667 (*jvm_env)->ReleaseStringUTFChars(jvm_env, o_name, c_name);
1669 cbi->object = (*jvm_env)->NewGlobalRef(jvm_env, o_callback);
1670 if (cbi->object == NULL) {
1671 ERROR("java plugin: cjni_callback_info_create: NewGlobalRef failed.");
1677 cbi->class = (*jvm_env)->GetObjectClass(jvm_env, cbi->object);
1678 if (cbi->class == NULL) {
1679 ERROR("java plugin: cjni_callback_info_create: GetObjectClass failed.");
1680 (*jvm_env)->DeleteGlobalRef(jvm_env, cbi->object);
1686 cbi->method = (*jvm_env)->GetMethodID(jvm_env, cbi->class, method_name,
1688 if (cbi->method == NULL) {
1689 ERROR("java plugin: cjni_callback_info_create: "
1690 "Cannot find the `%s' method with signature `%s'.",
1691 method_name, method_signature);
1692 (*jvm_env)->DeleteGlobalRef(jvm_env, cbi->object);
1699 } /* }}} cjni_callback_info_t cjni_callback_info_create */
1701 /* Allocate a `cjni_callback_info_t' via `cjni_callback_info_create' and add it
1702 * to the global `java_callbacks' variable. This is used for `config', `init',
1703 * and `shutdown' callbacks. */
1704 static int cjni_callback_register(JNIEnv *jvm_env, /* {{{ */
1705 jobject o_name, jobject o_callback,
1707 cjni_callback_info_t *cbi;
1708 cjni_callback_info_t *tmp;
1710 const char *type_str;
1713 cbi = cjni_callback_info_create(jvm_env, o_name, o_callback, type);
1719 case CB_TYPE_CONFIG:
1720 type_str = "config";
1727 case CB_TYPE_SHUTDOWN:
1728 type_str = "shutdown";
1735 case CB_TYPE_TARGET:
1736 type_str = "target";
1740 type_str = "<unknown>";
1742 DEBUG("java plugin: Registering new %s callback: %s", type_str, cbi->name);
1745 pthread_mutex_lock(&java_callbacks_lock);
1747 tmp = realloc(java_callbacks,
1748 (java_callbacks_num + 1) * sizeof(*java_callbacks));
1750 pthread_mutex_unlock(&java_callbacks_lock);
1751 ERROR("java plugin: cjni_callback_register: realloc failed.");
1753 (*jvm_env)->DeleteGlobalRef(jvm_env, cbi->object);
1758 java_callbacks = tmp;
1759 java_callbacks[java_callbacks_num] = *cbi;
1760 java_callbacks_num++;
1762 pthread_mutex_unlock(&java_callbacks_lock);
1766 } /* }}} int cjni_callback_register */
1768 /* Callback for `pthread_key_create'. It frees the data contained in
1769 * `jvm_env_key' and prints a warning if the reference counter is not zero. */
1770 static void cjni_jvm_env_destroy(void *args) /* {{{ */
1772 cjni_jvm_env_t *cjni_env;
1777 cjni_env = (cjni_jvm_env_t *)args;
1779 if (cjni_env->reference_counter > 0) {
1780 ERROR("java plugin: cjni_jvm_env_destroy: "
1781 "cjni_env->reference_counter = %i;",
1782 cjni_env->reference_counter);
1785 if (cjni_env->jvm_env != NULL) {
1786 ERROR("java plugin: cjni_jvm_env_destroy: cjni_env->jvm_env = %p;",
1787 (void *)cjni_env->jvm_env);
1790 /* The pointer is allocated in `cjni_thread_attach' */
1792 } /* }}} void cjni_jvm_env_destroy */
1794 /* Register ``native'' functions with the JVM. Native functions are C-functions
1795 * that can be called by Java code. */
1796 static int cjni_init_native(JNIEnv *jvm_env) /* {{{ */
1798 jclass api_class_ptr;
1801 api_class_ptr = (*jvm_env)->FindClass(jvm_env, "org/collectd/api/Collectd");
1802 if (api_class_ptr == NULL) {
1803 ERROR("cjni_init_native: Cannot find the API class \"org.collectd.api"
1804 ".Collectd\". Please set the correct class path "
1805 "using 'JVMArg \"-Djava.class.path=...\"'.");
1809 status = (*jvm_env)->RegisterNatives(
1810 jvm_env, api_class_ptr, jni_api_functions, (jint)jni_api_functions_num);
1812 ERROR("cjni_init_native: RegisterNatives failed with status %i.", status);
1817 } /* }}} int cjni_init_native */
1819 /* Create the JVM. This is called when the first thread tries to access the JVM
1820 * via cjni_thread_attach. */
1821 static int cjni_create_jvm(void) /* {{{ */
1824 JavaVMInitArgs vm_args = {0};
1825 JavaVMOption vm_options[jvm_argc];
1832 status = pthread_key_create(&jvm_env_key, cjni_jvm_env_destroy);
1834 ERROR("java plugin: cjni_create_jvm: pthread_key_create failed "
1842 vm_args.version = JNI_VERSION_1_2;
1843 vm_args.options = vm_options;
1844 vm_args.nOptions = (jint)jvm_argc;
1846 for (size_t i = 0; i < jvm_argc; i++) {
1847 DEBUG("java plugin: cjni_create_jvm: jvm_argv[%" PRIsz "] = %s", i,
1849 vm_args.options[i].optionString = jvm_argv[i];
1852 status = JNI_CreateJavaVM(&jvm, (void *)&jvm_env, (void *)&vm_args);
1854 ERROR("java plugin: cjni_create_jvm: "
1855 "JNI_CreateJavaVM failed with status %i.",
1859 assert(jvm != NULL);
1860 assert(jvm_env != NULL);
1862 /* Call RegisterNatives */
1863 status = cjni_init_native(jvm_env);
1865 ERROR("java plugin: cjni_create_jvm: cjni_init_native failed.");
1869 DEBUG("java plugin: The JVM has been created.");
1871 } /* }}} int cjni_create_jvm */
1873 /* Increase the reference counter to the JVM for this thread. If it was zero,
1874 * attach the JVM first. */
1875 static JNIEnv *cjni_thread_attach(void) /* {{{ */
1877 cjni_jvm_env_t *cjni_env;
1880 /* If we're the first thread to access the JVM, we'll have to create it
1885 status = cjni_create_jvm();
1887 ERROR("java plugin: cjni_thread_attach: cjni_create_jvm failed.");
1891 assert(jvm != NULL);
1893 cjni_env = pthread_getspecific(jvm_env_key);
1894 if (cjni_env == NULL) {
1895 /* This pointer is free'd in `cjni_jvm_env_destroy'. */
1896 cjni_env = calloc(1, sizeof(*cjni_env));
1897 if (cjni_env == NULL) {
1898 ERROR("java plugin: cjni_thread_attach: calloc failed.");
1901 cjni_env->reference_counter = 0;
1902 cjni_env->jvm_env = NULL;
1904 pthread_setspecific(jvm_env_key, cjni_env);
1907 if (cjni_env->reference_counter > 0) {
1908 cjni_env->reference_counter++;
1909 jvm_env = cjni_env->jvm_env;
1912 JavaVMAttachArgs args = {0};
1914 assert(cjni_env->jvm_env == NULL);
1916 args.version = JNI_VERSION_1_2;
1918 status = (*jvm)->AttachCurrentThread(jvm, (void *)&jvm_env, (void *)&args);
1920 ERROR("java plugin: cjni_thread_attach: AttachCurrentThread failed "
1926 cjni_env->reference_counter = 1;
1927 cjni_env->jvm_env = jvm_env;
1930 DEBUG("java plugin: cjni_thread_attach: cjni_env->reference_counter = %i",
1931 cjni_env->reference_counter);
1932 assert(jvm_env != NULL);
1934 } /* }}} JNIEnv *cjni_thread_attach */
1936 /* Decrease the reference counter of this thread. If it reaches zero, detach
1938 static int cjni_thread_detach(void) /* {{{ */
1940 cjni_jvm_env_t *cjni_env;
1943 cjni_env = pthread_getspecific(jvm_env_key);
1944 if (cjni_env == NULL) {
1945 ERROR("java plugin: cjni_thread_detach: pthread_getspecific failed.");
1949 assert(cjni_env->reference_counter > 0);
1950 assert(cjni_env->jvm_env != NULL);
1952 cjni_env->reference_counter--;
1953 DEBUG("java plugin: cjni_thread_detach: cjni_env->reference_counter = %i",
1954 cjni_env->reference_counter);
1956 if (cjni_env->reference_counter > 0)
1959 status = (*jvm)->DetachCurrentThread(jvm);
1961 ERROR("java plugin: cjni_thread_detach: DetachCurrentThread failed "
1966 cjni_env->reference_counter = 0;
1967 cjni_env->jvm_env = NULL;
1970 } /* }}} int cjni_thread_detach */
1972 static int cjni_config_add_jvm_arg(oconfig_item_t *ci) /* {{{ */
1976 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
1977 WARNING("java plugin: `JVMArg' needs exactly one string argument.");
1982 ERROR("java plugin: All `JVMArg' options MUST appear before all "
1983 "`LoadPlugin' options! The JVM is already started and I have to "
1984 "ignore this argument: %s",
1985 ci->values[0].value.string);
1989 tmp = realloc(jvm_argv, sizeof(char *) * (jvm_argc + 1));
1991 ERROR("java plugin: realloc failed.");
1996 jvm_argv[jvm_argc] = strdup(ci->values[0].value.string);
1997 if (jvm_argv[jvm_argc] == NULL) {
1998 ERROR("java plugin: strdup failed.");
2004 } /* }}} int cjni_config_add_jvm_arg */
2006 static int cjni_config_load_plugin(oconfig_item_t *ci) /* {{{ */
2009 java_plugin_class_t *class;
2010 jmethodID constructor_id;
2013 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
2014 WARNING("java plugin: `LoadPlugin' needs exactly one string argument.");
2018 jvm_env = cjni_thread_attach();
2019 if (jvm_env == NULL)
2022 class = realloc(java_classes_list,
2023 (java_classes_list_len + 1) * sizeof(*java_classes_list));
2024 if (class == NULL) {
2025 ERROR("java plugin: realloc failed.");
2026 cjni_thread_detach();
2029 java_classes_list = class;
2030 class = java_classes_list + java_classes_list_len;
2032 memset(class, 0, sizeof(*class));
2033 class->name = strdup(ci->values[0].value.string);
2034 if (class->name == NULL) {
2035 ERROR("java plugin: strdup failed.");
2036 cjni_thread_detach();
2039 class->class = NULL;
2040 class->object = NULL;
2042 { /* Replace all dots ('.') with slashes ('/'). Dots are usually used
2043 thorough the Java community, but (Sun's) `FindClass' and friends need
2045 for (size_t i = 0; class->name[i] != 0; i++)
2046 if (class->name[i] == '.')
2047 class->name[i] = '/';
2050 DEBUG("java plugin: Loading class %s", class->name);
2052 class->class = (*jvm_env)->FindClass(jvm_env, class->name);
2053 if (class->class == NULL) {
2054 ERROR("java plugin: cjni_config_load_plugin: FindClass (%s) failed.",
2056 cjni_thread_detach();
2062 (*jvm_env)->GetMethodID(jvm_env, class->class, "<init>", "()V");
2063 if (constructor_id == NULL) {
2064 ERROR("java plugin: cjni_config_load_plugin: "
2065 "Could not find the constructor for `%s'.",
2067 cjni_thread_detach();
2072 tmp_object = (*jvm_env)->NewObject(jvm_env, class->class, constructor_id);
2073 if (tmp_object != NULL)
2074 class->object = (*jvm_env)->NewGlobalRef(jvm_env, tmp_object);
2076 class->object = NULL;
2077 if (class->object == NULL) {
2078 ERROR("java plugin: cjni_config_load_plugin: "
2079 "Could create a new `%s' object.",
2081 cjni_thread_detach();
2086 cjni_thread_detach();
2088 java_classes_list_len++;
2091 } /* }}} int cjni_config_load_plugin */
2093 static int cjni_config_plugin_block(oconfig_item_t *ci) /* {{{ */
2096 cjni_callback_info_t *cbi;
2103 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
2104 WARNING("java plugin: `Plugin' blocks "
2105 "need exactly one string argument.");
2109 name = ci->values[0].value.string;
2112 for (size_t i = 0; i < java_callbacks_num; i++) {
2113 if (java_callbacks[i].type != CB_TYPE_CONFIG)
2116 if (strcmp(name, java_callbacks[i].name) != 0)
2119 cbi = java_callbacks + i;
2124 NOTICE("java plugin: Configuration block for `%s' found, but no such "
2125 "configuration callback has been registered. Please make sure, the "
2126 "`LoadPlugin' lines precede the `Plugin' blocks.",
2131 DEBUG("java plugin: Configuring %s", name);
2133 jvm_env = cjni_thread_attach();
2134 if (jvm_env == NULL)
2137 o_ocitem = ctoj_oconfig_item(jvm_env, ci);
2138 if (o_ocitem == NULL) {
2139 ERROR("java plugin: cjni_config_plugin_block: ctoj_oconfig_item failed.");
2140 cjni_thread_detach();
2144 class = (*jvm_env)->GetObjectClass(jvm_env, cbi->object);
2145 method = (*jvm_env)->GetMethodID(jvm_env, class, "config",
2146 "(Lorg/collectd/api/OConfigItem;)I");
2148 (*jvm_env)->CallIntMethod(jvm_env, cbi->object, method, o_ocitem);
2150 (*jvm_env)->DeleteLocalRef(jvm_env, o_ocitem);
2151 cjni_thread_detach();
2153 } /* }}} int cjni_config_plugin_block */
2155 static int cjni_config_perform(oconfig_item_t *ci) /* {{{ */
2164 for (int i = 0; i < ci->children_num; i++) {
2165 oconfig_item_t *child = ci->children + i;
2167 if (strcasecmp("JVMArg", child->key) == 0) {
2168 status = cjni_config_add_jvm_arg(child);
2173 } else if (strcasecmp("LoadPlugin", child->key) == 0) {
2174 status = cjni_config_load_plugin(child);
2179 } else if (strcasecmp("Plugin", child->key) == 0) {
2180 status = cjni_config_plugin_block(child);
2186 WARNING("java plugin: Option `%s' not allowed here.", child->key);
2191 DEBUG("java plugin: jvm_argc = %" PRIsz ";", jvm_argc);
2192 DEBUG("java plugin: java_classes_list_len = %" PRIsz ";",
2193 java_classes_list_len);
2195 if ((success == 0) && (errors > 0)) {
2196 ERROR("java plugin: All statements failed.");
2201 } /* }}} int cjni_config_perform */
2203 /* Copy the children of `ci' to the global `config_block' variable. */
2204 static int cjni_config_callback(oconfig_item_t *ci) /* {{{ */
2206 oconfig_item_t *ci_copy;
2207 oconfig_item_t *tmp;
2210 if (ci->children_num == 0)
2211 return 0; /* nothing to do */
2213 ci_copy = oconfig_clone(ci);
2214 if (ci_copy == NULL) {
2215 ERROR("java plugin: oconfig_clone failed.");
2219 if (config_block == NULL) {
2220 config_block = ci_copy;
2224 tmp = realloc(config_block->children,
2225 (config_block->children_num + ci_copy->children_num) *
2228 ERROR("java plugin: realloc failed.");
2229 oconfig_free(ci_copy);
2232 config_block->children = tmp;
2234 /* Copy the pointers */
2235 memcpy(config_block->children + config_block->children_num, ci_copy->children,
2236 ci_copy->children_num * sizeof(*ci_copy->children));
2237 config_block->children_num += ci_copy->children_num;
2239 /* Delete the pointers from the copy, so `oconfig_free' can't free them. */
2240 memset(ci_copy->children, 0,
2241 ci_copy->children_num * sizeof(*ci_copy->children));
2242 ci_copy->children_num = 0;
2244 oconfig_free(ci_copy);
2247 } /* }}} int cjni_config_callback */
2249 /* Free the data contained in the `user_data_t' pointer passed to `cjni_read'
2250 * and `cjni_write'. In particular, delete the global reference to the Java
2252 static void cjni_callback_info_destroy(void *arg) /* {{{ */
2255 cjni_callback_info_t *cbi;
2257 DEBUG("java plugin: cjni_callback_info_destroy (arg = %p);", arg);
2259 cbi = (cjni_callback_info_t *)arg;
2261 /* This condition can occur when shutting down. */
2270 jvm_env = cjni_thread_attach();
2271 if (jvm_env == NULL) {
2273 "java plugin: cjni_callback_info_destroy: cjni_thread_attach failed.");
2277 (*jvm_env)->DeleteGlobalRef(jvm_env, cbi->object);
2284 cjni_thread_detach();
2285 } /* }}} void cjni_callback_info_destroy */
2287 /* Call the CB_TYPE_READ callback pointed to by the `user_data_t' pointer. */
2288 static int cjni_read(user_data_t *ud) /* {{{ */
2291 cjni_callback_info_t *cbi;
2295 ERROR("java plugin: cjni_read: jvm == NULL");
2299 if ((ud == NULL) || (ud->data == NULL)) {
2300 ERROR("java plugin: cjni_read: Invalid user data.");
2304 jvm_env = cjni_thread_attach();
2305 if (jvm_env == NULL)
2308 cbi = (cjni_callback_info_t *)ud->data;
2310 ret_status = (*jvm_env)->CallIntMethod(jvm_env, cbi->object, cbi->method);
2312 cjni_thread_detach();
2314 } /* }}} int cjni_read */
2316 /* Call the CB_TYPE_WRITE callback pointed to by the `user_data_t' pointer. */
2317 static int cjni_write(const data_set_t *ds, const value_list_t *vl, /* {{{ */
2320 cjni_callback_info_t *cbi;
2325 ERROR("java plugin: cjni_write: jvm == NULL");
2329 if ((ud == NULL) || (ud->data == NULL)) {
2330 ERROR("java plugin: cjni_write: Invalid user data.");
2334 jvm_env = cjni_thread_attach();
2335 if (jvm_env == NULL)
2338 cbi = (cjni_callback_info_t *)ud->data;
2340 vl_java = ctoj_value_list(jvm_env, ds, vl);
2341 if (vl_java == NULL) {
2342 ERROR("java plugin: cjni_write: ctoj_value_list failed.");
2343 cjni_thread_detach();
2348 (*jvm_env)->CallIntMethod(jvm_env, cbi->object, cbi->method, vl_java);
2350 (*jvm_env)->DeleteLocalRef(jvm_env, vl_java);
2352 cjni_thread_detach();
2354 } /* }}} int cjni_write */
2356 /* Call the CB_TYPE_FLUSH callback pointed to by the `user_data_t' pointer. */
2357 static int cjni_flush(cdtime_t timeout, const char *identifier, /* {{{ */
2360 cjni_callback_info_t *cbi;
2362 jobject o_identifier;
2366 ERROR("java plugin: cjni_flush: jvm == NULL");
2370 if ((ud == NULL) || (ud->data == NULL)) {
2371 ERROR("java plugin: cjni_flush: Invalid user data.");
2375 jvm_env = cjni_thread_attach();
2376 if (jvm_env == NULL)
2379 cbi = (cjni_callback_info_t *)ud->data;
2382 ctoj_jdouble_to_number(jvm_env, (jdouble)CDTIME_T_TO_DOUBLE(timeout));
2383 if (o_timeout == NULL) {
2384 ERROR("java plugin: cjni_flush: Converting double "
2385 "to Number object failed.");
2386 cjni_thread_detach();
2390 o_identifier = NULL;
2391 if (identifier != NULL) {
2392 o_identifier = (*jvm_env)->NewStringUTF(jvm_env, identifier);
2393 if (o_identifier == NULL) {
2394 (*jvm_env)->DeleteLocalRef(jvm_env, o_timeout);
2395 ERROR("java plugin: cjni_flush: NewStringUTF failed.");
2396 cjni_thread_detach();
2401 ret_status = (*jvm_env)->CallIntMethod(jvm_env, cbi->object, cbi->method,
2402 o_timeout, o_identifier);
2404 (*jvm_env)->DeleteLocalRef(jvm_env, o_identifier);
2405 (*jvm_env)->DeleteLocalRef(jvm_env, o_timeout);
2407 cjni_thread_detach();
2409 } /* }}} int cjni_flush */
2411 /* Call the CB_TYPE_LOG callback pointed to by the `user_data_t' pointer. */
2412 static void cjni_log(int severity, const char *message, /* {{{ */
2415 cjni_callback_info_t *cbi;
2421 if ((ud == NULL) || (ud->data == NULL))
2424 jvm_env = cjni_thread_attach();
2425 if (jvm_env == NULL)
2428 cbi = (cjni_callback_info_t *)ud->data;
2430 o_message = (*jvm_env)->NewStringUTF(jvm_env, message);
2431 if (o_message == NULL) {
2432 cjni_thread_detach();
2436 (*jvm_env)->CallVoidMethod(jvm_env, cbi->object, cbi->method, (jint)severity,
2439 (*jvm_env)->DeleteLocalRef(jvm_env, o_message);
2441 cjni_thread_detach();
2442 } /* }}} void cjni_log */
2444 /* Call the CB_TYPE_NOTIFICATION callback pointed to by the `user_data_t'
2446 static int cjni_notification(const notification_t *n, /* {{{ */
2449 cjni_callback_info_t *cbi;
2450 jobject o_notification;
2454 ERROR("java plugin: cjni_read: jvm == NULL");
2458 if ((ud == NULL) || (ud->data == NULL)) {
2459 ERROR("java plugin: cjni_read: Invalid user data.");
2463 jvm_env = cjni_thread_attach();
2464 if (jvm_env == NULL)
2467 cbi = (cjni_callback_info_t *)ud->data;
2469 o_notification = ctoj_notification(jvm_env, n);
2470 if (o_notification == NULL) {
2471 ERROR("java plugin: cjni_notification: ctoj_notification failed.");
2472 cjni_thread_detach();
2476 ret_status = (*jvm_env)->CallIntMethod(jvm_env, cbi->object, cbi->method,
2479 (*jvm_env)->DeleteLocalRef(jvm_env, o_notification);
2481 cjni_thread_detach();
2483 } /* }}} int cjni_notification */
2485 /* Callbacks for matches implemented in Java */
2486 static int cjni_match_target_create(const oconfig_item_t *ci, /* {{{ */
2489 cjni_callback_info_t *cbi_ret;
2490 cjni_callback_info_t *cbi_factory;
2500 #define BAIL_OUT(status) \
2501 if (cbi_ret != NULL) { \
2502 free(cbi_ret->name); \
2503 if ((jvm_env != NULL) && (cbi_ret->object != NULL)) \
2504 (*jvm_env)->DeleteLocalRef(jvm_env, cbi_ret->object); \
2508 (*jvm_env)->DeleteLocalRef(jvm_env, o_ci); \
2509 cjni_thread_detach(); \
2513 ERROR("java plugin: cjni_read: jvm == NULL");
2517 jvm_env = cjni_thread_attach();
2518 if (jvm_env == NULL)
2521 /* Find out whether to create a match or a target. */
2522 if (strcasecmp("Match", ci->key) == 0)
2523 type = CB_TYPE_MATCH;
2524 else if (strcasecmp("Target", ci->key) == 0)
2525 type = CB_TYPE_TARGET;
2527 ERROR("java plugin: cjni_match_target_create: Can't figure out whether "
2528 "to create a match or a target.");
2532 /* This is the name of the match we should create. */
2533 name = ci->values[0].value.string;
2535 /* Lets see if we have a matching factory here.. */
2537 for (size_t i = 0; i < java_callbacks_num; i++) {
2538 if (java_callbacks[i].type != type)
2541 if (strcmp(name, java_callbacks[i].name) != 0)
2544 cbi_factory = java_callbacks + i;
2548 /* Nope, no factory for that name.. */
2549 if (cbi_factory == NULL) {
2550 ERROR("java plugin: cjni_match_target_create: "
2551 "No such match factory registered: %s",
2556 /* We convert `ci' to its Java equivalent.. */
2557 o_ci = ctoj_oconfig_item(jvm_env, ci);
2559 ERROR("java plugin: cjni_match_target_create: "
2560 "ctoj_oconfig_item failed.");
2564 /* Allocate a new callback info structure. This is going to be our user_data
2566 cbi_ret = calloc(1, sizeof(*cbi_ret));
2567 if (cbi_ret == NULL) {
2568 ERROR("java plugin: cjni_match_target_create: calloc failed.");
2572 cbi_ret->object = NULL;
2573 cbi_ret->type = type;
2575 /* Lets fill the callback info structure.. First, the name: */
2576 cbi_ret->name = strdup(name);
2577 if (cbi_ret->name == NULL) {
2578 ERROR("java plugin: cjni_match_target_create: strdup failed.");
2582 /* Then call the factory method so it creates a new object for us. */
2583 o_tmp = (*jvm_env)->CallObjectMethod(jvm_env, cbi_factory->object,
2584 cbi_factory->method, o_ci);
2585 if (o_tmp == NULL) {
2586 ERROR("java plugin: cjni_match_target_create: CallObjectMethod failed.");
2590 cbi_ret->object = (*jvm_env)->NewGlobalRef(jvm_env, o_tmp);
2591 if (o_tmp == NULL) {
2592 ERROR("java plugin: cjni_match_target_create: NewGlobalRef failed.");
2596 /* This is the class of the match. It is possibly different from the class of
2597 * the match-factory! */
2598 cbi_ret->class = (*jvm_env)->GetObjectClass(jvm_env, cbi_ret->object);
2599 if (cbi_ret->class == NULL) {
2600 ERROR("java plugin: cjni_match_target_create: GetObjectClass failed.");
2604 /* Lookup the `int match (DataSet, ValueList)' method. */
2605 cbi_ret->method = (*jvm_env)->GetMethodID(
2606 jvm_env, cbi_ret->class,
2607 /* method name = */ (type == CB_TYPE_MATCH) ? "match" : "invoke",
2608 "(Lorg/collectd/api/DataSet;Lorg/collectd/api/ValueList;)I");
2609 if (cbi_ret->method == NULL) {
2610 ERROR("java plugin: cjni_match_target_create: GetMethodID failed.");
2614 /* Return the newly created match via the user_data pointer. */
2615 *user_data = (void *)cbi_ret;
2617 cjni_thread_detach();
2619 DEBUG("java plugin: cjni_match_target_create: "
2620 "Successfully created a `%s' %s.",
2621 cbi_ret->name, (type == CB_TYPE_MATCH) ? "match" : "target");
2626 } /* }}} int cjni_match_target_create */
2628 static int cjni_match_target_destroy(void **user_data) /* {{{ */
2630 cjni_callback_info_destroy(*user_data);
2634 } /* }}} int cjni_match_target_destroy */
2636 static int cjni_match_target_invoke(const data_set_t *ds, /* {{{ */
2638 notification_meta_t **meta,
2641 cjni_callback_info_t *cbi;
2648 ERROR("java plugin: cjni_match_target_invoke: jvm == NULL");
2652 jvm_env = cjni_thread_attach();
2653 if (jvm_env == NULL)
2656 cbi = (cjni_callback_info_t *)*user_data;
2658 o_vl = ctoj_value_list(jvm_env, ds, vl);
2660 ERROR("java plugin: cjni_match_target_invoke: ctoj_value_list failed.");
2661 cjni_thread_detach();
2665 o_ds = ctoj_data_set(jvm_env, ds);
2667 ERROR("java plugin: cjni_match_target_invoke: ctoj_value_list failed.");
2668 cjni_thread_detach();
2673 (*jvm_env)->CallIntMethod(jvm_env, cbi->object, cbi->method, o_ds, o_vl);
2675 DEBUG("java plugin: cjni_match_target_invoke: Method returned %i.",
2678 /* If we're executing a target, copy the `ValueList' back to our
2679 * `value_list_t'. */
2680 if (cbi->type == CB_TYPE_TARGET) {
2681 value_list_t new_vl = {0};
2683 status = jtoc_value_list(jvm_env, &new_vl, o_vl);
2685 ERROR("java plugin: cjni_match_target_invoke: "
2686 "jtoc_value_list failed.");
2687 } else /* if (status == 0) */
2689 /* plugin_dispatch_values assures that this is dynamically allocated
2693 /* This will replace the vl->values pointer to a new, dynamically
2694 * allocated piece of memory. */
2695 memcpy(vl, &new_vl, sizeof(*vl));
2697 } /* if (cbi->type == CB_TYPE_TARGET) */
2699 cjni_thread_detach();
2701 } /* }}} int cjni_match_target_invoke */
2703 /* Iterate over `java_callbacks' and call all CB_TYPE_INIT callbacks. */
2704 static int cjni_init_plugins(JNIEnv *jvm_env) /* {{{ */
2708 for (size_t i = 0; i < java_callbacks_num; i++) {
2709 if (java_callbacks[i].type != CB_TYPE_INIT)
2712 DEBUG("java plugin: Initializing %s", java_callbacks[i].name);
2714 status = (*jvm_env)->CallIntMethod(jvm_env, java_callbacks[i].object,
2715 java_callbacks[i].method);
2717 ERROR("java plugin: Initializing `%s' failed with status %i. "
2718 "Removing read function.",
2719 java_callbacks[i].name, status);
2720 plugin_unregister_read(java_callbacks[i].name);
2725 } /* }}} int cjni_init_plugins */
2727 /* Iterate over `java_callbacks' and call all CB_TYPE_SHUTDOWN callbacks. */
2728 static int cjni_shutdown_plugins(JNIEnv *jvm_env) /* {{{ */
2732 for (size_t i = 0; i < java_callbacks_num; i++) {
2733 if (java_callbacks[i].type != CB_TYPE_SHUTDOWN)
2736 DEBUG("java plugin: Shutting down %s", java_callbacks[i].name);
2738 status = (*jvm_env)->CallIntMethod(jvm_env, java_callbacks[i].object,
2739 java_callbacks[i].method);
2741 ERROR("java plugin: Shutting down `%s' failed with status %i. ",
2742 java_callbacks[i].name, status);
2747 } /* }}} int cjni_shutdown_plugins */
2749 static int cjni_shutdown(void) /* {{{ */
2752 JavaVMAttachArgs args = {0};
2759 args.version = JNI_VERSION_1_2;
2761 status = (*jvm)->AttachCurrentThread(jvm, (void *)&jvm_env, &args);
2763 ERROR("java plugin: cjni_shutdown: AttachCurrentThread failed with status "
2769 /* Execute all the shutdown functions registered by plugins. */
2770 cjni_shutdown_plugins(jvm_env);
2772 /* Release all the global references to callback functions */
2773 for (size_t i = 0; i < java_callbacks_num; i++) {
2774 if (java_callbacks[i].object != NULL) {
2775 (*jvm_env)->DeleteGlobalRef(jvm_env, java_callbacks[i].object);
2776 java_callbacks[i].object = NULL;
2778 sfree(java_callbacks[i].name);
2780 java_callbacks_num = 0;
2781 sfree(java_callbacks);
2783 /* Release all the global references to directly loaded classes. */
2784 for (size_t i = 0; i < java_classes_list_len; i++) {
2785 if (java_classes_list[i].object != NULL) {
2786 (*jvm_env)->DeleteGlobalRef(jvm_env, java_classes_list[i].object);
2787 java_classes_list[i].object = NULL;
2789 sfree(java_classes_list[i].name);
2791 java_classes_list_len = 0;
2792 sfree(java_classes_list);
2794 /* Destroy the JVM */
2795 DEBUG("java plugin: Destroying the JVM.");
2796 (*jvm)->DestroyJavaVM(jvm);
2800 pthread_key_delete(jvm_env_key);
2802 /* Free the JVM argument list */
2803 for (size_t i = 0; i < jvm_argc; i++)
2809 } /* }}} int cjni_shutdown */
2811 /* Initialization: Create a JVM, load all configured classes and call their
2812 * `config' and `init' callback methods. */
2813 static int cjni_init(void) /* {{{ */
2817 if ((config_block == NULL) && (jvm == NULL)) {
2818 ERROR("java plugin: cjni_init: No configuration block for "
2819 "the java plugin was found.");
2823 if (config_block != NULL) {
2824 cjni_config_perform(config_block);
2825 oconfig_free(config_block);
2829 ERROR("java plugin: cjni_init: jvm == NULL");
2833 jvm_env = cjni_thread_attach();
2834 if (jvm_env == NULL)
2837 cjni_init_plugins(jvm_env);
2839 cjni_thread_detach();
2841 } /* }}} int cjni_init */
2843 void module_register(void) {
2844 plugin_register_complex_config("java", cjni_config_callback);
2845 plugin_register_init("java", cjni_init);
2846 plugin_register_shutdown("java", cjni_shutdown);
2847 } /* void module_register (void) */