Merge branch 'collectd-5.7' into collectd-5.8
[collectd.git] / src / java.c
1 /**
2  * collectd - src/java.c
3  * Copyright (C) 2009  Florian octo Forster
4  * Copyright (C) 2008  Justo Alonso Achaques
5  *
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.
9  *
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.
14  *
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
18  *
19  * Authors:
20  *   Florian octo Forster <octo at collectd.org>
21  *   Justo Alonso Achaques <justo.alonso at gmail.com>
22  **/
23
24 #include "collectd.h"
25
26 #include "common.h"
27 #include "filter_chain.h"
28 #include "plugin.h"
29
30 #include <jni.h>
31
32 #if !defined(JNI_VERSION_1_2)
33 #error "Need JNI 1.2 compatible interface!"
34 #endif
35
36 /*
37  * Types
38  */
39 struct cjni_jvm_env_s /* {{{ */
40 {
41   JNIEnv *jvm_env;
42   int reference_counter;
43 };
44 typedef struct cjni_jvm_env_s cjni_jvm_env_t;
45 /* }}} */
46
47 struct java_plugin_class_s /* {{{ */
48 {
49   char *name;
50   jclass class;
51   jobject object;
52 };
53 typedef struct java_plugin_class_s java_plugin_class_t;
54 /* }}} */
55
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
62 #define CB_TYPE_LOG 7
63 #define CB_TYPE_NOTIFICATION 8
64 #define CB_TYPE_MATCH 9
65 #define CB_TYPE_TARGET 10
66 struct cjni_callback_info_s /* {{{ */
67 {
68   char *name;
69   int type;
70   jclass class;
71   jobject object;
72   jmethodID method;
73 };
74 typedef struct cjni_callback_info_s cjni_callback_info_t;
75 /* }}} */
76
77 /*
78  * Global variables
79  */
80 static JavaVM *jvm = NULL;
81 static pthread_key_t jvm_env_key;
82
83 /* Configuration options for the JVM. */
84 static char **jvm_argv = NULL;
85 static size_t jvm_argc = 0;
86
87 /* List of class names to load */
88 static java_plugin_class_t *java_classes_list = NULL;
89 static size_t java_classes_list_len;
90
91 /* List of config, init, and shutdown callbacks. */
92 static cjni_callback_info_t *java_callbacks = NULL;
93 static size_t java_callbacks_num = 0;
94 static pthread_mutex_t java_callbacks_lock = PTHREAD_MUTEX_INITIALIZER;
95
96 static oconfig_item_t *config_block = NULL;
97
98 /*
99  * Prototypes
100  *
101  * Mostly functions that are needed by the Java interface (``native'')
102  * functions.
103  */
104 static void cjni_callback_info_destroy(void *arg);
105 static cjni_callback_info_t *cjni_callback_info_create(JNIEnv *jvm_env,
106                                                        jobject o_name,
107                                                        jobject o_callback,
108                                                        int type);
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,
113                       user_data_t *ud);
114 static int cjni_flush(cdtime_t timeout, const char *identifier,
115                       user_data_t *ud);
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);
118
119 /* Create, destroy, and match/invoke functions, used by both, matches AND
120  * targets. */
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,
125                                     void **user_data);
126
127 /*
128  * C to Java conversion functions
129  */
130 static int ctoj_string(JNIEnv *jvm_env, /* {{{ */
131                        const char *string, jclass class_ptr, jobject object_ptr,
132                        const char *method_name) {
133   jmethodID m_set;
134   jstring o_string;
135
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.");
140     return -1;
141   }
142
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");
146   if (m_set == NULL) {
147     ERROR("java plugin: ctoj_string: Cannot find method `void %s (String)'.",
148           method_name);
149     (*jvm_env)->DeleteLocalRef(jvm_env, o_string);
150     return -1;
151   }
152
153   /* Call the method. */
154   (*jvm_env)->CallVoidMethod(jvm_env, object_ptr, m_set, o_string);
155
156   /* Decrease reference counter on the java.lang.String object. */
157   (*jvm_env)->DeleteLocalRef(jvm_env, o_string);
158
159   return 0;
160 } /* }}} int ctoj_string */
161
162 static jstring ctoj_output_string(JNIEnv *jvm_env, /* {{{ */
163                                   const char *string) {
164   jstring o_string;
165
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.");
170     return NULL;
171   }
172
173   return o_string;
174 } /* }}} int ctoj_output_string */
175
176 static int ctoj_int(JNIEnv *jvm_env, /* {{{ */
177                     jint value, jclass class_ptr, jobject object_ptr,
178                     const char *method_name) {
179   jmethodID m_set;
180
181   /* Search for the `void setFoo (int i)' method. */
182   m_set = (*jvm_env)->GetMethodID(jvm_env, class_ptr, method_name, "(I)V");
183   if (m_set == NULL) {
184     ERROR("java plugin: ctoj_int: Cannot find method `void %s (int)'.",
185           method_name);
186     return -1;
187   }
188
189   (*jvm_env)->CallVoidMethod(jvm_env, object_ptr, m_set, value);
190
191   return 0;
192 } /* }}} int ctoj_int */
193
194 static int ctoj_long(JNIEnv *jvm_env, /* {{{ */
195                      jlong value, jclass class_ptr, jobject object_ptr,
196                      const char *method_name) {
197   jmethodID m_set;
198
199   /* Search for the `void setFoo (long l)' method. */
200   m_set = (*jvm_env)->GetMethodID(jvm_env, class_ptr, method_name, "(J)V");
201   if (m_set == NULL) {
202     ERROR("java plugin: ctoj_long: Cannot find method `void %s (long)'.",
203           method_name);
204     return -1;
205   }
206
207   (*jvm_env)->CallVoidMethod(jvm_env, object_ptr, m_set, value);
208
209   return 0;
210 } /* }}} int ctoj_long */
211
212 static int ctoj_double(JNIEnv *jvm_env, /* {{{ */
213                        jdouble value, jclass class_ptr, jobject object_ptr,
214                        const char *method_name) {
215   jmethodID m_set;
216
217   /* Search for the `void setFoo (double d)' method. */
218   m_set = (*jvm_env)->GetMethodID(jvm_env, class_ptr, method_name, "(D)V");
219   if (m_set == NULL) {
220     ERROR("java plugin: ctoj_double: Cannot find method `void %s (double)'.",
221           method_name);
222     return -1;
223   }
224
225   (*jvm_env)->CallVoidMethod(jvm_env, object_ptr, m_set, value);
226
227   return 0;
228 } /* }}} int ctoj_double */
229
230 /* Convert a jlong to a java.lang.Number */
231 static jobject ctoj_jlong_to_number(JNIEnv *jvm_env, jlong value) /* {{{ */
232 {
233   jclass c_long;
234   jmethodID m_long_constructor;
235
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.");
241     return NULL;
242   }
243
244   m_long_constructor =
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.");
249     return NULL;
250   }
251
252   return (*jvm_env)->NewObject(jvm_env, c_long, m_long_constructor, value);
253 } /* }}} jobject ctoj_jlong_to_number */
254
255 /* Convert a jdouble to a java.lang.Number */
256 static jobject ctoj_jdouble_to_number(JNIEnv *jvm_env, jdouble value) /* {{{ */
257 {
258   jclass c_double;
259   jmethodID m_double_constructor;
260
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.");
266     return NULL;
267   }
268
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.");
274     return NULL;
275   }
276
277   return (*jvm_env)->NewObject(jvm_env, c_double, m_double_constructor, value);
278 } /* }}} jobject ctoj_jdouble_to_number */
279
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);
291   else
292     return NULL;
293 } /* }}} jobject ctoj_value_to_number */
294
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) {
298   jclass c_datasource;
299   jmethodID m_datasource_constructor;
300   jobject o_datasource;
301   int status;
302
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.");
308     return NULL;
309   }
310
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.");
317     return NULL;
318   }
319
320   /* Create a new instance. */
321   o_datasource =
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.");
326     return NULL;
327   }
328
329   /* Set name via `void setName (String name)' */
330   status =
331       ctoj_string(jvm_env, dsrc->name, c_datasource, o_datasource, "setName");
332   if (status != 0) {
333     ERROR("java plugin: ctoj_data_source: "
334           "ctoj_string (setName) failed.");
335     (*jvm_env)->DeleteLocalRef(jvm_env, o_datasource);
336     return NULL;
337   }
338
339   /* Set type via `void setType (int type)' */
340   status = ctoj_int(jvm_env, dsrc->type, c_datasource, o_datasource, "setType");
341   if (status != 0) {
342     ERROR("java plugin: ctoj_data_source: "
343           "ctoj_int (setType) failed.");
344     (*jvm_env)->DeleteLocalRef(jvm_env, o_datasource);
345     return NULL;
346   }
347
348   /* Set min via `void setMin (double min)' */
349   status =
350       ctoj_double(jvm_env, dsrc->min, c_datasource, o_datasource, "setMin");
351   if (status != 0) {
352     ERROR("java plugin: ctoj_data_source: "
353           "ctoj_double (setMin) failed.");
354     (*jvm_env)->DeleteLocalRef(jvm_env, o_datasource);
355     return NULL;
356   }
357
358   /* Set max via `void setMax (double max)' */
359   status =
360       ctoj_double(jvm_env, dsrc->max, c_datasource, o_datasource, "setMax");
361   if (status != 0) {
362     ERROR("java plugin: ctoj_data_source: "
363           "ctoj_double (setMax) failed.");
364     (*jvm_env)->DeleteLocalRef(jvm_env, o_datasource);
365     return NULL;
366   }
367
368   return o_datasource;
369 } /* }}} jobject ctoj_data_source */
370
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) {
374   jclass c_ocvalue;
375   jmethodID m_ocvalue_constructor;
376   jobject o_argument;
377   jobject o_ocvalue;
378
379   m_ocvalue_constructor = NULL;
380   o_argument = NULL;
381
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.");
386     return NULL;
387   }
388
389   if (ocvalue.type == OCONFIG_TYPE_BOOLEAN) {
390     jboolean tmp_boolean;
391
392     tmp_boolean = (ocvalue.value.boolean == 0) ? JNI_FALSE : JNI_TRUE;
393
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.");
399       return NULL;
400     }
401
402     return (*jvm_env)->NewObject(jvm_env, c_ocvalue, m_ocvalue_constructor,
403                                  tmp_boolean);
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.");
411       return NULL;
412     }
413
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.");
418       return NULL;
419     }
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.");
426       return NULL;
427     }
428
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.");
433       return NULL;
434     }
435   } else {
436     return NULL;
437   }
438
439   assert(m_ocvalue_constructor != NULL);
440   assert(o_argument != NULL);
441
442   o_ocvalue = (*jvm_env)->NewObject(jvm_env, c_ocvalue, m_ocvalue_constructor,
443                                     o_argument);
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);
448     return NULL;
449   }
450
451   (*jvm_env)->DeleteLocalRef(jvm_env, o_argument);
452   return o_ocvalue;
453 } /* }}} jobject ctoj_oconfig_value */
454
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) {
458   jclass c_ocitem;
459   jmethodID m_ocitem_constructor;
460   jmethodID m_addvalue;
461   jmethodID m_addchild;
462   jobject o_key;
463   jobject o_ocitem;
464
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.");
469     return NULL;
470   }
471
472   /* Get the required methods: m_ocitem_constructor, m_addvalue, and m_addchild
473    * {{{ */
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.");
479     return NULL;
480   }
481
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.");
487     return NULL;
488   }
489
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.");
495     return NULL;
496   }
497   /* }}} */
498
499   /* Create a String object with the key.
500    * Needed for calling the constructor. */
501   o_key = (*jvm_env)->NewStringUTF(jvm_env, ci->key);
502   if (o_key == NULL) {
503     ERROR("java plugin: ctoj_oconfig_item: "
504           "Creating String object failed.");
505     return NULL;
506   }
507
508   /* Create an OConfigItem object */
509   o_ocitem =
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);
515     return NULL;
516   }
517
518   /* We don't need the String object any longer.. */
519   (*jvm_env)->DeleteLocalRef(jvm_env, o_key);
520
521   /* Call OConfigItem.addValue for each value */
522   for (int i = 0; i < ci->values_num; i++) /* {{{ */
523   {
524     jobject o_value;
525
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);
531       return NULL;
532     }
533
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++) */
537
538   /* Call OConfigItem.addChild for each child */
539   for (int i = 0; i < ci->children_num; i++) /* {{{ */
540   {
541     jobject o_child;
542
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);
548       return NULL;
549     }
550
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++) */
554
555   return o_ocitem;
556 } /* }}} jobject ctoj_oconfig_item */
557
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) /* {{{ */
560 {
561   jclass c_dataset;
562   jmethodID m_constructor;
563   jmethodID m_add;
564   jobject o_type;
565   jobject o_dataset;
566
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.");
572     return NULL;
573   }
574
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.");
581     return NULL;
582   }
583
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");
587   if (m_add == NULL) {
588     ERROR("java plugin: ctoj_data_set: Looking up the "
589           "`addDataSource (DataSource)' method failed.");
590     return NULL;
591   }
592
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.");
596     return NULL;
597   }
598
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);
603     return NULL;
604   }
605
606   /* Decrease reference counter on the java.lang.String object. */
607   (*jvm_env)->DeleteLocalRef(jvm_env, o_type);
608
609   for (size_t i = 0; i < ds->ds_num; i++) {
610     jobject o_datasource;
611
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);
617       return NULL;
618     }
619
620     (*jvm_env)->CallVoidMethod(jvm_env, o_dataset, m_add, o_datasource);
621
622     (*jvm_env)->DeleteLocalRef(jvm_env, o_datasource);
623   } /* for (i = 0; i < ds->ds_num; i++) */
624
625   return o_dataset;
626 } /* }}} jobject ctoj_data_set */
627
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;
632   jobject o_number;
633
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)'.");
639     return -1;
640   }
641
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.");
646     return -1;
647   }
648
649   (*jvm_env)->CallVoidMethod(jvm_env, object_ptr, m_addvalue, o_number);
650
651   (*jvm_env)->DeleteLocalRef(jvm_env, o_number);
652
653   return 0;
654 } /* }}} int ctoj_value_list_add_value */
655
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;
660   jobject o_dataset;
661
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.");
668     return -1;
669   }
670
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.",
676           ds->type);
677     return -1;
678   }
679
680   /* Actually call the method. */
681   (*jvm_env)->CallVoidMethod(jvm_env, o_valuelist, m_setdataset, o_dataset);
682
683   /* Decrease reference counter on the List<DataSource> object. */
684   (*jvm_env)->DeleteLocalRef(jvm_env, o_dataset);
685
686   return 0;
687 } /* }}} int ctoj_value_list_add_data_set */
688
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) {
692   jclass c_valuelist;
693   jmethodID m_valuelist_constructor;
694   jobject o_valuelist;
695   int status;
696
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.");
703     return NULL;
704   }
705
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.");
712     return NULL;
713   }
714
715   /* Create a new instance. */
716   o_valuelist =
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 "
720           "failed.");
721     return NULL;
722   }
723
724   status = ctoj_value_list_add_data_set(jvm_env, c_valuelist, o_valuelist, ds);
725   if (status != 0) {
726     ERROR("java plugin: ctoj_value_list: "
727           "ctoj_value_list_add_data_set failed.");
728     (*jvm_env)->DeleteLocalRef(jvm_env, o_valuelist);
729     return NULL;
730   }
731
732 /* Set the strings.. */
733 #define SET_STRING(str, method_name)                                           \
734   do {                                                                         \
735     status = ctoj_string(jvm_env, str, c_valuelist, o_valuelist, method_name); \
736     if (status != 0) {                                                         \
737       ERROR("java plugin: ctoj_value_list: ctoj_string (%s) failed.",          \
738             method_name);                                                      \
739       (*jvm_env)->DeleteLocalRef(jvm_env, o_valuelist);                        \
740       return NULL;                                                             \
741     }                                                                          \
742   } while (0)
743
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");
749
750 #undef SET_STRING
751
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");
755   if (status != 0) {
756     ERROR("java plugin: ctoj_value_list: ctoj_long (setTime) failed.");
757     (*jvm_env)->DeleteLocalRef(jvm_env, o_valuelist);
758     return NULL;
759   }
760
761   /* Set the `interval' member.. */
762   status = ctoj_long(jvm_env, (jlong)CDTIME_T_TO_MS(vl->interval), c_valuelist,
763                      o_valuelist, "setInterval");
764   if (status != 0) {
765     ERROR("java plugin: ctoj_value_list: ctoj_long (setInterval) failed.");
766     (*jvm_env)->DeleteLocalRef(jvm_env, o_valuelist);
767     return NULL;
768   }
769
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);
773     if (status != 0) {
774       ERROR("java plugin: ctoj_value_list: "
775             "ctoj_value_list_add_value failed.");
776       (*jvm_env)->DeleteLocalRef(jvm_env, o_valuelist);
777       return NULL;
778     }
779   }
780
781   return o_valuelist;
782 } /* }}} jobject ctoj_value_list */
783
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;
790   int status;
791
792   /* First, create a new Notification instance..
793    * Look up the class.. */
794   c_notification =
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.");
799     return NULL;
800   }
801
802   /* Lookup the `Notification ()' constructor. */
803   m_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.");
808     return NULL;
809   }
810
811   /* Create a new instance. */
812   o_notification =
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 "
816           "instance failed.");
817     return NULL;
818   }
819
820 /* Set the strings.. */
821 #define SET_STRING(str, method_name)                                           \
822   do {                                                                         \
823     status = ctoj_string(jvm_env, str, c_notification, o_notification,         \
824                          method_name);                                         \
825     if (status != 0) {                                                         \
826       ERROR("java plugin: ctoj_notification: ctoj_string (%s) failed.",        \
827             method_name);                                                      \
828       (*jvm_env)->DeleteLocalRef(jvm_env, o_notification);                     \
829       return NULL;                                                             \
830     }                                                                          \
831   } while (0)
832
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");
839
840 #undef SET_STRING
841
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");
845   if (status != 0) {
846     ERROR("java plugin: ctoj_notification: ctoj_long (setTime) failed.");
847     (*jvm_env)->DeleteLocalRef(jvm_env, o_notification);
848     return NULL;
849   }
850
851   /* Set the `severity' member.. */
852   status = ctoj_int(jvm_env, (jint)n->severity, c_notification, o_notification,
853                     "setSeverity");
854   if (status != 0) {
855     ERROR("java plugin: ctoj_notification: ctoj_int (setSeverity) failed.");
856     (*jvm_env)->DeleteLocalRef(jvm_env, o_notification);
857     return NULL;
858   }
859
860   return o_notification;
861 } /* }}} jobject ctoj_notification */
862
863 /*
864  * Java to C conversion functions
865  */
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) {
871   jmethodID method_id;
872   jobject string_obj;
873   const char *c_str;
874
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 ()'.",
879           method_name);
880     return -1;
881   }
882
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.",
886           method_name);
887     return -1;
888   } else if ((string_obj == NULL) && (empty_okay != 0)) {
889     memset(buffer, 0, buffer_size);
890     return 0;
891   }
892
893   c_str = (*jvm_env)->GetStringUTFChars(jvm_env, string_obj, 0);
894   if (c_str == NULL) {
895     ERROR("java plugin: jtoc_string: GetStringUTFChars failed.");
896     (*jvm_env)->DeleteLocalRef(jvm_env, string_obj);
897     return -1;
898   }
899
900   sstrncpy(buffer, c_str, buffer_size);
901
902   (*jvm_env)->ReleaseStringUTFChars(jvm_env, string_obj, c_str);
903   (*jvm_env)->DeleteLocalRef(jvm_env, string_obj);
904
905   return 0;
906 } /* }}} int jtoc_string */
907
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) {
912   jmethodID method_id;
913
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 ()'.",
917           method_name);
918     return -1;
919   }
920
921   *ret_value = (*jvm_env)->CallIntMethod(jvm_env, object_ptr, method_id);
922
923   return 0;
924 } /* }}} int jtoc_int */
925
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) {
930   jmethodID method_id;
931
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 ()'.",
935           method_name);
936     return -1;
937   }
938
939   *ret_value = (*jvm_env)->CallLongMethod(jvm_env, object_ptr, method_id);
940
941   return 0;
942 } /* }}} int jtoc_long */
943
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) {
948   jmethodID method_id;
949
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 ()'.",
953           method_name);
954     return -1;
955   }
956
957   *ret_value = (*jvm_env)->CallDoubleMethod(jvm_env, object_ptr, method_id);
958
959   return 0;
960 } /* }}} int jtoc_double */
961
962 static int jtoc_value(JNIEnv *jvm_env, /* {{{ */
963                       value_t *ret_value, int ds_type, jobject object_ptr) {
964   jclass class_ptr;
965   int status;
966
967   class_ptr = (*jvm_env)->GetObjectClass(jvm_env, object_ptr);
968
969   if (ds_type == DS_TYPE_GAUGE) {
970     jdouble tmp_double;
971
972     status =
973         jtoc_double(jvm_env, &tmp_double, class_ptr, object_ptr, "doubleValue");
974     if (status != 0) {
975       ERROR("java plugin: jtoc_value: "
976             "jtoc_double failed.");
977       return -1;
978     }
979     (*ret_value).gauge = (gauge_t)tmp_double;
980   } else {
981     jlong tmp_long;
982
983     status = jtoc_long(jvm_env, &tmp_long, class_ptr, object_ptr, "longValue");
984     if (status != 0) {
985       ERROR("java plugin: jtoc_value: "
986             "jtoc_long failed.");
987       return -1;
988     }
989
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;
994     else
995       (*ret_value).counter = (counter_t)tmp_long;
996   }
997
998   return 0;
999 } /* }}} int jtoc_value */
1000
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;
1008   jobject o_list;
1009   jobjectArray o_number_array;
1010
1011   value_t *values;
1012   int values_num;
1013
1014   values_num = ds->ds_num;
1015
1016   values = NULL;
1017   o_number_array = NULL;
1018   o_list = NULL;
1019
1020 #define BAIL_OUT(status)                                                       \
1021   free(values);                                                                \
1022   if (o_number_array != NULL)                                                  \
1023     (*jvm_env)->DeleteLocalRef(jvm_env, o_number_array);                       \
1024   if (o_list != NULL)                                                          \
1025     (*jvm_env)->DeleteLocalRef(jvm_env, o_list);                               \
1026   return status;
1027
1028   /* Call: List<Number> ValueList.getValues () */
1029   m_getvalues = (*jvm_env)->GetMethodID(jvm_env, class_ptr, "getValues",
1030                                         "()Ljava/util/List;");
1031   if (m_getvalues == NULL) {
1032     ERROR("java plugin: jtoc_values_array: "
1033           "Cannot find method `List getValues ()'.");
1034     BAIL_OUT(-1);
1035   }
1036
1037   o_list = (*jvm_env)->CallObjectMethod(jvm_env, object_ptr, m_getvalues);
1038   if (o_list == NULL) {
1039     ERROR("java plugin: jtoc_values_array: "
1040           "CallObjectMethod (getValues) failed.");
1041     BAIL_OUT(-1);
1042   }
1043
1044   /* Call: Number[] List.toArray () */
1045   m_toarray = (*jvm_env)->GetMethodID(
1046       jvm_env, (*jvm_env)->GetObjectClass(jvm_env, o_list), "toArray",
1047       "()[Ljava/lang/Object;");
1048   if (m_toarray == NULL) {
1049     ERROR("java plugin: jtoc_values_array: "
1050           "Cannot find method `Object[] toArray ()'.");
1051     BAIL_OUT(-1);
1052   }
1053
1054   o_number_array = (*jvm_env)->CallObjectMethod(jvm_env, o_list, m_toarray);
1055   if (o_number_array == NULL) {
1056     ERROR("java plugin: jtoc_values_array: "
1057           "CallObjectMethod (toArray) failed.");
1058     BAIL_OUT(-1);
1059   }
1060
1061   values = (value_t *)calloc(values_num, sizeof(value_t));
1062   if (values == NULL) {
1063     ERROR("java plugin: jtoc_values_array: calloc failed.");
1064     BAIL_OUT(-1);
1065   }
1066
1067   for (int i = 0; i < values_num; i++) {
1068     jobject o_number;
1069     int status;
1070
1071     o_number =
1072         (*jvm_env)->GetObjectArrayElement(jvm_env, o_number_array, (jsize)i);
1073     if (o_number == NULL) {
1074       ERROR("java plugin: jtoc_values_array: "
1075             "GetObjectArrayElement (%i) failed.",
1076             i);
1077       BAIL_OUT(-1);
1078     }
1079
1080     status = jtoc_value(jvm_env, values + i, ds->ds[i].type, o_number);
1081     if (status != 0) {
1082       ERROR("java plugin: jtoc_values_array: "
1083             "jtoc_value (%i) failed.",
1084             i);
1085       BAIL_OUT(-1);
1086     }
1087   } /* for (i = 0; i < values_num; i++) */
1088
1089   vl->values = values;
1090   vl->values_len = values_num;
1091
1092 #undef BAIL_OUT
1093   (*jvm_env)->DeleteLocalRef(jvm_env, o_number_array);
1094   (*jvm_env)->DeleteLocalRef(jvm_env, o_list);
1095   return 0;
1096 } /* }}} int jtoc_values_array */
1097
1098 /* Convert a org/collectd/api/ValueList to a value_list_t. */
1099 static int jtoc_value_list(JNIEnv *jvm_env, value_list_t *vl, /* {{{ */
1100                            jobject object_ptr) {
1101   jclass class_ptr;
1102   int status;
1103   jlong tmp_long;
1104   const data_set_t *ds;
1105
1106   class_ptr = (*jvm_env)->GetObjectClass(jvm_env, object_ptr);
1107   if (class_ptr == NULL) {
1108     ERROR("java plugin: jtoc_value_list: GetObjectClass failed.");
1109     return -1;
1110   }
1111
1112 /* eo == empty okay */
1113 #define SET_STRING(buffer, method, eo)                                         \
1114   do {                                                                         \
1115     status = jtoc_string(jvm_env, buffer, sizeof(buffer), eo, class_ptr,       \
1116                          object_ptr, method);                                  \
1117     if (status != 0) {                                                         \
1118       ERROR("java plugin: jtoc_value_list: jtoc_string (%s) failed.", method); \
1119       return -1;                                                               \
1120     }                                                                          \
1121   } while (0)
1122
1123   SET_STRING(vl->type, "getType", /* empty = */ 0);
1124
1125   ds = plugin_get_ds(vl->type);
1126   if (ds == NULL) {
1127     ERROR("java plugin: jtoc_value_list: Data-set `%s' is not defined. "
1128           "Please consult the types.db(5) manpage for mor information.",
1129           vl->type);
1130     return -1;
1131   }
1132
1133   SET_STRING(vl->host, "getHost", /* empty = */ 0);
1134   SET_STRING(vl->plugin, "getPlugin", /* empty = */ 0);
1135   SET_STRING(vl->plugin_instance, "getPluginInstance", /* empty = */ 1);
1136   SET_STRING(vl->type_instance, "getTypeInstance", /* empty = */ 1);
1137
1138 #undef SET_STRING
1139
1140   status = jtoc_long(jvm_env, &tmp_long, class_ptr, object_ptr, "getTime");
1141   if (status != 0) {
1142     ERROR("java plugin: jtoc_value_list: jtoc_long (getTime) failed.");
1143     return -1;
1144   }
1145   /* Java measures time in milliseconds. */
1146   vl->time = MS_TO_CDTIME_T(tmp_long);
1147
1148   status = jtoc_long(jvm_env, &tmp_long, class_ptr, object_ptr, "getInterval");
1149   if (status != 0) {
1150     ERROR("java plugin: jtoc_value_list: jtoc_long (getInterval) failed.");
1151     return -1;
1152   }
1153   vl->interval = MS_TO_CDTIME_T(tmp_long);
1154
1155   status = jtoc_values_array(jvm_env, ds, vl, class_ptr, object_ptr);
1156   if (status != 0) {
1157     ERROR("java plugin: jtoc_value_list: jtoc_values_array failed.");
1158     return -1;
1159   }
1160
1161   return 0;
1162 } /* }}} int jtoc_value_list */
1163
1164 /* Convert a org/collectd/api/Notification to a notification_t. */
1165 static int jtoc_notification(JNIEnv *jvm_env, notification_t *n, /* {{{ */
1166                              jobject object_ptr) {
1167   jclass class_ptr;
1168   int status;
1169   jlong tmp_long;
1170   jint tmp_int;
1171
1172   class_ptr = (*jvm_env)->GetObjectClass(jvm_env, object_ptr);
1173   if (class_ptr == NULL) {
1174     ERROR("java plugin: jtoc_notification: GetObjectClass failed.");
1175     return -1;
1176   }
1177
1178 /* eo == empty okay */
1179 #define SET_STRING(buffer, method, eo)                                         \
1180   do {                                                                         \
1181     status = jtoc_string(jvm_env, buffer, sizeof(buffer), eo, class_ptr,       \
1182                          object_ptr, method);                                  \
1183     if (status != 0) {                                                         \
1184       ERROR("java plugin: jtoc_notification: jtoc_string (%s) failed.",        \
1185             method);                                                           \
1186       return -1;                                                               \
1187     }                                                                          \
1188   } while (0)
1189
1190   SET_STRING(n->host, "getHost", /* empty = */ 1);
1191   SET_STRING(n->plugin, "getPlugin", /* empty = */ 1);
1192   SET_STRING(n->plugin_instance, "getPluginInstance", /* empty = */ 1);
1193   SET_STRING(n->type, "getType", /* empty = */ 1);
1194   SET_STRING(n->type_instance, "getTypeInstance", /* empty = */ 1);
1195   SET_STRING(n->message, "getMessage", /* empty = */ 0);
1196
1197 #undef SET_STRING
1198
1199   status = jtoc_long(jvm_env, &tmp_long, class_ptr, object_ptr, "getTime");
1200   if (status != 0) {
1201     ERROR("java plugin: jtoc_notification: jtoc_long (getTime) failed.");
1202     return -1;
1203   }
1204   /* Java measures time in milliseconds. */
1205   n->time = MS_TO_CDTIME_T(tmp_long);
1206
1207   status = jtoc_int(jvm_env, &tmp_int, class_ptr, object_ptr, "getSeverity");
1208   if (status != 0) {
1209     ERROR("java plugin: jtoc_notification: jtoc_int (getSeverity) failed.");
1210     return -1;
1211   }
1212   n->severity = (int)tmp_int;
1213
1214   return 0;
1215 } /* }}} int jtoc_notification */
1216 /*
1217  * Functions accessible from Java
1218  */
1219 static jint JNICALL cjni_api_dispatch_values(JNIEnv *jvm_env, /* {{{ */
1220                                              jobject this, jobject java_vl) {
1221   value_list_t vl = VALUE_LIST_INIT;
1222   int status;
1223
1224   DEBUG("cjni_api_dispatch_values: java_vl = %p;", (void *)java_vl);
1225
1226   status = jtoc_value_list(jvm_env, &vl, java_vl);
1227   if (status != 0) {
1228     ERROR("java plugin: cjni_api_dispatch_values: jtoc_value_list failed.");
1229     return -1;
1230   }
1231
1232   status = plugin_dispatch_values(&vl);
1233
1234   sfree(vl.values);
1235
1236   return status;
1237 } /* }}} jint cjni_api_dispatch_values */
1238
1239 static jint JNICALL cjni_api_dispatch_notification(JNIEnv *jvm_env, /* {{{ */
1240                                                    jobject this,
1241                                                    jobject o_notification) {
1242   notification_t n = {0};
1243   int status;
1244
1245   status = jtoc_notification(jvm_env, &n, o_notification);
1246   if (status != 0) {
1247     ERROR("java plugin: cjni_api_dispatch_notification: jtoc_notification "
1248           "failed.");
1249     return -1;
1250   }
1251
1252   status = plugin_dispatch_notification(&n);
1253
1254   return status;
1255 } /* }}} jint cjni_api_dispatch_notification */
1256
1257 static jobject JNICALL cjni_api_get_ds(JNIEnv *jvm_env, /* {{{ */
1258                                        jobject this, jobject o_string_type) {
1259   const char *ds_name;
1260   const data_set_t *ds;
1261   jobject o_dataset;
1262
1263   ds_name = (*jvm_env)->GetStringUTFChars(jvm_env, o_string_type, 0);
1264   if (ds_name == NULL) {
1265     ERROR("java plugin: cjni_api_get_ds: GetStringUTFChars failed.");
1266     return NULL;
1267   }
1268
1269   ds = plugin_get_ds(ds_name);
1270   DEBUG("java plugin: cjni_api_get_ds: "
1271         "plugin_get_ds (%s) = %p;",
1272         ds_name, (void *)ds);
1273
1274   (*jvm_env)->ReleaseStringUTFChars(jvm_env, o_string_type, ds_name);
1275
1276   if (ds == NULL)
1277     return NULL;
1278
1279   o_dataset = ctoj_data_set(jvm_env, ds);
1280   return o_dataset;
1281 } /* }}} jint cjni_api_get_ds */
1282
1283 static jint JNICALL cjni_api_register_config(JNIEnv *jvm_env, /* {{{ */
1284                                              jobject this, jobject o_name,
1285                                              jobject o_config) {
1286   return cjni_callback_register(jvm_env, o_name, o_config, CB_TYPE_CONFIG);
1287 } /* }}} jint cjni_api_register_config */
1288
1289 static jint JNICALL cjni_api_register_init(JNIEnv *jvm_env, /* {{{ */
1290                                            jobject this, jobject o_name,
1291                                            jobject o_config) {
1292   return cjni_callback_register(jvm_env, o_name, o_config, CB_TYPE_INIT);
1293 } /* }}} jint cjni_api_register_init */
1294
1295 static jint JNICALL cjni_api_register_read(JNIEnv *jvm_env, /* {{{ */
1296                                            jobject this, jobject o_name,
1297                                            jobject o_read) {
1298   cjni_callback_info_t *cbi;
1299
1300   cbi = cjni_callback_info_create(jvm_env, o_name, o_read, CB_TYPE_READ);
1301   if (cbi == NULL)
1302     return -1;
1303
1304   DEBUG("java plugin: Registering new read callback: %s", cbi->name);
1305
1306   plugin_register_complex_read(
1307       /* group = */ NULL, cbi->name, cjni_read,
1308       /* interval = */ 0,
1309       &(user_data_t){
1310           .data = cbi, .free_func = cjni_callback_info_destroy,
1311       });
1312
1313   (*jvm_env)->DeleteLocalRef(jvm_env, o_read);
1314
1315   return 0;
1316 } /* }}} jint cjni_api_register_read */
1317
1318 static jint JNICALL cjni_api_register_write(JNIEnv *jvm_env, /* {{{ */
1319                                             jobject this, jobject o_name,
1320                                             jobject o_write) {
1321   cjni_callback_info_t *cbi;
1322
1323   cbi = cjni_callback_info_create(jvm_env, o_name, o_write, CB_TYPE_WRITE);
1324   if (cbi == NULL)
1325     return -1;
1326
1327   DEBUG("java plugin: Registering new write callback: %s", cbi->name);
1328
1329   plugin_register_write(
1330       cbi->name, cjni_write,
1331       &(user_data_t){
1332           .data = cbi, .free_func = cjni_callback_info_destroy,
1333       });
1334
1335   (*jvm_env)->DeleteLocalRef(jvm_env, o_write);
1336
1337   return 0;
1338 } /* }}} jint cjni_api_register_write */
1339
1340 static jint JNICALL cjni_api_register_flush(JNIEnv *jvm_env, /* {{{ */
1341                                             jobject this, jobject o_name,
1342                                             jobject o_flush) {
1343   cjni_callback_info_t *cbi;
1344
1345   cbi = cjni_callback_info_create(jvm_env, o_name, o_flush, CB_TYPE_FLUSH);
1346   if (cbi == NULL)
1347     return -1;
1348
1349   DEBUG("java plugin: Registering new flush callback: %s", cbi->name);
1350
1351   plugin_register_flush(
1352       cbi->name, cjni_flush,
1353       &(user_data_t){
1354           .data = cbi, .free_func = cjni_callback_info_destroy,
1355       });
1356
1357   (*jvm_env)->DeleteLocalRef(jvm_env, o_flush);
1358
1359   return 0;
1360 } /* }}} jint cjni_api_register_flush */
1361
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 */
1367
1368 static jint JNICALL cjni_api_register_log(JNIEnv *jvm_env, /* {{{ */
1369                                           jobject this, jobject o_name,
1370                                           jobject o_log) {
1371   cjni_callback_info_t *cbi;
1372
1373   cbi = cjni_callback_info_create(jvm_env, o_name, o_log, CB_TYPE_LOG);
1374   if (cbi == NULL)
1375     return -1;
1376
1377   DEBUG("java plugin: Registering new log callback: %s", cbi->name);
1378
1379   plugin_register_log(cbi->name, cjni_log,
1380                       &(user_data_t){
1381                           .data = cbi, .free_func = cjni_callback_info_destroy,
1382                       });
1383
1384   (*jvm_env)->DeleteLocalRef(jvm_env, o_log);
1385
1386   return 0;
1387 } /* }}} jint cjni_api_register_log */
1388
1389 static jint JNICALL cjni_api_register_notification(JNIEnv *jvm_env, /* {{{ */
1390                                                    jobject this, jobject o_name,
1391                                                    jobject o_notification) {
1392   cjni_callback_info_t *cbi;
1393
1394   cbi = cjni_callback_info_create(jvm_env, o_name, o_notification,
1395                                   CB_TYPE_NOTIFICATION);
1396   if (cbi == NULL)
1397     return -1;
1398
1399   DEBUG("java plugin: Registering new notification callback: %s", cbi->name);
1400
1401   plugin_register_notification(
1402       cbi->name, cjni_notification,
1403       &(user_data_t){
1404           .data = cbi, .free_func = cjni_callback_info_destroy,
1405       });
1406
1407   (*jvm_env)->DeleteLocalRef(jvm_env, o_notification);
1408
1409   return 0;
1410 } /* }}} jint cjni_api_register_notification */
1411
1412 static jint JNICALL cjni_api_register_match_target(JNIEnv *jvm_env, /* {{{ */
1413                                                    jobject this, jobject o_name,
1414                                                    jobject o_match, int type) {
1415   int status;
1416   const char *c_name;
1417
1418   c_name = (*jvm_env)->GetStringUTFChars(jvm_env, o_name, 0);
1419   if (c_name == NULL) {
1420     ERROR("java plugin: cjni_api_register_match_target: "
1421           "GetStringUTFChars failed.");
1422     return -1;
1423   }
1424
1425   status = cjni_callback_register(jvm_env, o_name, o_match, type);
1426   if (status != 0) {
1427     (*jvm_env)->ReleaseStringUTFChars(jvm_env, o_name, c_name);
1428     return -1;
1429   }
1430
1431   if (type == CB_TYPE_MATCH) {
1432     match_proc_t m_proc = {0};
1433
1434     m_proc.create = cjni_match_target_create;
1435     m_proc.destroy = cjni_match_target_destroy;
1436     m_proc.match = (void *)cjni_match_target_invoke;
1437
1438     status = fc_register_match(c_name, m_proc);
1439   } else if (type == CB_TYPE_TARGET) {
1440     target_proc_t t_proc = {0};
1441
1442     t_proc.create = cjni_match_target_create;
1443     t_proc.destroy = cjni_match_target_destroy;
1444     t_proc.invoke = cjni_match_target_invoke;
1445
1446     status = fc_register_target(c_name, t_proc);
1447   } else {
1448     ERROR("java plugin: cjni_api_register_match_target: "
1449           "Don't know whether to create a match or a target.");
1450     (*jvm_env)->ReleaseStringUTFChars(jvm_env, o_name, c_name);
1451     return -1;
1452   }
1453
1454   if (status != 0) {
1455     ERROR("java plugin: cjni_api_register_match_target: "
1456           "%s failed.",
1457           (type == CB_TYPE_MATCH) ? "fc_register_match" : "fc_register_target");
1458     (*jvm_env)->ReleaseStringUTFChars(jvm_env, o_name, c_name);
1459     return -1;
1460   }
1461
1462   (*jvm_env)->ReleaseStringUTFChars(jvm_env, o_name, c_name);
1463
1464   return 0;
1465 } /* }}} jint cjni_api_register_match_target */
1466
1467 static jint JNICALL cjni_api_register_match(JNIEnv *jvm_env, /* {{{ */
1468                                             jobject this, jobject o_name,
1469                                             jobject o_match) {
1470   return cjni_api_register_match_target(jvm_env, this, o_name, o_match,
1471                                         CB_TYPE_MATCH);
1472 } /* }}} jint cjni_api_register_match */
1473
1474 static jint JNICALL cjni_api_register_target(JNIEnv *jvm_env, /* {{{ */
1475                                              jobject this, jobject o_name,
1476                                              jobject o_target) {
1477   return cjni_api_register_match_target(jvm_env, this, o_name, o_target,
1478                                         CB_TYPE_TARGET);
1479 } /* }}} jint cjni_api_register_target */
1480
1481 static void JNICALL cjni_api_log(JNIEnv *jvm_env, /* {{{ */
1482                                  jobject this, jint severity,
1483                                  jobject o_message) {
1484   const char *c_str;
1485
1486   c_str = (*jvm_env)->GetStringUTFChars(jvm_env, o_message, 0);
1487   if (c_str == NULL) {
1488     ERROR("java plugin: cjni_api_log: GetStringUTFChars failed.");
1489     return;
1490   }
1491
1492   if (severity < LOG_ERR)
1493     severity = LOG_ERR;
1494   if (severity > LOG_DEBUG)
1495     severity = LOG_DEBUG;
1496
1497   plugin_log(severity, "%s", c_str);
1498
1499   (*jvm_env)->ReleaseStringUTFChars(jvm_env, o_message, c_str);
1500 } /* }}} void cjni_api_log */
1501
1502 static jstring JNICALL cjni_api_get_hostname(JNIEnv *jvm_env, jobject this) {
1503   return ctoj_output_string(jvm_env, hostname_g);
1504 }
1505
1506 /* List of ``native'' functions, i. e. C-functions that can be called from
1507  * Java. */
1508 static JNINativeMethod jni_api_functions[] = /* {{{ */
1509     {
1510         {"dispatchValues", "(Lorg/collectd/api/ValueList;)I",
1511          cjni_api_dispatch_values},
1512
1513         {"dispatchNotification", "(Lorg/collectd/api/Notification;)I",
1514          cjni_api_dispatch_notification},
1515
1516         {"getDS", "(Ljava/lang/String;)Lorg/collectd/api/DataSet;",
1517          cjni_api_get_ds},
1518
1519         {"registerConfig",
1520          "(Ljava/lang/String;Lorg/collectd/api/CollectdConfigInterface;)I",
1521          cjni_api_register_config},
1522
1523         {"registerInit",
1524          "(Ljava/lang/String;Lorg/collectd/api/CollectdInitInterface;)I",
1525          cjni_api_register_init},
1526
1527         {"registerRead",
1528          "(Ljava/lang/String;Lorg/collectd/api/CollectdReadInterface;)I",
1529          cjni_api_register_read},
1530
1531         {"registerWrite",
1532          "(Ljava/lang/String;Lorg/collectd/api/CollectdWriteInterface;)I",
1533          cjni_api_register_write},
1534
1535         {"registerFlush",
1536          "(Ljava/lang/String;Lorg/collectd/api/CollectdFlushInterface;)I",
1537          cjni_api_register_flush},
1538
1539         {"registerShutdown",
1540          "(Ljava/lang/String;Lorg/collectd/api/CollectdShutdownInterface;)I",
1541          cjni_api_register_shutdown},
1542
1543         {"registerLog",
1544          "(Ljava/lang/String;Lorg/collectd/api/CollectdLogInterface;)I",
1545          cjni_api_register_log},
1546
1547         {"registerNotification", "(Ljava/lang/String;Lorg/collectd/api/"
1548                                  "CollectdNotificationInterface;)I",
1549          cjni_api_register_notification},
1550
1551         {"registerMatch", "(Ljava/lang/String;Lorg/collectd/api/"
1552                           "CollectdMatchFactoryInterface;)I",
1553          cjni_api_register_match},
1554
1555         {"registerTarget", "(Ljava/lang/String;Lorg/collectd/api/"
1556                            "CollectdTargetFactoryInterface;)I",
1557          cjni_api_register_target},
1558
1559         {"log", "(ILjava/lang/String;)V", cjni_api_log},
1560
1561         {"getHostname", "()Ljava/lang/String;", cjni_api_get_hostname},
1562
1563 };
1564 static size_t jni_api_functions_num =
1565     sizeof(jni_api_functions) / sizeof(jni_api_functions[0]);
1566 /* }}} */
1567
1568 /*
1569  * Functions
1570  */
1571 /* Allocate a `cjni_callback_info_t' given the type and objects necessary for
1572  * all registration functions. */
1573 static cjni_callback_info_t *
1574 cjni_callback_info_create(JNIEnv *jvm_env, /* {{{ */
1575                           jobject o_name, jobject o_callback, int type) {
1576   const char *c_name;
1577   cjni_callback_info_t *cbi;
1578   const char *method_name;
1579   const char *method_signature;
1580
1581   switch (type) {
1582   case CB_TYPE_CONFIG:
1583     method_name = "config";
1584     method_signature = "(Lorg/collectd/api/OConfigItem;)I";
1585     break;
1586
1587   case CB_TYPE_INIT:
1588     method_name = "init";
1589     method_signature = "()I";
1590     break;
1591
1592   case CB_TYPE_READ:
1593     method_name = "read";
1594     method_signature = "()I";
1595     break;
1596
1597   case CB_TYPE_WRITE:
1598     method_name = "write";
1599     method_signature = "(Lorg/collectd/api/ValueList;)I";
1600     break;
1601
1602   case CB_TYPE_FLUSH:
1603     method_name = "flush";
1604     method_signature = "(Ljava/lang/Number;Ljava/lang/String;)I";
1605     break;
1606
1607   case CB_TYPE_SHUTDOWN:
1608     method_name = "shutdown";
1609     method_signature = "()I";
1610     break;
1611
1612   case CB_TYPE_LOG:
1613     method_name = "log";
1614     method_signature = "(ILjava/lang/String;)V";
1615     break;
1616
1617   case CB_TYPE_NOTIFICATION:
1618     method_name = "notification";
1619     method_signature = "(Lorg/collectd/api/Notification;)I";
1620     break;
1621
1622   case CB_TYPE_MATCH:
1623     method_name = "createMatch";
1624     method_signature = "(Lorg/collectd/api/OConfigItem;)"
1625                        "Lorg/collectd/api/CollectdMatchInterface;";
1626     break;
1627
1628   case CB_TYPE_TARGET:
1629     method_name = "createTarget";
1630     method_signature = "(Lorg/collectd/api/OConfigItem;)"
1631                        "Lorg/collectd/api/CollectdTargetInterface;";
1632     break;
1633
1634   default:
1635     ERROR("java plugin: cjni_callback_info_create: Unknown type: %#x", type);
1636     return NULL;
1637   }
1638
1639   c_name = (*jvm_env)->GetStringUTFChars(jvm_env, o_name, 0);
1640   if (c_name == NULL) {
1641     ERROR("java plugin: cjni_callback_info_create: "
1642           "GetStringUTFChars failed.");
1643     return NULL;
1644   }
1645
1646   cbi = calloc(1, sizeof(*cbi));
1647   if (cbi == NULL) {
1648     ERROR("java plugin: cjni_callback_info_create: calloc failed.");
1649     (*jvm_env)->ReleaseStringUTFChars(jvm_env, o_name, c_name);
1650     return NULL;
1651   }
1652   cbi->type = type;
1653
1654   cbi->name = strdup(c_name);
1655   if (cbi->name == NULL) {
1656     pthread_mutex_unlock(&java_callbacks_lock);
1657     ERROR("java plugin: cjni_callback_info_create: strdup failed.");
1658     (*jvm_env)->ReleaseStringUTFChars(jvm_env, o_name, c_name);
1659     sfree(cbi);
1660     return NULL;
1661   }
1662
1663   (*jvm_env)->ReleaseStringUTFChars(jvm_env, o_name, c_name);
1664
1665   cbi->object = (*jvm_env)->NewGlobalRef(jvm_env, o_callback);
1666   if (cbi->object == NULL) {
1667     ERROR("java plugin: cjni_callback_info_create: NewGlobalRef failed.");
1668     sfree(cbi->name);
1669     sfree(cbi);
1670     return NULL;
1671   }
1672
1673   cbi->class = (*jvm_env)->GetObjectClass(jvm_env, cbi->object);
1674   if (cbi->class == NULL) {
1675     ERROR("java plugin: cjni_callback_info_create: GetObjectClass failed.");
1676     (*jvm_env)->DeleteGlobalRef(jvm_env, cbi->object);
1677     sfree(cbi->name);
1678     sfree(cbi);
1679     return NULL;
1680   }
1681
1682   cbi->method = (*jvm_env)->GetMethodID(jvm_env, cbi->class, method_name,
1683                                         method_signature);
1684   if (cbi->method == NULL) {
1685     ERROR("java plugin: cjni_callback_info_create: "
1686           "Cannot find the `%s' method with signature `%s'.",
1687           method_name, method_signature);
1688     (*jvm_env)->DeleteGlobalRef(jvm_env, cbi->object);
1689     sfree(cbi->name);
1690     sfree(cbi);
1691     return NULL;
1692   }
1693
1694   return cbi;
1695 } /* }}} cjni_callback_info_t cjni_callback_info_create */
1696
1697 /* Allocate a `cjni_callback_info_t' via `cjni_callback_info_create' and add it
1698  * to the global `java_callbacks' variable. This is used for `config', `init',
1699  * and `shutdown' callbacks. */
1700 static int cjni_callback_register(JNIEnv *jvm_env, /* {{{ */
1701                                   jobject o_name, jobject o_callback,
1702                                   int type) {
1703   cjni_callback_info_t *cbi;
1704   cjni_callback_info_t *tmp;
1705 #if COLLECT_DEBUG
1706   const char *type_str;
1707 #endif
1708
1709   cbi = cjni_callback_info_create(jvm_env, o_name, o_callback, type);
1710   if (cbi == NULL)
1711     return -1;
1712
1713 #if COLLECT_DEBUG
1714   switch (type) {
1715   case CB_TYPE_CONFIG:
1716     type_str = "config";
1717     break;
1718
1719   case CB_TYPE_INIT:
1720     type_str = "init";
1721     break;
1722
1723   case CB_TYPE_SHUTDOWN:
1724     type_str = "shutdown";
1725     break;
1726
1727   case CB_TYPE_MATCH:
1728     type_str = "match";
1729     break;
1730
1731   case CB_TYPE_TARGET:
1732     type_str = "target";
1733     break;
1734
1735   default:
1736     type_str = "<unknown>";
1737   }
1738   DEBUG("java plugin: Registering new %s callback: %s", type_str, cbi->name);
1739 #endif
1740
1741   pthread_mutex_lock(&java_callbacks_lock);
1742
1743   tmp = realloc(java_callbacks,
1744                 (java_callbacks_num + 1) * sizeof(*java_callbacks));
1745   if (tmp == NULL) {
1746     pthread_mutex_unlock(&java_callbacks_lock);
1747     ERROR("java plugin: cjni_callback_register: realloc failed.");
1748
1749     (*jvm_env)->DeleteGlobalRef(jvm_env, cbi->object);
1750     free(cbi);
1751
1752     return -1;
1753   }
1754   java_callbacks = tmp;
1755   java_callbacks[java_callbacks_num] = *cbi;
1756   java_callbacks_num++;
1757
1758   pthread_mutex_unlock(&java_callbacks_lock);
1759
1760   free(cbi);
1761   return 0;
1762 } /* }}} int cjni_callback_register */
1763
1764 /* Callback for `pthread_key_create'. It frees the data contained in
1765  * `jvm_env_key' and prints a warning if the reference counter is not zero. */
1766 static void cjni_jvm_env_destroy(void *args) /* {{{ */
1767 {
1768   cjni_jvm_env_t *cjni_env;
1769
1770   if (args == NULL)
1771     return;
1772
1773   cjni_env = (cjni_jvm_env_t *)args;
1774
1775   if (cjni_env->reference_counter > 0) {
1776     ERROR("java plugin: cjni_jvm_env_destroy: "
1777           "cjni_env->reference_counter = %i;",
1778           cjni_env->reference_counter);
1779   }
1780
1781   if (cjni_env->jvm_env != NULL) {
1782     ERROR("java plugin: cjni_jvm_env_destroy: cjni_env->jvm_env = %p;",
1783           (void *)cjni_env->jvm_env);
1784   }
1785
1786   /* The pointer is allocated in `cjni_thread_attach' */
1787   free(cjni_env);
1788 } /* }}} void cjni_jvm_env_destroy */
1789
1790 /* Register ``native'' functions with the JVM. Native functions are C-functions
1791  * that can be called by Java code. */
1792 static int cjni_init_native(JNIEnv *jvm_env) /* {{{ */
1793 {
1794   jclass api_class_ptr;
1795   int status;
1796
1797   api_class_ptr = (*jvm_env)->FindClass(jvm_env, "org/collectd/api/Collectd");
1798   if (api_class_ptr == NULL) {
1799     ERROR("cjni_init_native: Cannot find the API class \"org.collectd.api"
1800           ".Collectd\". Please set the correct class path "
1801           "using 'JVMArg \"-Djava.class.path=...\"'.");
1802     return -1;
1803   }
1804
1805   status = (*jvm_env)->RegisterNatives(
1806       jvm_env, api_class_ptr, jni_api_functions, (jint)jni_api_functions_num);
1807   if (status != 0) {
1808     ERROR("cjni_init_native: RegisterNatives failed with status %i.", status);
1809     return -1;
1810   }
1811
1812   return 0;
1813 } /* }}} int cjni_init_native */
1814
1815 /* Create the JVM. This is called when the first thread tries to access the JVM
1816  * via cjni_thread_attach. */
1817 static int cjni_create_jvm(void) /* {{{ */
1818 {
1819   JNIEnv *jvm_env;
1820   JavaVMInitArgs vm_args = {0};
1821   JavaVMOption vm_options[jvm_argc];
1822
1823   int status;
1824
1825   if (jvm != NULL)
1826     return 0;
1827
1828   status = pthread_key_create(&jvm_env_key, cjni_jvm_env_destroy);
1829   if (status != 0) {
1830     ERROR("java plugin: cjni_create_jvm: pthread_key_create failed "
1831           "with status %i.",
1832           status);
1833     return -1;
1834   }
1835
1836   jvm_env = NULL;
1837
1838   vm_args.version = JNI_VERSION_1_2;
1839   vm_args.options = vm_options;
1840   vm_args.nOptions = (jint)jvm_argc;
1841
1842   for (size_t i = 0; i < jvm_argc; i++) {
1843     DEBUG("java plugin: cjni_create_jvm: jvm_argv[%zu] = %s", i, jvm_argv[i]);
1844     vm_args.options[i].optionString = jvm_argv[i];
1845   }
1846
1847   status = JNI_CreateJavaVM(&jvm, (void *)&jvm_env, (void *)&vm_args);
1848   if (status != 0) {
1849     ERROR("java plugin: cjni_create_jvm: "
1850           "JNI_CreateJavaVM failed with status %i.",
1851           status);
1852     return -1;
1853   }
1854   assert(jvm != NULL);
1855   assert(jvm_env != NULL);
1856
1857   /* Call RegisterNatives */
1858   status = cjni_init_native(jvm_env);
1859   if (status != 0) {
1860     ERROR("java plugin: cjni_create_jvm: cjni_init_native failed.");
1861     return -1;
1862   }
1863
1864   DEBUG("java plugin: The JVM has been created.");
1865   return 0;
1866 } /* }}} int cjni_create_jvm */
1867
1868 /* Increase the reference counter to the JVM for this thread. If it was zero,
1869  * attach the JVM first. */
1870 static JNIEnv *cjni_thread_attach(void) /* {{{ */
1871 {
1872   cjni_jvm_env_t *cjni_env;
1873   JNIEnv *jvm_env;
1874
1875   /* If we're the first thread to access the JVM, we'll have to create it
1876    * first.. */
1877   if (jvm == NULL) {
1878     int status;
1879
1880     status = cjni_create_jvm();
1881     if (status != 0) {
1882       ERROR("java plugin: cjni_thread_attach: cjni_create_jvm failed.");
1883       return NULL;
1884     }
1885   }
1886   assert(jvm != NULL);
1887
1888   cjni_env = pthread_getspecific(jvm_env_key);
1889   if (cjni_env == NULL) {
1890     /* This pointer is free'd in `cjni_jvm_env_destroy'. */
1891     cjni_env = calloc(1, sizeof(*cjni_env));
1892     if (cjni_env == NULL) {
1893       ERROR("java plugin: cjni_thread_attach: calloc failed.");
1894       return NULL;
1895     }
1896     cjni_env->reference_counter = 0;
1897     cjni_env->jvm_env = NULL;
1898
1899     pthread_setspecific(jvm_env_key, cjni_env);
1900   }
1901
1902   if (cjni_env->reference_counter > 0) {
1903     cjni_env->reference_counter++;
1904     jvm_env = cjni_env->jvm_env;
1905   } else {
1906     int status;
1907     JavaVMAttachArgs args = {0};
1908
1909     assert(cjni_env->jvm_env == NULL);
1910
1911     args.version = JNI_VERSION_1_2;
1912
1913     status = (*jvm)->AttachCurrentThread(jvm, (void *)&jvm_env, (void *)&args);
1914     if (status != 0) {
1915       ERROR("java plugin: cjni_thread_attach: AttachCurrentThread failed "
1916             "with status %i.",
1917             status);
1918       return NULL;
1919     }
1920
1921     cjni_env->reference_counter = 1;
1922     cjni_env->jvm_env = jvm_env;
1923   }
1924
1925   DEBUG("java plugin: cjni_thread_attach: cjni_env->reference_counter = %i",
1926         cjni_env->reference_counter);
1927   assert(jvm_env != NULL);
1928   return jvm_env;
1929 } /* }}} JNIEnv *cjni_thread_attach */
1930
1931 /* Decrease the reference counter of this thread. If it reaches zero, detach
1932  * from the JVM. */
1933 static int cjni_thread_detach(void) /* {{{ */
1934 {
1935   cjni_jvm_env_t *cjni_env;
1936   int status;
1937
1938   cjni_env = pthread_getspecific(jvm_env_key);
1939   if (cjni_env == NULL) {
1940     ERROR("java plugin: cjni_thread_detach: pthread_getspecific failed.");
1941     return -1;
1942   }
1943
1944   assert(cjni_env->reference_counter > 0);
1945   assert(cjni_env->jvm_env != NULL);
1946
1947   cjni_env->reference_counter--;
1948   DEBUG("java plugin: cjni_thread_detach: cjni_env->reference_counter = %i",
1949         cjni_env->reference_counter);
1950
1951   if (cjni_env->reference_counter > 0)
1952     return 0;
1953
1954   status = (*jvm)->DetachCurrentThread(jvm);
1955   if (status != 0) {
1956     ERROR("java plugin: cjni_thread_detach: DetachCurrentThread failed "
1957           "with status %i.",
1958           status);
1959   }
1960
1961   cjni_env->reference_counter = 0;
1962   cjni_env->jvm_env = NULL;
1963
1964   return 0;
1965 } /* }}} int cjni_thread_detach */
1966
1967 static int cjni_config_add_jvm_arg(oconfig_item_t *ci) /* {{{ */
1968 {
1969   char **tmp;
1970
1971   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
1972     WARNING("java plugin: `JVMArg' needs exactly one string argument.");
1973     return -1;
1974   }
1975
1976   if (jvm != NULL) {
1977     ERROR("java plugin: All `JVMArg' options MUST appear before all "
1978           "`LoadPlugin' options! The JVM is already started and I have to "
1979           "ignore this argument: %s",
1980           ci->values[0].value.string);
1981     return -1;
1982   }
1983
1984   tmp = realloc(jvm_argv, sizeof(char *) * (jvm_argc + 1));
1985   if (tmp == NULL) {
1986     ERROR("java plugin: realloc failed.");
1987     return -1;
1988   }
1989   jvm_argv = tmp;
1990
1991   jvm_argv[jvm_argc] = strdup(ci->values[0].value.string);
1992   if (jvm_argv[jvm_argc] == NULL) {
1993     ERROR("java plugin: strdup failed.");
1994     return -1;
1995   }
1996   jvm_argc++;
1997
1998   return 0;
1999 } /* }}} int cjni_config_add_jvm_arg */
2000
2001 static int cjni_config_load_plugin(oconfig_item_t *ci) /* {{{ */
2002 {
2003   JNIEnv *jvm_env;
2004   java_plugin_class_t *class;
2005   jmethodID constructor_id;
2006   jobject tmp_object;
2007
2008   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
2009     WARNING("java plugin: `LoadPlugin' needs exactly one string argument.");
2010     return -1;
2011   }
2012
2013   jvm_env = cjni_thread_attach();
2014   if (jvm_env == NULL)
2015     return -1;
2016
2017   class = realloc(java_classes_list,
2018                   (java_classes_list_len + 1) * sizeof(*java_classes_list));
2019   if (class == NULL) {
2020     ERROR("java plugin: realloc failed.");
2021     cjni_thread_detach();
2022     return -1;
2023   }
2024   java_classes_list = class;
2025   class = java_classes_list + java_classes_list_len;
2026
2027   memset(class, 0, sizeof(*class));
2028   class->name = strdup(ci->values[0].value.string);
2029   if (class->name == NULL) {
2030     ERROR("java plugin: strdup failed.");
2031     cjni_thread_detach();
2032     return -1;
2033   }
2034   class->class = NULL;
2035   class->object = NULL;
2036
2037   { /* Replace all dots ('.') with slashes ('/'). Dots are usually used
2038        thorough the Java community, but (Sun's) `FindClass' and friends need
2039        slashes. */
2040     for (size_t i = 0; class->name[i] != 0; i++)
2041       if (class->name[i] == '.')
2042         class->name[i] = '/';
2043   }
2044
2045   DEBUG("java plugin: Loading class %s", class->name);
2046
2047   class->class = (*jvm_env)->FindClass(jvm_env, class->name);
2048   if (class->class == NULL) {
2049     ERROR("java plugin: cjni_config_load_plugin: FindClass (%s) failed.",
2050           class->name);
2051     cjni_thread_detach();
2052     free(class->name);
2053     return -1;
2054   }
2055
2056   constructor_id =
2057       (*jvm_env)->GetMethodID(jvm_env, class->class, "<init>", "()V");
2058   if (constructor_id == NULL) {
2059     ERROR("java plugin: cjni_config_load_plugin: "
2060           "Could not find the constructor for `%s'.",
2061           class->name);
2062     cjni_thread_detach();
2063     free(class->name);
2064     return -1;
2065   }
2066
2067   tmp_object = (*jvm_env)->NewObject(jvm_env, class->class, constructor_id);
2068   if (tmp_object != NULL)
2069     class->object = (*jvm_env)->NewGlobalRef(jvm_env, tmp_object);
2070   else
2071     class->object = NULL;
2072   if (class->object == NULL) {
2073     ERROR("java plugin: cjni_config_load_plugin: "
2074           "Could create a new `%s' object.",
2075           class->name);
2076     cjni_thread_detach();
2077     free(class->name);
2078     return -1;
2079   }
2080
2081   cjni_thread_detach();
2082
2083   java_classes_list_len++;
2084
2085   return 0;
2086 } /* }}} int cjni_config_load_plugin */
2087
2088 static int cjni_config_plugin_block(oconfig_item_t *ci) /* {{{ */
2089 {
2090   JNIEnv *jvm_env;
2091   cjni_callback_info_t *cbi;
2092   jobject o_ocitem;
2093   const char *name;
2094
2095   jclass class;
2096   jmethodID method;
2097
2098   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
2099     WARNING("java plugin: `Plugin' blocks "
2100             "need exactly one string argument.");
2101     return -1;
2102   }
2103
2104   name = ci->values[0].value.string;
2105
2106   cbi = NULL;
2107   for (size_t i = 0; i < java_callbacks_num; i++) {
2108     if (java_callbacks[i].type != CB_TYPE_CONFIG)
2109       continue;
2110
2111     if (strcmp(name, java_callbacks[i].name) != 0)
2112       continue;
2113
2114     cbi = java_callbacks + i;
2115     break;
2116   }
2117
2118   if (cbi == NULL) {
2119     NOTICE("java plugin: Configuration block for `%s' found, but no such "
2120            "configuration callback has been registered. Please make sure, the "
2121            "`LoadPlugin' lines precede the `Plugin' blocks.",
2122            name);
2123     return 0;
2124   }
2125
2126   DEBUG("java plugin: Configuring %s", name);
2127
2128   jvm_env = cjni_thread_attach();
2129   if (jvm_env == NULL)
2130     return -1;
2131
2132   o_ocitem = ctoj_oconfig_item(jvm_env, ci);
2133   if (o_ocitem == NULL) {
2134     ERROR("java plugin: cjni_config_plugin_block: ctoj_oconfig_item failed.");
2135     cjni_thread_detach();
2136     return -1;
2137   }
2138
2139   class = (*jvm_env)->GetObjectClass(jvm_env, cbi->object);
2140   method = (*jvm_env)->GetMethodID(jvm_env, class, "config",
2141                                    "(Lorg/collectd/api/OConfigItem;)I");
2142
2143   (*jvm_env)->CallIntMethod(jvm_env, cbi->object, method, o_ocitem);
2144
2145   (*jvm_env)->DeleteLocalRef(jvm_env, o_ocitem);
2146   cjni_thread_detach();
2147   return 0;
2148 } /* }}} int cjni_config_plugin_block */
2149
2150 static int cjni_config_perform(oconfig_item_t *ci) /* {{{ */
2151 {
2152   int success;
2153   int errors;
2154   int status;
2155
2156   success = 0;
2157   errors = 0;
2158
2159   for (int i = 0; i < ci->children_num; i++) {
2160     oconfig_item_t *child = ci->children + i;
2161
2162     if (strcasecmp("JVMArg", child->key) == 0) {
2163       status = cjni_config_add_jvm_arg(child);
2164       if (status == 0)
2165         success++;
2166       else
2167         errors++;
2168     } else if (strcasecmp("LoadPlugin", child->key) == 0) {
2169       status = cjni_config_load_plugin(child);
2170       if (status == 0)
2171         success++;
2172       else
2173         errors++;
2174     } else if (strcasecmp("Plugin", child->key) == 0) {
2175       status = cjni_config_plugin_block(child);
2176       if (status == 0)
2177         success++;
2178       else
2179         errors++;
2180     } else {
2181       WARNING("java plugin: Option `%s' not allowed here.", child->key);
2182       errors++;
2183     }
2184   }
2185
2186   DEBUG("java plugin: jvm_argc = %zu;", jvm_argc);
2187   DEBUG("java plugin: java_classes_list_len = %zu;", java_classes_list_len);
2188
2189   if ((success == 0) && (errors > 0)) {
2190     ERROR("java plugin: All statements failed.");
2191     return -1;
2192   }
2193
2194   return 0;
2195 } /* }}} int cjni_config_perform */
2196
2197 /* Copy the children of `ci' to the global `config_block' variable. */
2198 static int cjni_config_callback(oconfig_item_t *ci) /* {{{ */
2199 {
2200   oconfig_item_t *ci_copy;
2201   oconfig_item_t *tmp;
2202
2203   assert(ci != NULL);
2204   if (ci->children_num == 0)
2205     return 0; /* nothing to do */
2206
2207   ci_copy = oconfig_clone(ci);
2208   if (ci_copy == NULL) {
2209     ERROR("java plugin: oconfig_clone failed.");
2210     return -1;
2211   }
2212
2213   if (config_block == NULL) {
2214     config_block = ci_copy;
2215     return 0;
2216   }
2217
2218   tmp = realloc(config_block->children,
2219                 (config_block->children_num + ci_copy->children_num) *
2220                     sizeof(*tmp));
2221   if (tmp == NULL) {
2222     ERROR("java plugin: realloc failed.");
2223     oconfig_free(ci_copy);
2224     return -1;
2225   }
2226   config_block->children = tmp;
2227
2228   /* Copy the pointers */
2229   memcpy(config_block->children + config_block->children_num, ci_copy->children,
2230          ci_copy->children_num * sizeof(*ci_copy->children));
2231   config_block->children_num += ci_copy->children_num;
2232
2233   /* Delete the pointers from the copy, so `oconfig_free' can't free them. */
2234   memset(ci_copy->children, 0,
2235          ci_copy->children_num * sizeof(*ci_copy->children));
2236   ci_copy->children_num = 0;
2237
2238   oconfig_free(ci_copy);
2239
2240   return 0;
2241 } /* }}} int cjni_config_callback */
2242
2243 /* Free the data contained in the `user_data_t' pointer passed to `cjni_read'
2244  * and `cjni_write'. In particular, delete the global reference to the Java
2245  * object. */
2246 static void cjni_callback_info_destroy(void *arg) /* {{{ */
2247 {
2248   JNIEnv *jvm_env;
2249   cjni_callback_info_t *cbi;
2250
2251   DEBUG("java plugin: cjni_callback_info_destroy (arg = %p);", arg);
2252
2253   cbi = (cjni_callback_info_t *)arg;
2254
2255   /* This condition can occur when shutting down. */
2256   if (jvm == NULL) {
2257     sfree(cbi);
2258     return;
2259   }
2260
2261   if (arg == NULL)
2262     return;
2263
2264   jvm_env = cjni_thread_attach();
2265   if (jvm_env == NULL) {
2266     ERROR(
2267         "java plugin: cjni_callback_info_destroy: cjni_thread_attach failed.");
2268     return;
2269   }
2270
2271   (*jvm_env)->DeleteGlobalRef(jvm_env, cbi->object);
2272
2273   cbi->method = NULL;
2274   cbi->object = NULL;
2275   cbi->class = NULL;
2276   free(cbi);
2277
2278   cjni_thread_detach();
2279 } /* }}} void cjni_callback_info_destroy */
2280
2281 /* Call the CB_TYPE_READ callback pointed to by the `user_data_t' pointer. */
2282 static int cjni_read(user_data_t *ud) /* {{{ */
2283 {
2284   JNIEnv *jvm_env;
2285   cjni_callback_info_t *cbi;
2286   int ret_status;
2287
2288   if (jvm == NULL) {
2289     ERROR("java plugin: cjni_read: jvm == NULL");
2290     return -1;
2291   }
2292
2293   if ((ud == NULL) || (ud->data == NULL)) {
2294     ERROR("java plugin: cjni_read: Invalid user data.");
2295     return -1;
2296   }
2297
2298   jvm_env = cjni_thread_attach();
2299   if (jvm_env == NULL)
2300     return -1;
2301
2302   cbi = (cjni_callback_info_t *)ud->data;
2303
2304   ret_status = (*jvm_env)->CallIntMethod(jvm_env, cbi->object, cbi->method);
2305
2306   cjni_thread_detach();
2307   return ret_status;
2308 } /* }}} int cjni_read */
2309
2310 /* Call the CB_TYPE_WRITE callback pointed to by the `user_data_t' pointer. */
2311 static int cjni_write(const data_set_t *ds, const value_list_t *vl, /* {{{ */
2312                       user_data_t *ud) {
2313   JNIEnv *jvm_env;
2314   cjni_callback_info_t *cbi;
2315   jobject vl_java;
2316   int ret_status;
2317
2318   if (jvm == NULL) {
2319     ERROR("java plugin: cjni_write: jvm == NULL");
2320     return -1;
2321   }
2322
2323   if ((ud == NULL) || (ud->data == NULL)) {
2324     ERROR("java plugin: cjni_write: Invalid user data.");
2325     return -1;
2326   }
2327
2328   jvm_env = cjni_thread_attach();
2329   if (jvm_env == NULL)
2330     return -1;
2331
2332   cbi = (cjni_callback_info_t *)ud->data;
2333
2334   vl_java = ctoj_value_list(jvm_env, ds, vl);
2335   if (vl_java == NULL) {
2336     ERROR("java plugin: cjni_write: ctoj_value_list failed.");
2337     cjni_thread_detach();
2338     return -1;
2339   }
2340
2341   ret_status =
2342       (*jvm_env)->CallIntMethod(jvm_env, cbi->object, cbi->method, vl_java);
2343
2344   (*jvm_env)->DeleteLocalRef(jvm_env, vl_java);
2345
2346   cjni_thread_detach();
2347   return ret_status;
2348 } /* }}} int cjni_write */
2349
2350 /* Call the CB_TYPE_FLUSH callback pointed to by the `user_data_t' pointer. */
2351 static int cjni_flush(cdtime_t timeout, const char *identifier, /* {{{ */
2352                       user_data_t *ud) {
2353   JNIEnv *jvm_env;
2354   cjni_callback_info_t *cbi;
2355   jobject o_timeout;
2356   jobject o_identifier;
2357   int ret_status;
2358
2359   if (jvm == NULL) {
2360     ERROR("java plugin: cjni_flush: jvm == NULL");
2361     return -1;
2362   }
2363
2364   if ((ud == NULL) || (ud->data == NULL)) {
2365     ERROR("java plugin: cjni_flush: Invalid user data.");
2366     return -1;
2367   }
2368
2369   jvm_env = cjni_thread_attach();
2370   if (jvm_env == NULL)
2371     return -1;
2372
2373   cbi = (cjni_callback_info_t *)ud->data;
2374
2375   o_timeout =
2376       ctoj_jdouble_to_number(jvm_env, (jdouble)CDTIME_T_TO_DOUBLE(timeout));
2377   if (o_timeout == NULL) {
2378     ERROR("java plugin: cjni_flush: Converting double "
2379           "to Number object failed.");
2380     cjni_thread_detach();
2381     return -1;
2382   }
2383
2384   o_identifier = NULL;
2385   if (identifier != NULL) {
2386     o_identifier = (*jvm_env)->NewStringUTF(jvm_env, identifier);
2387     if (o_identifier == NULL) {
2388       (*jvm_env)->DeleteLocalRef(jvm_env, o_timeout);
2389       ERROR("java plugin: cjni_flush: NewStringUTF failed.");
2390       cjni_thread_detach();
2391       return -1;
2392     }
2393   }
2394
2395   ret_status = (*jvm_env)->CallIntMethod(jvm_env, cbi->object, cbi->method,
2396                                          o_timeout, o_identifier);
2397
2398   (*jvm_env)->DeleteLocalRef(jvm_env, o_identifier);
2399   (*jvm_env)->DeleteLocalRef(jvm_env, o_timeout);
2400
2401   cjni_thread_detach();
2402   return ret_status;
2403 } /* }}} int cjni_flush */
2404
2405 /* Call the CB_TYPE_LOG callback pointed to by the `user_data_t' pointer. */
2406 static void cjni_log(int severity, const char *message, /* {{{ */
2407                      user_data_t *ud) {
2408   JNIEnv *jvm_env;
2409   cjni_callback_info_t *cbi;
2410   jobject o_message;
2411
2412   if (jvm == NULL)
2413     return;
2414
2415   if ((ud == NULL) || (ud->data == NULL))
2416     return;
2417
2418   jvm_env = cjni_thread_attach();
2419   if (jvm_env == NULL)
2420     return;
2421
2422   cbi = (cjni_callback_info_t *)ud->data;
2423
2424   o_message = (*jvm_env)->NewStringUTF(jvm_env, message);
2425   if (o_message == NULL) {
2426     cjni_thread_detach();
2427     return;
2428   }
2429
2430   (*jvm_env)->CallVoidMethod(jvm_env, cbi->object, cbi->method, (jint)severity,
2431                              o_message);
2432
2433   (*jvm_env)->DeleteLocalRef(jvm_env, o_message);
2434
2435   cjni_thread_detach();
2436 } /* }}} void cjni_log */
2437
2438 /* Call the CB_TYPE_NOTIFICATION callback pointed to by the `user_data_t'
2439  * pointer. */
2440 static int cjni_notification(const notification_t *n, /* {{{ */
2441                              user_data_t *ud) {
2442   JNIEnv *jvm_env;
2443   cjni_callback_info_t *cbi;
2444   jobject o_notification;
2445   int ret_status;
2446
2447   if (jvm == NULL) {
2448     ERROR("java plugin: cjni_read: jvm == NULL");
2449     return -1;
2450   }
2451
2452   if ((ud == NULL) || (ud->data == NULL)) {
2453     ERROR("java plugin: cjni_read: Invalid user data.");
2454     return -1;
2455   }
2456
2457   jvm_env = cjni_thread_attach();
2458   if (jvm_env == NULL)
2459     return -1;
2460
2461   cbi = (cjni_callback_info_t *)ud->data;
2462
2463   o_notification = ctoj_notification(jvm_env, n);
2464   if (o_notification == NULL) {
2465     ERROR("java plugin: cjni_notification: ctoj_notification failed.");
2466     cjni_thread_detach();
2467     return -1;
2468   }
2469
2470   ret_status = (*jvm_env)->CallIntMethod(jvm_env, cbi->object, cbi->method,
2471                                          o_notification);
2472
2473   (*jvm_env)->DeleteLocalRef(jvm_env, o_notification);
2474
2475   cjni_thread_detach();
2476   return ret_status;
2477 } /* }}} int cjni_notification */
2478
2479 /* Callbacks for matches implemented in Java */
2480 static int cjni_match_target_create(const oconfig_item_t *ci, /* {{{ */
2481                                     void **user_data) {
2482   JNIEnv *jvm_env;
2483   cjni_callback_info_t *cbi_ret;
2484   cjni_callback_info_t *cbi_factory;
2485   const char *name;
2486   jobject o_ci;
2487   jobject o_tmp;
2488   int type;
2489
2490   cbi_ret = NULL;
2491   o_ci = NULL;
2492   jvm_env = NULL;
2493
2494 #define BAIL_OUT(status)                                                       \
2495   if (cbi_ret != NULL) {                                                       \
2496     free(cbi_ret->name);                                                       \
2497     if ((jvm_env != NULL) && (cbi_ret->object != NULL))                        \
2498       (*jvm_env)->DeleteLocalRef(jvm_env, cbi_ret->object);                    \
2499   }                                                                            \
2500   free(cbi_ret);                                                               \
2501   if (o_ci != NULL)                                                            \
2502     (*jvm_env)->DeleteLocalRef(jvm_env, o_ci);                                 \
2503   cjni_thread_detach();                                                        \
2504   return (status)
2505
2506   if (jvm == NULL) {
2507     ERROR("java plugin: cjni_read: jvm == NULL");
2508     return -1;
2509   }
2510
2511   jvm_env = cjni_thread_attach();
2512   if (jvm_env == NULL)
2513     return -1;
2514
2515   /* Find out whether to create a match or a target. */
2516   if (strcasecmp("Match", ci->key) == 0)
2517     type = CB_TYPE_MATCH;
2518   else if (strcasecmp("Target", ci->key) == 0)
2519     type = CB_TYPE_TARGET;
2520   else {
2521     ERROR("java plugin: cjni_match_target_create: Can't figure out whether "
2522           "to create a match or a target.");
2523     BAIL_OUT(-1);
2524   }
2525
2526   /* This is the name of the match we should create. */
2527   name = ci->values[0].value.string;
2528
2529   /* Lets see if we have a matching factory here.. */
2530   cbi_factory = NULL;
2531   for (size_t i = 0; i < java_callbacks_num; i++) {
2532     if (java_callbacks[i].type != type)
2533       continue;
2534
2535     if (strcmp(name, java_callbacks[i].name) != 0)
2536       continue;
2537
2538     cbi_factory = java_callbacks + i;
2539     break;
2540   }
2541
2542   /* Nope, no factory for that name.. */
2543   if (cbi_factory == NULL) {
2544     ERROR("java plugin: cjni_match_target_create: "
2545           "No such match factory registered: %s",
2546           name);
2547     BAIL_OUT(-1);
2548   }
2549
2550   /* We convert `ci' to its Java equivalent.. */
2551   o_ci = ctoj_oconfig_item(jvm_env, ci);
2552   if (o_ci == NULL) {
2553     ERROR("java plugin: cjni_match_target_create: "
2554           "ctoj_oconfig_item failed.");
2555     BAIL_OUT(-1);
2556   }
2557
2558   /* Allocate a new callback info structure. This is going to be our user_data
2559    * pointer. */
2560   cbi_ret = calloc(1, sizeof(*cbi_ret));
2561   if (cbi_ret == NULL) {
2562     ERROR("java plugin: cjni_match_target_create: calloc failed.");
2563     BAIL_OUT(-1);
2564   }
2565
2566   cbi_ret->object = NULL;
2567   cbi_ret->type = type;
2568
2569   /* Lets fill the callback info structure.. First, the name: */
2570   cbi_ret->name = strdup(name);
2571   if (cbi_ret->name == NULL) {
2572     ERROR("java plugin: cjni_match_target_create: strdup failed.");
2573     BAIL_OUT(-1);
2574   }
2575
2576   /* Then call the factory method so it creates a new object for us. */
2577   o_tmp = (*jvm_env)->CallObjectMethod(jvm_env, cbi_factory->object,
2578                                        cbi_factory->method, o_ci);
2579   if (o_tmp == NULL) {
2580     ERROR("java plugin: cjni_match_target_create: CallObjectMethod failed.");
2581     BAIL_OUT(-1);
2582   }
2583
2584   cbi_ret->object = (*jvm_env)->NewGlobalRef(jvm_env, o_tmp);
2585   if (o_tmp == NULL) {
2586     ERROR("java plugin: cjni_match_target_create: NewGlobalRef failed.");
2587     BAIL_OUT(-1);
2588   }
2589
2590   /* This is the class of the match. It is possibly different from the class of
2591    * the match-factory! */
2592   cbi_ret->class = (*jvm_env)->GetObjectClass(jvm_env, cbi_ret->object);
2593   if (cbi_ret->class == NULL) {
2594     ERROR("java plugin: cjni_match_target_create: GetObjectClass failed.");
2595     BAIL_OUT(-1);
2596   }
2597
2598   /* Lookup the `int match (DataSet, ValueList)' method. */
2599   cbi_ret->method = (*jvm_env)->GetMethodID(
2600       jvm_env, cbi_ret->class,
2601       /* method name = */ (type == CB_TYPE_MATCH) ? "match" : "invoke",
2602       "(Lorg/collectd/api/DataSet;Lorg/collectd/api/ValueList;)I");
2603   if (cbi_ret->method == NULL) {
2604     ERROR("java plugin: cjni_match_target_create: GetMethodID failed.");
2605     BAIL_OUT(-1);
2606   }
2607
2608   /* Return the newly created match via the user_data pointer. */
2609   *user_data = (void *)cbi_ret;
2610
2611   cjni_thread_detach();
2612
2613   DEBUG("java plugin: cjni_match_target_create: "
2614         "Successfully created a `%s' %s.",
2615         cbi_ret->name, (type == CB_TYPE_MATCH) ? "match" : "target");
2616
2617   /* Success! */
2618   return 0;
2619 #undef BAIL_OUT
2620 } /* }}} int cjni_match_target_create */
2621
2622 static int cjni_match_target_destroy(void **user_data) /* {{{ */
2623 {
2624   cjni_callback_info_destroy(*user_data);
2625   *user_data = NULL;
2626
2627   return 0;
2628 } /* }}} int cjni_match_target_destroy */
2629
2630 static int cjni_match_target_invoke(const data_set_t *ds, /* {{{ */
2631                                     value_list_t *vl,
2632                                     notification_meta_t **meta,
2633                                     void **user_data) {
2634   JNIEnv *jvm_env;
2635   cjni_callback_info_t *cbi;
2636   jobject o_vl;
2637   jobject o_ds;
2638   int ret_status;
2639   int status;
2640
2641   if (jvm == NULL) {
2642     ERROR("java plugin: cjni_match_target_invoke: jvm == NULL");
2643     return -1;
2644   }
2645
2646   jvm_env = cjni_thread_attach();
2647   if (jvm_env == NULL)
2648     return -1;
2649
2650   cbi = (cjni_callback_info_t *)*user_data;
2651
2652   o_vl = ctoj_value_list(jvm_env, ds, vl);
2653   if (o_vl == NULL) {
2654     ERROR("java plugin: cjni_match_target_invoke: ctoj_value_list failed.");
2655     cjni_thread_detach();
2656     return -1;
2657   }
2658
2659   o_ds = ctoj_data_set(jvm_env, ds);
2660   if (o_ds == NULL) {
2661     ERROR("java plugin: cjni_match_target_invoke: ctoj_value_list failed.");
2662     cjni_thread_detach();
2663     return -1;
2664   }
2665
2666   ret_status =
2667       (*jvm_env)->CallIntMethod(jvm_env, cbi->object, cbi->method, o_ds, o_vl);
2668
2669   DEBUG("java plugin: cjni_match_target_invoke: Method returned %i.",
2670         ret_status);
2671
2672   /* If we're executing a target, copy the `ValueList' back to our
2673    * `value_list_t'. */
2674   if (cbi->type == CB_TYPE_TARGET) {
2675     value_list_t new_vl = {0};
2676
2677     status = jtoc_value_list(jvm_env, &new_vl, o_vl);
2678     if (status != 0) {
2679       ERROR("java plugin: cjni_match_target_invoke: "
2680             "jtoc_value_list failed.");
2681     } else /* if (status == 0) */
2682     {
2683       /* plugin_dispatch_values assures that this is dynamically allocated
2684        * memory. */
2685       sfree(vl->values);
2686
2687       /* This will replace the vl->values pointer to a new, dynamically
2688        * allocated piece of memory. */
2689       memcpy(vl, &new_vl, sizeof(*vl));
2690     }
2691   } /* if (cbi->type == CB_TYPE_TARGET) */
2692
2693   cjni_thread_detach();
2694   return ret_status;
2695 } /* }}} int cjni_match_target_invoke */
2696
2697 /* Iterate over `java_callbacks' and call all CB_TYPE_INIT callbacks. */
2698 static int cjni_init_plugins(JNIEnv *jvm_env) /* {{{ */
2699 {
2700   int status;
2701
2702   for (size_t i = 0; i < java_callbacks_num; i++) {
2703     if (java_callbacks[i].type != CB_TYPE_INIT)
2704       continue;
2705
2706     DEBUG("java plugin: Initializing %s", java_callbacks[i].name);
2707
2708     status = (*jvm_env)->CallIntMethod(jvm_env, java_callbacks[i].object,
2709                                        java_callbacks[i].method);
2710     if (status != 0) {
2711       ERROR("java plugin: Initializing `%s' failed with status %i. "
2712             "Removing read function.",
2713             java_callbacks[i].name, status);
2714       plugin_unregister_read(java_callbacks[i].name);
2715     }
2716   }
2717
2718   return 0;
2719 } /* }}} int cjni_init_plugins */
2720
2721 /* Iterate over `java_callbacks' and call all CB_TYPE_SHUTDOWN callbacks. */
2722 static int cjni_shutdown_plugins(JNIEnv *jvm_env) /* {{{ */
2723 {
2724   int status;
2725
2726   for (size_t i = 0; i < java_callbacks_num; i++) {
2727     if (java_callbacks[i].type != CB_TYPE_SHUTDOWN)
2728       continue;
2729
2730     DEBUG("java plugin: Shutting down %s", java_callbacks[i].name);
2731
2732     status = (*jvm_env)->CallIntMethod(jvm_env, java_callbacks[i].object,
2733                                        java_callbacks[i].method);
2734     if (status != 0) {
2735       ERROR("java plugin: Shutting down `%s' failed with status %i. ",
2736             java_callbacks[i].name, status);
2737     }
2738   }
2739
2740   return 0;
2741 } /* }}} int cjni_shutdown_plugins */
2742
2743 static int cjni_shutdown(void) /* {{{ */
2744 {
2745   JNIEnv *jvm_env;
2746   JavaVMAttachArgs args = {0};
2747   int status;
2748
2749   if (jvm == NULL)
2750     return 0;
2751
2752   jvm_env = NULL;
2753   args.version = JNI_VERSION_1_2;
2754
2755   status = (*jvm)->AttachCurrentThread(jvm, (void *)&jvm_env, &args);
2756   if (status != 0) {
2757     ERROR("java plugin: cjni_shutdown: AttachCurrentThread failed with status "
2758           "%i.",
2759           status);
2760     return -1;
2761   }
2762
2763   /* Execute all the shutdown functions registered by plugins. */
2764   cjni_shutdown_plugins(jvm_env);
2765
2766   /* Release all the global references to callback functions */
2767   for (size_t i = 0; i < java_callbacks_num; i++) {
2768     if (java_callbacks[i].object != NULL) {
2769       (*jvm_env)->DeleteGlobalRef(jvm_env, java_callbacks[i].object);
2770       java_callbacks[i].object = NULL;
2771     }
2772     sfree(java_callbacks[i].name);
2773   }
2774   java_callbacks_num = 0;
2775   sfree(java_callbacks);
2776
2777   /* Release all the global references to directly loaded classes. */
2778   for (size_t i = 0; i < java_classes_list_len; i++) {
2779     if (java_classes_list[i].object != NULL) {
2780       (*jvm_env)->DeleteGlobalRef(jvm_env, java_classes_list[i].object);
2781       java_classes_list[i].object = NULL;
2782     }
2783     sfree(java_classes_list[i].name);
2784   }
2785   java_classes_list_len = 0;
2786   sfree(java_classes_list);
2787
2788   /* Destroy the JVM */
2789   DEBUG("java plugin: Destroying the JVM.");
2790   (*jvm)->DestroyJavaVM(jvm);
2791   jvm = NULL;
2792   jvm_env = NULL;
2793
2794   pthread_key_delete(jvm_env_key);
2795
2796   /* Free the JVM argument list */
2797   for (size_t i = 0; i < jvm_argc; i++)
2798     sfree(jvm_argv[i]);
2799   jvm_argc = 0;
2800   sfree(jvm_argv);
2801
2802   return 0;
2803 } /* }}} int cjni_shutdown */
2804
2805 /* Initialization: Create a JVM, load all configured classes and call their
2806  * `config' and `init' callback methods. */
2807 static int cjni_init(void) /* {{{ */
2808 {
2809   JNIEnv *jvm_env;
2810
2811   if ((config_block == NULL) && (jvm == NULL)) {
2812     ERROR("java plugin: cjni_init: No configuration block for "
2813           "the java plugin was found.");
2814     return -1;
2815   }
2816
2817   if (config_block != NULL) {
2818     cjni_config_perform(config_block);
2819     oconfig_free(config_block);
2820   }
2821
2822   if (jvm == NULL) {
2823     ERROR("java plugin: cjni_init: jvm == NULL");
2824     return -1;
2825   }
2826
2827   jvm_env = cjni_thread_attach();
2828   if (jvm_env == NULL)
2829     return -1;
2830
2831   cjni_init_plugins(jvm_env);
2832
2833   cjni_thread_detach();
2834   return 0;
2835 } /* }}} int cjni_init */
2836
2837 void module_register(void) {
2838   plugin_register_complex_config("java", cjni_config_callback);
2839   plugin_register_init("java", cjni_init);
2840   plugin_register_shutdown("java", cjni_shutdown);
2841 } /* void module_register (void) */