java plugin: Add support for `notification' callbacks.
[collectd.git] / bindings / java / org / collectd / api / Collectd.java
1 /*
2  * collectd/java - org/collectd/api/Collectd.java
3  * Copyright (C) 2009  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Authors:
19  *   Florian octo Forster <octo at verplant.org>
20  */
21
22 package org.collectd.api;
23
24 /**
25  * Java API to internal functions of collectd.
26  *
27  * @author Florian Forster &lt;octo at verplant.org&gt;
28  */
29 public class Collectd
30 {
31   public static final int LOG_ERR     = 3;
32   public static final int LOG_WARNING = 4;
33   public static final int LOG_NOTICE  = 5;
34   public static final int LOG_INFO    = 6;
35   public static final int LOG_DEBUG   = 7;
36
37   /**
38    * Java representation of collectd/src/plugin.h:plugin_register_config
39    */
40   native public static int registerConfig (String name,
41       CollectdConfigInterface object);
42
43   /**
44    * Java representation of collectd/src/plugin.h:plugin_register_init
45    */
46   native public static int registerInit (String name,
47       CollectdInitInterface object);
48
49   /**
50    * Java representation of collectd/src/plugin.h:plugin_register_read
51    */
52   native public static int registerRead (String name,
53       CollectdReadInterface object);
54
55   /**
56    * Java representation of collectd/src/plugin.h:plugin_register_write
57    */
58   native public static int registerWrite (String name,
59       CollectdWriteInterface object);
60
61   /**
62    * Java representation of collectd/src/plugin.h:plugin_register_flush
63    */
64   native public static int registerFlush (String name,
65       CollectdFlushInterface object);
66
67   /**
68    * Java representation of collectd/src/plugin.h:plugin_register_shutdown
69    */
70   native public static int registerShutdown (String name,
71       CollectdShutdownInterface object);
72
73   /**
74    * Java representation of collectd/src/plugin.h:plugin_register_log
75    */
76   native public static int registerLog (String name,
77       CollectdLogInterface object);
78
79   /**
80    * Java representation of collectd/src/plugin.h:plugin_register_notification
81    */
82   native public static int registerNotification (String name,
83       CollectdNotificationInterface object);
84
85   /**
86    * Java representation of collectd/src/plugin.h:plugin_dispatch_values
87    */
88   native public static int dispatchValues (ValueList vl);
89
90   /**
91    * Java representation of collectd/src/plugin.h:plugin_get_ds
92    */
93   native public static DataSet getDS (String type);
94
95   /**
96    * Java representation of collectd/src/plugin.h:plugin_log
97    */
98   native private static void log (int severity, String message);
99
100   public static void logError (String message)
101   {
102     log (LOG_ERR, message);
103   } /* void logError */
104
105   public static void logWarning (String message)
106   {
107     log (LOG_WARNING, message);
108   } /* void logWarning */
109
110   public static void logNotice (String message)
111   {
112     log (LOG_NOTICE, message);
113   } /* void logNotice */
114
115   public static void logInfo (String message)
116   {
117     log (LOG_INFO, message);
118   } /* void logInfo */
119
120   public static void logDebug (String message)
121   {
122     log (LOG_DEBUG, message);
123   } /* void logDebug */
124
125 } /* class Collectd */
126
127 /* vim: set sw=2 sts=2 et fdm=marker : */