src/plugin.c: Add a user_data_t pointer to log callbacks.
[collectd.git] / src / plugin.h
1 #ifndef PLUGIN_H
2 #define PLUGIN_H
3 /**
4  * collectd - src/plugin.h
5  * Copyright (C) 2005-2008  Florian octo Forster
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License as published by the
9  * Free Software Foundation; only version 2 of the License is applicable.
10  *
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  *
20  * Authors:
21  *   Florian octo Forster <octo at verplant.org>
22  *   Sebastian Harl <sh at tokkee.org>
23  **/
24
25 #include "collectd.h"
26 #include "configfile.h"
27
28 #define DATA_MAX_NAME_LEN 64
29
30 #define DS_TYPE_COUNTER 0
31 #define DS_TYPE_GAUGE   1
32
33 #ifndef LOG_ERR
34 # define LOG_ERR 3
35 #endif
36 #ifndef LOG_WARNING
37 # define LOG_WARNING 4
38 #endif
39 #ifndef LOG_NOTICE
40 # define LOG_NOTICE 5
41 #endif
42 #ifndef LOG_INFO
43 # define LOG_INFO 6
44 #endif
45 #ifndef LOG_DEBUG
46 # define LOG_DEBUG 7
47 #endif
48
49 #define NOTIF_MAX_MSG_LEN 256
50
51 #define NOTIF_FAILURE 1
52 #define NOTIF_WARNING 2
53 #define NOTIF_OKAY    4
54
55 /*
56  * Public data types
57  */
58 typedef unsigned long long counter_t;
59 typedef double gauge_t;
60
61 union value_u
62 {
63         counter_t counter;
64         gauge_t   gauge;
65 };
66 typedef union value_u value_t;
67
68 struct value_list_s
69 {
70         value_t *values;
71         int      values_len;
72         time_t   time;
73         int      interval;
74         char     host[DATA_MAX_NAME_LEN];
75         char     plugin[DATA_MAX_NAME_LEN];
76         char     plugin_instance[DATA_MAX_NAME_LEN];
77         char     type[DATA_MAX_NAME_LEN];
78         char     type_instance[DATA_MAX_NAME_LEN];
79 };
80 typedef struct value_list_s value_list_t;
81
82 #define VALUE_LIST_INIT { NULL, 0, 0, interval_g, "localhost", "", "", "", "" }
83 #define VALUE_LIST_STATIC { NULL, 0, 0, 0, "localhost", "", "", "", "" }
84
85 struct data_source_s
86 {
87         char   name[DATA_MAX_NAME_LEN];
88         int    type;
89         double min;
90         double max;
91 };
92 typedef struct data_source_s data_source_t;
93
94 struct data_set_s
95 {
96         char           type[DATA_MAX_NAME_LEN];
97         int            ds_num;
98         data_source_t *ds;
99 };
100 typedef struct data_set_s data_set_t;
101
102 enum notification_meta_type_e
103 {
104         NM_TYPE_STRING,
105         NM_TYPE_SIGNED_INT,
106         NM_TYPE_UNSIGNED_INT,
107         NM_TYPE_DOUBLE,
108         NM_TYPE_BOOLEAN
109 };
110
111 typedef struct notification_meta_s
112 {
113         char name[DATA_MAX_NAME_LEN];
114         enum notification_meta_type_e type;
115         union
116         {
117                 const char *nm_string;
118                 int64_t nm_signed_int;
119                 uint64_t nm_unsigned_int;
120                 double nm_double;
121                 bool nm_boolean;
122         } nm_value;
123         struct notification_meta_s *next;
124 } notification_meta_t;
125
126 typedef struct notification_s
127 {
128         int    severity;
129         time_t time;
130         char   message[NOTIF_MAX_MSG_LEN];
131         char   host[DATA_MAX_NAME_LEN];
132         char   plugin[DATA_MAX_NAME_LEN];
133         char   plugin_instance[DATA_MAX_NAME_LEN];
134         char   type[DATA_MAX_NAME_LEN];
135         char   type_instance[DATA_MAX_NAME_LEN];
136         notification_meta_t *meta;
137 } notification_t;
138
139 struct user_data_s
140 {
141         void *data;
142         void (*free_func) (void *);
143 };
144 typedef struct user_data_s user_data_t;
145
146 /*
147  * Callback types
148  */
149 typedef int (*plugin_read_cb) (user_data_t *);
150 typedef int (*plugin_write_cb) (const data_set_t *, const value_list_t *,
151                 user_data_t *);
152 typedef int (*plugin_flush_cb) (int timeout, const char *identifier,
153                 user_data_t *);
154 typedef void (*plugin_log_cb) (int severity, const char *message,
155                 user_data_t *);
156
157 /*
158  * NAME
159  *  plugin_set_dir
160  *
161  * DESCRIPTION
162  *  Sets the current `plugindir'
163  *
164  * ARGUMENTS
165  *  `dir'       Path to the plugin directory
166  *
167  * NOTES
168  *  If `dir' is NULL the compiled in default `PLUGINDIR' is used.
169  */
170 void plugin_set_dir (const char *dir);
171
172 /*
173  * NAME
174  *  plugin_load
175  *
176  * DESCRIPTION
177  *  Searches the current `plugindir' (see `plugin_set_dir') for the plugin
178  *  named $type and loads it. Afterwards the plugin's `module_register'
179  *  function is called, which then calls `plugin_register' to register callback
180  *  functions.
181  *
182  * ARGUMENTS
183  *  `name'      Name of the plugin to load.
184  *  `mr'        Types of functions to request from the plugin.
185  *
186  * RETURN VALUE
187  *  Returns zero upon success, a value greater than zero if no plugin was found
188  *  and a value below zero if an error occurs.
189  *
190  * NOTES
191  *  No attempt is made to re-load an already loaded module.
192  */
193 int plugin_load (const char *name);
194
195 void plugin_init_all (void);
196 void plugin_read_all (void);
197 int plugin_read_all_once (void);
198 void plugin_shutdown_all (void);
199
200 /*
201  * NAME
202  *  plugin_write
203  *
204  * DESCRIPTION
205  *  Calls the write function of the given plugin with the provided data set and
206  *  value list. It differs from `plugin_dispatch_value' in that it does not
207  *  update the cache, does not do threshold checking, call the chain subsystem
208  *  and so on. It looks up the requested plugin and invokes the function, end
209  *  of story.
210  *
211  * ARGUMENTS
212  *  plugin     Name of the plugin. If NULL, the value is sent to all registered
213  *             write functions.
214  *  ds         Pointer to the data_set_t structure. If NULL, the data set is
215  *             looked up according to the `type' member in the `vl' argument.
216  *  vl         The actual value to be processed. Must not be NULL.
217  *
218  * RETURN VALUE
219  *  Returns zero upon success or non-zero if an error occurred. If `plugin' is
220  *  NULL and more than one plugin is called, an error is only returned if *all*
221  *  plugins fail.
222  *
223  * NOTES
224  *  This is the function used by the `write' built-in target. May be used by
225  *  other target plugins.
226  */
227 int plugin_write (const char *plugin,
228     const data_set_t *ds, const value_list_t *vl);
229
230 int plugin_flush (const char *plugin, int timeout, const char *identifier);
231
232 /*
233  * The `plugin_register_*' functions are used to make `config', `init',
234  * `read', `write' and `shutdown' functions known to the plugin
235  * infrastructure. Also, the data-formats are made public like this.
236  */
237 int plugin_register_config (const char *name,
238                 int (*callback) (const char *key, const char *val),
239                 const char **keys, int keys_num);
240 int plugin_register_complex_config (const char *type,
241                 int (*callback) (oconfig_item_t *));
242 int plugin_register_init (const char *name,
243                 int (*callback) (void));
244 int plugin_register_read (const char *name,
245                 int (*callback) (void));
246 int plugin_register_complex_read (const char *name,
247                 plugin_read_cb callback, user_data_t *user_data);
248 int plugin_register_write (const char *name,
249                 plugin_write_cb callback, user_data_t *user_data);
250 int plugin_register_flush (const char *name,
251                 plugin_flush_cb callback, user_data_t *user_data);
252 int plugin_register_shutdown (char *name,
253                 int (*callback) (void));
254 int plugin_register_data_set (const data_set_t *ds);
255 int plugin_register_log (const char *name,
256                 plugin_log_cb callback, user_data_t *user_data);
257 int plugin_register_notification (const char *name,
258                 int (*callback) (const notification_t *notif));
259
260 int plugin_unregister_config (const char *name);
261 int plugin_unregister_complex_config (const char *name);
262 int plugin_unregister_init (const char *name);
263 int plugin_unregister_read (const char *name);
264 int plugin_unregister_complex_read (const char *name, void **user_data);
265 int plugin_unregister_write (const char *name);
266 int plugin_unregister_flush (const char *name);
267 int plugin_unregister_shutdown (const char *name);
268 int plugin_unregister_data_set (const char *name);
269 int plugin_unregister_log (const char *name);
270 int plugin_unregister_notification (const char *name);
271
272
273 /*
274  * NAME
275  *  plugin_dispatch_values
276  *
277  * DESCRIPTION
278  *  This function is called by reading processes with the values they've
279  *  aquired. The function fetches the data-set definition (that has been
280  *  registered using `plugin_register_data_set') and calls _all_ registered
281  *  write-functions.
282  *
283  * ARGUMENTS
284  *  `vl'        Value list of the values that have been read by a `read'
285  *              function.
286  */
287 int plugin_dispatch_values (value_list_t *vl);
288
289 int plugin_dispatch_notification (const notification_t *notif);
290
291 void plugin_log (int level, const char *format, ...)
292         __attribute__ ((format(printf,2,3)));
293
294 #define ERROR(...)   plugin_log (LOG_ERR,     __VA_ARGS__)
295 #define WARNING(...) plugin_log (LOG_WARNING, __VA_ARGS__)
296 #define NOTICE(...)  plugin_log (LOG_NOTICE,  __VA_ARGS__)
297 #define INFO(...)    plugin_log (LOG_INFO,    __VA_ARGS__)
298 #if COLLECT_DEBUG
299 # define DEBUG(...)  plugin_log (LOG_DEBUG,   __VA_ARGS__)
300 #else /* COLLECT_DEBUG */
301 # define DEBUG(...)  /* noop */
302 #endif /* ! COLLECT_DEBUG */
303
304 const data_set_t *plugin_get_ds (const char *name);
305
306 int plugin_notification_meta_add_string (notification_t *n,
307     const char *name,
308     const char *value);
309 int plugin_notification_meta_add_signed_int (notification_t *n,
310     const char *name,
311     int64_t value);
312 int plugin_notification_meta_add_unsigned_int (notification_t *n,
313     const char *name,
314     uint64_t value);
315 int plugin_notification_meta_add_double (notification_t *n,
316     const char *name,
317     double value);
318 int plugin_notification_meta_add_boolean (notification_t *n,
319     const char *name,
320     bool value);
321
322 int plugin_notification_meta_copy (notification_t *dst,
323     const notification_t *src);
324
325 int plugin_notification_meta_free (notification_meta_t *n);
326
327 #endif /* PLUGIN_H */