56b48df2633f155fc0a61826a25fe3a67ba188c6
[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;
81 static pthread_key_t jvm_env_key;
82
83 /* Configuration options for the JVM. */
84 static char **jvm_argv;
85 static size_t jvm_argc = 0;
86
87 /* List of class names to load */
88 static java_plugin_class_t *java_classes_list;
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;
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;
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[%" PRIsz "] = %s", i,
1844           jvm_argv[i]);
1845     vm_args.options[i].optionString = jvm_argv[i];
1846   }
1847
1848   status = JNI_CreateJavaVM(&jvm, (void *)&jvm_env, (void *)&vm_args);
1849   if (status != 0) {
1850     ERROR("java plugin: cjni_create_jvm: "
1851           "JNI_CreateJavaVM failed with status %i.",
1852           status);
1853     return -1;
1854   }
1855   assert(jvm != NULL);
1856   assert(jvm_env != NULL);
1857
1858   /* Call RegisterNatives */
1859   status = cjni_init_native(jvm_env);
1860   if (status != 0) {
1861     ERROR("java plugin: cjni_create_jvm: cjni_init_native failed.");
1862     return -1;
1863   }
1864
1865   DEBUG("java plugin: The JVM has been created.");
1866   return 0;
1867 } /* }}} int cjni_create_jvm */
1868
1869 /* Increase the reference counter to the JVM for this thread. If it was zero,
1870  * attach the JVM first. */
1871 static JNIEnv *cjni_thread_attach(void) /* {{{ */
1872 {
1873   cjni_jvm_env_t *cjni_env;
1874   JNIEnv *jvm_env;
1875
1876   /* If we're the first thread to access the JVM, we'll have to create it
1877    * first.. */
1878   if (jvm == NULL) {
1879     int status;
1880
1881     status = cjni_create_jvm();
1882     if (status != 0) {
1883       ERROR("java plugin: cjni_thread_attach: cjni_create_jvm failed.");
1884       return NULL;
1885     }
1886   }
1887   assert(jvm != NULL);
1888
1889   cjni_env = pthread_getspecific(jvm_env_key);
1890   if (cjni_env == NULL) {
1891     /* This pointer is free'd in `cjni_jvm_env_destroy'. */
1892     cjni_env = calloc(1, sizeof(*cjni_env));
1893     if (cjni_env == NULL) {
1894       ERROR("java plugin: cjni_thread_attach: calloc failed.");
1895       return NULL;
1896     }
1897     cjni_env->reference_counter = 0;
1898     cjni_env->jvm_env = NULL;
1899
1900     pthread_setspecific(jvm_env_key, cjni_env);
1901   }
1902
1903   if (cjni_env->reference_counter > 0) {
1904     cjni_env->reference_counter++;
1905     jvm_env = cjni_env->jvm_env;
1906   } else {
1907     int status;
1908     JavaVMAttachArgs args = {0};
1909
1910     assert(cjni_env->jvm_env == NULL);
1911
1912     args.version = JNI_VERSION_1_2;
1913
1914     status = (*jvm)->AttachCurrentThread(jvm, (void *)&jvm_env, (void *)&args);
1915     if (status != 0) {
1916       ERROR("java plugin: cjni_thread_attach: AttachCurrentThread failed "
1917             "with status %i.",
1918             status);
1919       return NULL;
1920     }
1921
1922     cjni_env->reference_counter = 1;
1923     cjni_env->jvm_env = jvm_env;
1924   }
1925
1926   DEBUG("java plugin: cjni_thread_attach: cjni_env->reference_counter = %i",
1927         cjni_env->reference_counter);
1928   assert(jvm_env != NULL);
1929   return jvm_env;
1930 } /* }}} JNIEnv *cjni_thread_attach */
1931
1932 /* Decrease the reference counter of this thread. If it reaches zero, detach
1933  * from the JVM. */
1934 static int cjni_thread_detach(void) /* {{{ */
1935 {
1936   cjni_jvm_env_t *cjni_env;
1937   int status;
1938
1939   cjni_env = pthread_getspecific(jvm_env_key);
1940   if (cjni_env == NULL) {
1941     ERROR("java plugin: cjni_thread_detach: pthread_getspecific failed.");
1942     return -1;
1943   }
1944
1945   assert(cjni_env->reference_counter > 0);
1946   assert(cjni_env->jvm_env != NULL);
1947
1948   cjni_env->reference_counter--;
1949   DEBUG("java plugin: cjni_thread_detach: cjni_env->reference_counter = %i",
1950         cjni_env->reference_counter);
1951
1952   if (cjni_env->reference_counter > 0)
1953     return 0;
1954
1955   status = (*jvm)->DetachCurrentThread(jvm);
1956   if (status != 0) {
1957     ERROR("java plugin: cjni_thread_detach: DetachCurrentThread failed "
1958           "with status %i.",
1959           status);
1960   }
1961
1962   cjni_env->reference_counter = 0;
1963   cjni_env->jvm_env = NULL;
1964
1965   return 0;
1966 } /* }}} int cjni_thread_detach */
1967
1968 static int cjni_config_add_jvm_arg(oconfig_item_t *ci) /* {{{ */
1969 {
1970   char **tmp;
1971
1972   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
1973     WARNING("java plugin: `JVMArg' needs exactly one string argument.");
1974     return -1;
1975   }
1976
1977   if (jvm != NULL) {
1978     ERROR("java plugin: All `JVMArg' options MUST appear before all "
1979           "`LoadPlugin' options! The JVM is already started and I have to "
1980           "ignore this argument: %s",
1981           ci->values[0].value.string);
1982     return -1;
1983   }
1984
1985   tmp = realloc(jvm_argv, sizeof(char *) * (jvm_argc + 1));
1986   if (tmp == NULL) {
1987     ERROR("java plugin: realloc failed.");
1988     return -1;
1989   }
1990   jvm_argv = tmp;
1991
1992   jvm_argv[jvm_argc] = strdup(ci->values[0].value.string);
1993   if (jvm_argv[jvm_argc] == NULL) {
1994     ERROR("java plugin: strdup failed.");
1995     return -1;
1996   }
1997   jvm_argc++;
1998
1999   return 0;
2000 } /* }}} int cjni_config_add_jvm_arg */
2001
2002 static int cjni_config_load_plugin(oconfig_item_t *ci) /* {{{ */
2003 {
2004   JNIEnv *jvm_env;
2005   java_plugin_class_t *class;
2006   jmethodID constructor_id;
2007   jobject tmp_object;
2008
2009   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
2010     WARNING("java plugin: `LoadPlugin' needs exactly one string argument.");
2011     return -1;
2012   }
2013
2014   jvm_env = cjni_thread_attach();
2015   if (jvm_env == NULL)
2016     return -1;
2017
2018   class = realloc(java_classes_list,
2019                   (java_classes_list_len + 1) * sizeof(*java_classes_list));
2020   if (class == NULL) {
2021     ERROR("java plugin: realloc failed.");
2022     cjni_thread_detach();
2023     return -1;
2024   }
2025   java_classes_list = class;
2026   class = java_classes_list + java_classes_list_len;
2027
2028   memset(class, 0, sizeof(*class));
2029   class->name = strdup(ci->values[0].value.string);
2030   if (class->name == NULL) {
2031     ERROR("java plugin: strdup failed.");
2032     cjni_thread_detach();
2033     return -1;
2034   }
2035   class->class = NULL;
2036   class->object = NULL;
2037
2038   { /* Replace all dots ('.') with slashes ('/'). Dots are usually used
2039        thorough the Java community, but (Sun's) `FindClass' and friends need
2040        slashes. */
2041     for (size_t i = 0; class->name[i] != 0; i++)
2042       if (class->name[i] == '.')
2043         class->name[i] = '/';
2044   }
2045
2046   DEBUG("java plugin: Loading class %s", class->name);
2047
2048   class->class = (*jvm_env)->FindClass(jvm_env, class->name);
2049   if (class->class == NULL) {
2050     ERROR("java plugin: cjni_config_load_plugin: FindClass (%s) failed.",
2051           class->name);
2052     cjni_thread_detach();
2053     free(class->name);
2054     return -1;
2055   }
2056
2057   constructor_id =
2058       (*jvm_env)->GetMethodID(jvm_env, class->class, "<init>", "()V");
2059   if (constructor_id == NULL) {
2060     ERROR("java plugin: cjni_config_load_plugin: "
2061           "Could not find the constructor for `%s'.",
2062           class->name);
2063     cjni_thread_detach();
2064     free(class->name);
2065     return -1;
2066   }
2067
2068   tmp_object = (*jvm_env)->NewObject(jvm_env, class->class, constructor_id);
2069   if (tmp_object != NULL)
2070     class->object = (*jvm_env)->NewGlobalRef(jvm_env, tmp_object);
2071   else
2072     class->object = NULL;
2073   if (class->object == NULL) {
2074     ERROR("java plugin: cjni_config_load_plugin: "
2075           "Could create a new `%s' object.",
2076           class->name);
2077     cjni_thread_detach();
2078     free(class->name);
2079     return -1;
2080   }
2081
2082   cjni_thread_detach();
2083
2084   java_classes_list_len++;
2085
2086   return 0;
2087 } /* }}} int cjni_config_load_plugin */
2088
2089 static int cjni_config_plugin_block(oconfig_item_t *ci) /* {{{ */
2090 {
2091   JNIEnv *jvm_env;
2092   cjni_callback_info_t *cbi;
2093   jobject o_ocitem;
2094   const char *name;
2095
2096   jclass class;
2097   jmethodID method;
2098
2099   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
2100     WARNING("java plugin: `Plugin' blocks "
2101             "need exactly one string argument.");
2102     return -1;
2103   }
2104
2105   name = ci->values[0].value.string;
2106
2107   cbi = NULL;
2108   for (size_t i = 0; i < java_callbacks_num; i++) {
2109     if (java_callbacks[i].type != CB_TYPE_CONFIG)
2110       continue;
2111
2112     if (strcmp(name, java_callbacks[i].name) != 0)
2113       continue;
2114
2115     cbi = java_callbacks + i;
2116     break;
2117   }
2118
2119   if (cbi == NULL) {
2120     NOTICE("java plugin: Configuration block for `%s' found, but no such "
2121            "configuration callback has been registered. Please make sure, the "
2122            "`LoadPlugin' lines precede the `Plugin' blocks.",
2123            name);
2124     return 0;
2125   }
2126
2127   DEBUG("java plugin: Configuring %s", name);
2128
2129   jvm_env = cjni_thread_attach();
2130   if (jvm_env == NULL)
2131     return -1;
2132
2133   o_ocitem = ctoj_oconfig_item(jvm_env, ci);
2134   if (o_ocitem == NULL) {
2135     ERROR("java plugin: cjni_config_plugin_block: ctoj_oconfig_item failed.");
2136     cjni_thread_detach();
2137     return -1;
2138   }
2139
2140   class = (*jvm_env)->GetObjectClass(jvm_env, cbi->object);
2141   method = (*jvm_env)->GetMethodID(jvm_env, class, "config",
2142                                    "(Lorg/collectd/api/OConfigItem;)I");
2143
2144   (*jvm_env)->CallIntMethod(jvm_env, cbi->object, method, o_ocitem);
2145
2146   (*jvm_env)->DeleteLocalRef(jvm_env, o_ocitem);
2147   cjni_thread_detach();
2148   return 0;
2149 } /* }}} int cjni_config_plugin_block */
2150
2151 static int cjni_config_perform(oconfig_item_t *ci) /* {{{ */
2152 {
2153   int success;
2154   int errors;
2155   int status;
2156
2157   success = 0;
2158   errors = 0;
2159
2160   for (int i = 0; i < ci->children_num; i++) {
2161     oconfig_item_t *child = ci->children + i;
2162
2163     if (strcasecmp("JVMArg", child->key) == 0) {
2164       status = cjni_config_add_jvm_arg(child);
2165       if (status == 0)
2166         success++;
2167       else
2168         errors++;
2169     } else if (strcasecmp("LoadPlugin", child->key) == 0) {
2170       status = cjni_config_load_plugin(child);
2171       if (status == 0)
2172         success++;
2173       else
2174         errors++;
2175     } else if (strcasecmp("Plugin", child->key) == 0) {
2176       status = cjni_config_plugin_block(child);
2177       if (status == 0)
2178         success++;
2179       else
2180         errors++;
2181     } else {
2182       WARNING("java plugin: Option `%s' not allowed here.", child->key);
2183       errors++;
2184     }
2185   }
2186
2187   DEBUG("java plugin: jvm_argc = %" PRIsz ";", jvm_argc);
2188   DEBUG("java plugin: java_classes_list_len = %" PRIsz ";",
2189         java_classes_list_len);
2190
2191   if ((success == 0) && (errors > 0)) {
2192     ERROR("java plugin: All statements failed.");
2193     return -1;
2194   }
2195
2196   return 0;
2197 } /* }}} int cjni_config_perform */
2198
2199 /* Copy the children of `ci' to the global `config_block' variable. */
2200 static int cjni_config_callback(oconfig_item_t *ci) /* {{{ */
2201 {
2202   oconfig_item_t *ci_copy;
2203   oconfig_item_t *tmp;
2204
2205   assert(ci != NULL);
2206   if (ci->children_num == 0)
2207     return 0; /* nothing to do */
2208
2209   ci_copy = oconfig_clone(ci);
2210   if (ci_copy == NULL) {
2211     ERROR("java plugin: oconfig_clone failed.");
2212     return -1;
2213   }
2214
2215   if (config_block == NULL) {
2216     config_block = ci_copy;
2217     return 0;
2218   }
2219
2220   tmp = realloc(config_block->children,
2221                 (config_block->children_num + ci_copy->children_num) *
2222                     sizeof(*tmp));
2223   if (tmp == NULL) {
2224     ERROR("java plugin: realloc failed.");
2225     oconfig_free(ci_copy);
2226     return -1;
2227   }
2228   config_block->children = tmp;
2229
2230   /* Copy the pointers */
2231   memcpy(config_block->children + config_block->children_num, ci_copy->children,
2232          ci_copy->children_num * sizeof(*ci_copy->children));
2233   config_block->children_num += ci_copy->children_num;
2234
2235   /* Delete the pointers from the copy, so `oconfig_free' can't free them. */
2236   memset(ci_copy->children, 0,
2237          ci_copy->children_num * sizeof(*ci_copy->children));
2238   ci_copy->children_num = 0;
2239
2240   oconfig_free(ci_copy);
2241
2242   return 0;
2243 } /* }}} int cjni_config_callback */
2244
2245 /* Free the data contained in the `user_data_t' pointer passed to `cjni_read'
2246  * and `cjni_write'. In particular, delete the global reference to the Java
2247  * object. */
2248 static void cjni_callback_info_destroy(void *arg) /* {{{ */
2249 {
2250   JNIEnv *jvm_env;
2251   cjni_callback_info_t *cbi;
2252
2253   DEBUG("java plugin: cjni_callback_info_destroy (arg = %p);", arg);
2254
2255   cbi = (cjni_callback_info_t *)arg;
2256
2257   /* This condition can occur when shutting down. */
2258   if (jvm == NULL) {
2259     sfree(cbi);
2260     return;
2261   }
2262
2263   if (arg == NULL)
2264     return;
2265
2266   jvm_env = cjni_thread_attach();
2267   if (jvm_env == NULL) {
2268     ERROR(
2269         "java plugin: cjni_callback_info_destroy: cjni_thread_attach failed.");
2270     return;
2271   }
2272
2273   (*jvm_env)->DeleteGlobalRef(jvm_env, cbi->object);
2274
2275   cbi->method = NULL;
2276   cbi->object = NULL;
2277   cbi->class = NULL;
2278   free(cbi);
2279
2280   cjni_thread_detach();
2281 } /* }}} void cjni_callback_info_destroy */
2282
2283 /* Call the CB_TYPE_READ callback pointed to by the `user_data_t' pointer. */
2284 static int cjni_read(user_data_t *ud) /* {{{ */
2285 {
2286   JNIEnv *jvm_env;
2287   cjni_callback_info_t *cbi;
2288   int ret_status;
2289
2290   if (jvm == NULL) {
2291     ERROR("java plugin: cjni_read: jvm == NULL");
2292     return -1;
2293   }
2294
2295   if ((ud == NULL) || (ud->data == NULL)) {
2296     ERROR("java plugin: cjni_read: Invalid user data.");
2297     return -1;
2298   }
2299
2300   jvm_env = cjni_thread_attach();
2301   if (jvm_env == NULL)
2302     return -1;
2303
2304   cbi = (cjni_callback_info_t *)ud->data;
2305
2306   ret_status = (*jvm_env)->CallIntMethod(jvm_env, cbi->object, cbi->method);
2307
2308   cjni_thread_detach();
2309   return ret_status;
2310 } /* }}} int cjni_read */
2311
2312 /* Call the CB_TYPE_WRITE callback pointed to by the `user_data_t' pointer. */
2313 static int cjni_write(const data_set_t *ds, const value_list_t *vl, /* {{{ */
2314                       user_data_t *ud) {
2315   JNIEnv *jvm_env;
2316   cjni_callback_info_t *cbi;
2317   jobject vl_java;
2318   int ret_status;
2319
2320   if (jvm == NULL) {
2321     ERROR("java plugin: cjni_write: jvm == NULL");
2322     return -1;
2323   }
2324
2325   if ((ud == NULL) || (ud->data == NULL)) {
2326     ERROR("java plugin: cjni_write: Invalid user data.");
2327     return -1;
2328   }
2329
2330   jvm_env = cjni_thread_attach();
2331   if (jvm_env == NULL)
2332     return -1;
2333
2334   cbi = (cjni_callback_info_t *)ud->data;
2335
2336   vl_java = ctoj_value_list(jvm_env, ds, vl);
2337   if (vl_java == NULL) {
2338     ERROR("java plugin: cjni_write: ctoj_value_list failed.");
2339     cjni_thread_detach();
2340     return -1;
2341   }
2342
2343   ret_status =
2344       (*jvm_env)->CallIntMethod(jvm_env, cbi->object, cbi->method, vl_java);
2345
2346   (*jvm_env)->DeleteLocalRef(jvm_env, vl_java);
2347
2348   cjni_thread_detach();
2349   return ret_status;
2350 } /* }}} int cjni_write */
2351
2352 /* Call the CB_TYPE_FLUSH callback pointed to by the `user_data_t' pointer. */
2353 static int cjni_flush(cdtime_t timeout, const char *identifier, /* {{{ */
2354                       user_data_t *ud) {
2355   JNIEnv *jvm_env;
2356   cjni_callback_info_t *cbi;
2357   jobject o_timeout;
2358   jobject o_identifier;
2359   int ret_status;
2360
2361   if (jvm == NULL) {
2362     ERROR("java plugin: cjni_flush: jvm == NULL");
2363     return -1;
2364   }
2365
2366   if ((ud == NULL) || (ud->data == NULL)) {
2367     ERROR("java plugin: cjni_flush: Invalid user data.");
2368     return -1;
2369   }
2370
2371   jvm_env = cjni_thread_attach();
2372   if (jvm_env == NULL)
2373     return -1;
2374
2375   cbi = (cjni_callback_info_t *)ud->data;
2376
2377   o_timeout =
2378       ctoj_jdouble_to_number(jvm_env, (jdouble)CDTIME_T_TO_DOUBLE(timeout));
2379   if (o_timeout == NULL) {
2380     ERROR("java plugin: cjni_flush: Converting double "
2381           "to Number object failed.");
2382     cjni_thread_detach();
2383     return -1;
2384   }
2385
2386   o_identifier = NULL;
2387   if (identifier != NULL) {
2388     o_identifier = (*jvm_env)->NewStringUTF(jvm_env, identifier);
2389     if (o_identifier == NULL) {
2390       (*jvm_env)->DeleteLocalRef(jvm_env, o_timeout);
2391       ERROR("java plugin: cjni_flush: NewStringUTF failed.");
2392       cjni_thread_detach();
2393       return -1;
2394     }
2395   }
2396
2397   ret_status = (*jvm_env)->CallIntMethod(jvm_env, cbi->object, cbi->method,
2398                                          o_timeout, o_identifier);
2399
2400   (*jvm_env)->DeleteLocalRef(jvm_env, o_identifier);
2401   (*jvm_env)->DeleteLocalRef(jvm_env, o_timeout);
2402
2403   cjni_thread_detach();
2404   return ret_status;
2405 } /* }}} int cjni_flush */
2406
2407 /* Call the CB_TYPE_LOG callback pointed to by the `user_data_t' pointer. */
2408 static void cjni_log(int severity, const char *message, /* {{{ */
2409                      user_data_t *ud) {
2410   JNIEnv *jvm_env;
2411   cjni_callback_info_t *cbi;
2412   jobject o_message;
2413
2414   if (jvm == NULL)
2415     return;
2416
2417   if ((ud == NULL) || (ud->data == NULL))
2418     return;
2419
2420   jvm_env = cjni_thread_attach();
2421   if (jvm_env == NULL)
2422     return;
2423
2424   cbi = (cjni_callback_info_t *)ud->data;
2425
2426   o_message = (*jvm_env)->NewStringUTF(jvm_env, message);
2427   if (o_message == NULL) {
2428     cjni_thread_detach();
2429     return;
2430   }
2431
2432   (*jvm_env)->CallVoidMethod(jvm_env, cbi->object, cbi->method, (jint)severity,
2433                              o_message);
2434
2435   (*jvm_env)->DeleteLocalRef(jvm_env, o_message);
2436
2437   cjni_thread_detach();
2438 } /* }}} void cjni_log */
2439
2440 /* Call the CB_TYPE_NOTIFICATION callback pointed to by the `user_data_t'
2441  * pointer. */
2442 static int cjni_notification(const notification_t *n, /* {{{ */
2443                              user_data_t *ud) {
2444   JNIEnv *jvm_env;
2445   cjni_callback_info_t *cbi;
2446   jobject o_notification;
2447   int ret_status;
2448
2449   if (jvm == NULL) {
2450     ERROR("java plugin: cjni_read: jvm == NULL");
2451     return -1;
2452   }
2453
2454   if ((ud == NULL) || (ud->data == NULL)) {
2455     ERROR("java plugin: cjni_read: Invalid user data.");
2456     return -1;
2457   }
2458
2459   jvm_env = cjni_thread_attach();
2460   if (jvm_env == NULL)
2461     return -1;
2462
2463   cbi = (cjni_callback_info_t *)ud->data;
2464
2465   o_notification = ctoj_notification(jvm_env, n);
2466   if (o_notification == NULL) {
2467     ERROR("java plugin: cjni_notification: ctoj_notification failed.");
2468     cjni_thread_detach();
2469     return -1;
2470   }
2471
2472   ret_status = (*jvm_env)->CallIntMethod(jvm_env, cbi->object, cbi->method,
2473                                          o_notification);
2474
2475   (*jvm_env)->DeleteLocalRef(jvm_env, o_notification);
2476
2477   cjni_thread_detach();
2478   return ret_status;
2479 } /* }}} int cjni_notification */
2480
2481 /* Callbacks for matches implemented in Java */
2482 static int cjni_match_target_create(const oconfig_item_t *ci, /* {{{ */
2483                                     void **user_data) {
2484   JNIEnv *jvm_env;
2485   cjni_callback_info_t *cbi_ret;
2486   cjni_callback_info_t *cbi_factory;
2487   const char *name;
2488   jobject o_ci;
2489   jobject o_tmp;
2490   int type;
2491
2492   cbi_ret = NULL;
2493   o_ci = NULL;
2494   jvm_env = NULL;
2495
2496 #define BAIL_OUT(status)                                                       \
2497   if (cbi_ret != NULL) {                                                       \
2498     free(cbi_ret->name);                                                       \
2499     if ((jvm_env != NULL) && (cbi_ret->object != NULL))                        \
2500       (*jvm_env)->DeleteLocalRef(jvm_env, cbi_ret->object);                    \
2501   }                                                                            \
2502   free(cbi_ret);                                                               \
2503   if (o_ci != NULL)                                                            \
2504     (*jvm_env)->DeleteLocalRef(jvm_env, o_ci);                                 \
2505   cjni_thread_detach();                                                        \
2506   return (status)
2507
2508   if (jvm == NULL) {
2509     ERROR("java plugin: cjni_read: jvm == NULL");
2510     return -1;
2511   }
2512
2513   jvm_env = cjni_thread_attach();
2514   if (jvm_env == NULL)
2515     return -1;
2516
2517   /* Find out whether to create a match or a target. */
2518   if (strcasecmp("Match", ci->key) == 0)
2519     type = CB_TYPE_MATCH;
2520   else if (strcasecmp("Target", ci->key) == 0)
2521     type = CB_TYPE_TARGET;
2522   else {
2523     ERROR("java plugin: cjni_match_target_create: Can't figure out whether "
2524           "to create a match or a target.");
2525     BAIL_OUT(-1);
2526   }
2527
2528   /* This is the name of the match we should create. */
2529   name = ci->values[0].value.string;
2530
2531   /* Lets see if we have a matching factory here.. */
2532   cbi_factory = NULL;
2533   for (size_t i = 0; i < java_callbacks_num; i++) {
2534     if (java_callbacks[i].type != type)
2535       continue;
2536
2537     if (strcmp(name, java_callbacks[i].name) != 0)
2538       continue;
2539
2540     cbi_factory = java_callbacks + i;
2541     break;
2542   }
2543
2544   /* Nope, no factory for that name.. */
2545   if (cbi_factory == NULL) {
2546     ERROR("java plugin: cjni_match_target_create: "
2547           "No such match factory registered: %s",
2548           name);
2549     BAIL_OUT(-1);
2550   }
2551
2552   /* We convert `ci' to its Java equivalent.. */
2553   o_ci = ctoj_oconfig_item(jvm_env, ci);
2554   if (o_ci == NULL) {
2555     ERROR("java plugin: cjni_match_target_create: "
2556           "ctoj_oconfig_item failed.");
2557     BAIL_OUT(-1);
2558   }
2559
2560   /* Allocate a new callback info structure. This is going to be our user_data
2561    * pointer. */
2562   cbi_ret = calloc(1, sizeof(*cbi_ret));
2563   if (cbi_ret == NULL) {
2564     ERROR("java plugin: cjni_match_target_create: calloc failed.");
2565     BAIL_OUT(-1);
2566   }
2567
2568   cbi_ret->object = NULL;
2569   cbi_ret->type = type;
2570
2571   /* Lets fill the callback info structure.. First, the name: */
2572   cbi_ret->name = strdup(name);
2573   if (cbi_ret->name == NULL) {
2574     ERROR("java plugin: cjni_match_target_create: strdup failed.");
2575     BAIL_OUT(-1);
2576   }
2577
2578   /* Then call the factory method so it creates a new object for us. */
2579   o_tmp = (*jvm_env)->CallObjectMethod(jvm_env, cbi_factory->object,
2580                                        cbi_factory->method, o_ci);
2581   if (o_tmp == NULL) {
2582     ERROR("java plugin: cjni_match_target_create: CallObjectMethod failed.");
2583     BAIL_OUT(-1);
2584   }
2585
2586   cbi_ret->object = (*jvm_env)->NewGlobalRef(jvm_env, o_tmp);
2587   if (o_tmp == NULL) {
2588     ERROR("java plugin: cjni_match_target_create: NewGlobalRef failed.");
2589     BAIL_OUT(-1);
2590   }
2591
2592   /* This is the class of the match. It is possibly different from the class of
2593    * the match-factory! */
2594   cbi_ret->class = (*jvm_env)->GetObjectClass(jvm_env, cbi_ret->object);
2595   if (cbi_ret->class == NULL) {
2596     ERROR("java plugin: cjni_match_target_create: GetObjectClass failed.");
2597     BAIL_OUT(-1);
2598   }
2599
2600   /* Lookup the `int match (DataSet, ValueList)' method. */
2601   cbi_ret->method = (*jvm_env)->GetMethodID(
2602       jvm_env, cbi_ret->class,
2603       /* method name = */ (type == CB_TYPE_MATCH) ? "match" : "invoke",
2604       "(Lorg/collectd/api/DataSet;Lorg/collectd/api/ValueList;)I");
2605   if (cbi_ret->method == NULL) {
2606     ERROR("java plugin: cjni_match_target_create: GetMethodID failed.");
2607     BAIL_OUT(-1);
2608   }
2609
2610   /* Return the newly created match via the user_data pointer. */
2611   *user_data = (void *)cbi_ret;
2612
2613   cjni_thread_detach();
2614
2615   DEBUG("java plugin: cjni_match_target_create: "
2616         "Successfully created a `%s' %s.",
2617         cbi_ret->name, (type == CB_TYPE_MATCH) ? "match" : "target");
2618
2619   /* Success! */
2620   return 0;
2621 #undef BAIL_OUT
2622 } /* }}} int cjni_match_target_create */
2623
2624 static int cjni_match_target_destroy(void **user_data) /* {{{ */
2625 {
2626   cjni_callback_info_destroy(*user_data);
2627   *user_data = NULL;
2628
2629   return 0;
2630 } /* }}} int cjni_match_target_destroy */
2631
2632 static int cjni_match_target_invoke(const data_set_t *ds, /* {{{ */
2633                                     value_list_t *vl,
2634                                     notification_meta_t **meta,
2635                                     void **user_data) {
2636   JNIEnv *jvm_env;
2637   cjni_callback_info_t *cbi;
2638   jobject o_vl;
2639   jobject o_ds;
2640   int ret_status;
2641   int status;
2642
2643   if (jvm == NULL) {
2644     ERROR("java plugin: cjni_match_target_invoke: jvm == NULL");
2645     return -1;
2646   }
2647
2648   jvm_env = cjni_thread_attach();
2649   if (jvm_env == NULL)
2650     return -1;
2651
2652   cbi = (cjni_callback_info_t *)*user_data;
2653
2654   o_vl = ctoj_value_list(jvm_env, ds, vl);
2655   if (o_vl == NULL) {
2656     ERROR("java plugin: cjni_match_target_invoke: ctoj_value_list failed.");
2657     cjni_thread_detach();
2658     return -1;
2659   }
2660
2661   o_ds = ctoj_data_set(jvm_env, ds);
2662   if (o_ds == NULL) {
2663     ERROR("java plugin: cjni_match_target_invoke: ctoj_value_list failed.");
2664     cjni_thread_detach();
2665     return -1;
2666   }
2667
2668   ret_status =
2669       (*jvm_env)->CallIntMethod(jvm_env, cbi->object, cbi->method, o_ds, o_vl);
2670
2671   DEBUG("java plugin: cjni_match_target_invoke: Method returned %i.",
2672         ret_status);
2673
2674   /* If we're executing a target, copy the `ValueList' back to our
2675    * `value_list_t'. */
2676   if (cbi->type == CB_TYPE_TARGET) {
2677     value_list_t new_vl = {0};
2678
2679     status = jtoc_value_list(jvm_env, &new_vl, o_vl);
2680     if (status != 0) {
2681       ERROR("java plugin: cjni_match_target_invoke: "
2682             "jtoc_value_list failed.");
2683     } else /* if (status == 0) */
2684     {
2685       /* plugin_dispatch_values assures that this is dynamically allocated
2686        * memory. */
2687       sfree(vl->values);
2688
2689       /* This will replace the vl->values pointer to a new, dynamically
2690        * allocated piece of memory. */
2691       memcpy(vl, &new_vl, sizeof(*vl));
2692     }
2693   } /* if (cbi->type == CB_TYPE_TARGET) */
2694
2695   cjni_thread_detach();
2696   return ret_status;
2697 } /* }}} int cjni_match_target_invoke */
2698
2699 /* Iterate over `java_callbacks' and call all CB_TYPE_INIT callbacks. */
2700 static int cjni_init_plugins(JNIEnv *jvm_env) /* {{{ */
2701 {
2702   int status;
2703
2704   for (size_t i = 0; i < java_callbacks_num; i++) {
2705     if (java_callbacks[i].type != CB_TYPE_INIT)
2706       continue;
2707
2708     DEBUG("java plugin: Initializing %s", java_callbacks[i].name);
2709
2710     status = (*jvm_env)->CallIntMethod(jvm_env, java_callbacks[i].object,
2711                                        java_callbacks[i].method);
2712     if (status != 0) {
2713       ERROR("java plugin: Initializing `%s' failed with status %i. "
2714             "Removing read function.",
2715             java_callbacks[i].name, status);
2716       plugin_unregister_read(java_callbacks[i].name);
2717     }
2718   }
2719
2720   return 0;
2721 } /* }}} int cjni_init_plugins */
2722
2723 /* Iterate over `java_callbacks' and call all CB_TYPE_SHUTDOWN callbacks. */
2724 static int cjni_shutdown_plugins(JNIEnv *jvm_env) /* {{{ */
2725 {
2726   int status;
2727
2728   for (size_t i = 0; i < java_callbacks_num; i++) {
2729     if (java_callbacks[i].type != CB_TYPE_SHUTDOWN)
2730       continue;
2731
2732     DEBUG("java plugin: Shutting down %s", java_callbacks[i].name);
2733
2734     status = (*jvm_env)->CallIntMethod(jvm_env, java_callbacks[i].object,
2735                                        java_callbacks[i].method);
2736     if (status != 0) {
2737       ERROR("java plugin: Shutting down `%s' failed with status %i. ",
2738             java_callbacks[i].name, status);
2739     }
2740   }
2741
2742   return 0;
2743 } /* }}} int cjni_shutdown_plugins */
2744
2745 static int cjni_shutdown(void) /* {{{ */
2746 {
2747   JNIEnv *jvm_env;
2748   JavaVMAttachArgs args = {0};
2749   int status;
2750
2751   if (jvm == NULL)
2752     return 0;
2753
2754   jvm_env = NULL;
2755   args.version = JNI_VERSION_1_2;
2756
2757   status = (*jvm)->AttachCurrentThread(jvm, (void *)&jvm_env, &args);
2758   if (status != 0) {
2759     ERROR("java plugin: cjni_shutdown: AttachCurrentThread failed with status "
2760           "%i.",
2761           status);
2762     return -1;
2763   }
2764
2765   /* Execute all the shutdown functions registered by plugins. */
2766   cjni_shutdown_plugins(jvm_env);
2767
2768   /* Release all the global references to callback functions */
2769   for (size_t i = 0; i < java_callbacks_num; i++) {
2770     if (java_callbacks[i].object != NULL) {
2771       (*jvm_env)->DeleteGlobalRef(jvm_env, java_callbacks[i].object);
2772       java_callbacks[i].object = NULL;
2773     }
2774     sfree(java_callbacks[i].name);
2775   }
2776   java_callbacks_num = 0;
2777   sfree(java_callbacks);
2778
2779   /* Release all the global references to directly loaded classes. */
2780   for (size_t i = 0; i < java_classes_list_len; i++) {
2781     if (java_classes_list[i].object != NULL) {
2782       (*jvm_env)->DeleteGlobalRef(jvm_env, java_classes_list[i].object);
2783       java_classes_list[i].object = NULL;
2784     }
2785     sfree(java_classes_list[i].name);
2786   }
2787   java_classes_list_len = 0;
2788   sfree(java_classes_list);
2789
2790   /* Destroy the JVM */
2791   DEBUG("java plugin: Destroying the JVM.");
2792   (*jvm)->DestroyJavaVM(jvm);
2793   jvm = NULL;
2794   jvm_env = NULL;
2795
2796   pthread_key_delete(jvm_env_key);
2797
2798   /* Free the JVM argument list */
2799   for (size_t i = 0; i < jvm_argc; i++)
2800     sfree(jvm_argv[i]);
2801   jvm_argc = 0;
2802   sfree(jvm_argv);
2803
2804   return 0;
2805 } /* }}} int cjni_shutdown */
2806
2807 /* Initialization: Create a JVM, load all configured classes and call their
2808  * `config' and `init' callback methods. */
2809 static int cjni_init(void) /* {{{ */
2810 {
2811   JNIEnv *jvm_env;
2812
2813   if ((config_block == NULL) && (jvm == NULL)) {
2814     ERROR("java plugin: cjni_init: No configuration block for "
2815           "the java plugin was found.");
2816     return -1;
2817   }
2818
2819   if (config_block != NULL) {
2820     cjni_config_perform(config_block);
2821     oconfig_free(config_block);
2822   }
2823
2824   if (jvm == NULL) {
2825     ERROR("java plugin: cjni_init: jvm == NULL");
2826     return -1;
2827   }
2828
2829   jvm_env = cjni_thread_attach();
2830   if (jvm_env == NULL)
2831     return -1;
2832
2833   cjni_init_plugins(jvm_env);
2834
2835   cjni_thread_detach();
2836   return 0;
2837 } /* }}} int cjni_init */
2838
2839 void module_register(void) {
2840   plugin_register_complex_config("java", cjni_config_callback);
2841   plugin_register_init("java", cjni_init);
2842   plugin_register_shutdown("java", cjni_shutdown);
2843 } /* void module_register (void) */