src/configfile.c: Improve the "Plugin `%s' did not register a callback." warning.
[collectd.git] / src / configfile.c
1 /**
2  * collectd - src/configfile.c
3  * Copyright (C) 2005,2006  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; either version 2 of the License, or (at your
8  * option) any later version.
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 verplant.org>
21  **/
22
23 #include "collectd.h"
24
25 #include "liboconfig/oconfig.h"
26
27 #include "common.h"
28 #include "plugin.h"
29 #include "configfile.h"
30
31 #define ESCAPE_NULL(str) ((str) == NULL ? "(null)" : (str))
32
33 /*
34  * Private types
35  */
36 typedef struct cf_callback
37 {
38         const char  *type;
39         int  (*callback) (const char *, const char *);
40         const char **keys;
41         int    keys_num;
42         struct cf_callback *next;
43 } cf_callback_t;
44
45 typedef struct cf_complex_callback_s
46 {
47         char *type;
48         int (*callback) (oconfig_item_t *);
49         struct cf_complex_callback_s *next;
50 } cf_complex_callback_t;
51
52 typedef struct cf_value_map_s
53 {
54         char *key;
55         int (*func) (const oconfig_item_t *);
56 } cf_value_map_t;
57
58 typedef struct cf_global_option_s
59 {
60         char *key;
61         char *value;
62         char *def;
63 } cf_global_option_t;
64
65 /*
66  * Prototypes of callback functions
67  */
68 static int dispatch_value_plugindir (const oconfig_item_t *ci);
69 static int dispatch_value_loadplugin (const oconfig_item_t *ci);
70
71 /*
72  * Private variables
73  */
74 static cf_callback_t *first_callback = NULL;
75 static cf_complex_callback_t *complex_callback_head = NULL;
76
77 static cf_value_map_t cf_value_map[] =
78 {
79         {"PluginDir",  dispatch_value_plugindir},
80         {"LoadPlugin", dispatch_value_loadplugin}
81 };
82 static int cf_value_map_num = STATIC_ARRAY_LEN (cf_value_map);
83
84 static cf_global_option_t cf_global_options[] =
85 {
86         {"BaseDir",   NULL, PKGLOCALSTATEDIR},
87         {"PIDFile",   NULL, PIDFILE},
88         {"Hostname",  NULL, NULL},
89         {"Interval",  NULL, "10"},
90         {"ReadThreads", NULL, "5"},
91         {"TypesDB",   NULL, PLUGINDIR"/types.db"} /* FIXME: Configure path */
92 };
93 static int cf_global_options_num = STATIC_ARRAY_LEN (cf_global_options);
94
95 /*
96  * Functions to handle register/unregister, search, and other plugin related
97  * stuff
98  */
99 static cf_callback_t *cf_search (const char *type)
100 {
101         cf_callback_t *cf_cb;
102
103         if (type == NULL)
104                 return (NULL);
105
106         for (cf_cb = first_callback; cf_cb != NULL; cf_cb = cf_cb->next)
107                 if (strcasecmp (cf_cb->type, type) == 0)
108                         break;
109
110         return (cf_cb);
111 }
112
113 static int cf_dispatch (const char *type, const char *orig_key,
114                 const char *orig_value)
115 {
116         cf_callback_t *cf_cb;
117         char *key;
118         char *value;
119         int ret;
120         int i;
121
122         DEBUG ("type = %s, key = %s, value = %s",
123                         ESCAPE_NULL(type),
124                         ESCAPE_NULL(orig_key),
125                         ESCAPE_NULL(orig_value));
126
127         if ((cf_cb = cf_search (type)) == NULL)
128         {
129                 WARNING ("Found a configuration for the `%s' plugin, but "
130                                 "the plugin isn't loaded or didn't register "
131                                 "a configuration callback.", type);
132                 return (-1);
133         }
134
135         if ((key = strdup (orig_key)) == NULL)
136                 return (1);
137         if ((value = strdup (orig_value)) == NULL)
138         {
139                 free (key);
140                 return (2);
141         }
142
143         ret = -1;
144
145         for (i = 0; i < cf_cb->keys_num; i++)
146         {
147                 if (strcasecmp (cf_cb->keys[i], key) == 0)
148                 {
149                         ret = (*cf_cb->callback) (key, value);
150                         break;
151                 }
152         }
153
154         if (i >= cf_cb->keys_num)
155                 WARNING ("Plugin `%s' did not register for value `%s'.", type, key);
156
157         free (key);
158         free (value);
159
160         DEBUG ("return (%i)", ret);
161
162         return (ret);
163 } /* int cf_dispatch */
164
165 static int dispatch_global_option (const oconfig_item_t *ci)
166 {
167         if (ci->values_num != 1)
168                 return (-1);
169         if (ci->values[0].type == OCONFIG_TYPE_STRING)
170                 return (global_option_set (ci->key, ci->values[0].value.string));
171         else if (ci->values[0].type == OCONFIG_TYPE_NUMBER)
172         {
173                 char tmp[128];
174                 snprintf (tmp, sizeof (tmp), "%lf", ci->values[0].value.number);
175                 tmp[127] = '\0';
176                 return (global_option_set (ci->key, tmp));
177         }
178
179         return (-1);
180 } /* int dispatch_global_option */
181
182 static int dispatch_value_plugindir (const oconfig_item_t *ci)
183 {
184         assert (strcasecmp (ci->key, "PluginDir") == 0);
185         
186         if (ci->values_num != 1)
187                 return (-1);
188         if (ci->values[0].type != OCONFIG_TYPE_STRING)
189                 return (-1);
190
191         plugin_set_dir (ci->values[0].value.string);
192         return (0);
193 }
194
195 static int dispatch_value_loadplugin (const oconfig_item_t *ci)
196 {
197         assert (strcasecmp (ci->key, "LoadPlugin") == 0);
198
199         if (ci->values_num != 1)
200                 return (-1);
201         if (ci->values[0].type != OCONFIG_TYPE_STRING)
202                 return (-1);
203
204         return (plugin_load (ci->values[0].value.string));
205 } /* int dispatch_value_loadplugin */
206
207 static int dispatch_value_plugin (const char *plugin, oconfig_item_t *ci)
208 {
209         char  buffer[4096];
210         char *buffer_ptr;
211         int   buffer_free;
212         int i;
213
214         buffer_ptr = buffer;
215         buffer_free = sizeof (buffer);
216
217         for (i = 0; i < ci->values_num; i++)
218         {
219                 int status = -1;
220
221                 if (ci->values[i].type == OCONFIG_TYPE_STRING)
222                         status = snprintf (buffer_ptr, buffer_free, " %s",
223                                         ci->values[i].value.string);
224                 else if (ci->values[i].type == OCONFIG_TYPE_NUMBER)
225                         status = snprintf (buffer_ptr, buffer_free, " %lf",
226                                         ci->values[i].value.number);
227                 else if (ci->values[i].type == OCONFIG_TYPE_BOOLEAN)
228                         status = snprintf (buffer_ptr, buffer_free, " %s",
229                                         ci->values[i].value.boolean
230                                         ? "true" : "false");
231
232                 if ((status < 0) || (status >= buffer_free))
233                         return (-1);
234                 buffer_free -= status;
235                 buffer_ptr  += status;
236         }
237         /* skip the initial space */
238         buffer_ptr = buffer + 1;
239
240         return (cf_dispatch (plugin, ci->key, buffer_ptr));
241 } /* int plugin_conf_dispatch */
242
243 static int dispatch_value (const oconfig_item_t *ci)
244 {
245         int ret = -2;
246         int i;
247
248         for (i = 0; i < cf_value_map_num; i++)
249                 if (strcasecmp (cf_value_map[i].key, ci->key) == 0)
250                 {
251                         ret = cf_value_map[i].func (ci);
252                         break;
253                 }
254
255         for (i = 0; i < cf_global_options_num; i++)
256                 if (strcasecmp (cf_global_options[i].key, ci->key) == 0)
257                 {
258                         ret = dispatch_global_option (ci);
259                         break;
260                 }
261
262         return (ret);
263 } /* int dispatch_value */
264
265 static int dispatch_block_plugin (oconfig_item_t *ci)
266 {
267         int i;
268         char *name;
269
270         cf_complex_callback_t *cb;
271
272         if (strcasecmp (ci->key, "Plugin") != 0)
273                 return (-1);
274         if (ci->values_num < 1)
275                 return (-1);
276         if (ci->values[0].type != OCONFIG_TYPE_STRING)
277                 return (-1);
278
279         name = ci->values[0].value.string;
280
281         /* Check for a complex callback first */
282         for (cb = complex_callback_head; cb != NULL; cb = cb->next)
283                 if (strcasecmp (name, cb->type) == 0)
284                         return (cb->callback (ci));
285
286         /* Hm, no complex plugin found. Dispatch the values one by one */
287         for (i = 0; i < ci->children_num; i++)
288         {
289                 if (ci->children[i].children == NULL)
290                         dispatch_value_plugin (name, ci->children + i);
291                 else
292                         {DEBUG ("No nested config blocks allow for this plugin.");}
293         }
294
295         return (0);
296 }
297
298
299 static int dispatch_block (oconfig_item_t *ci)
300 {
301         if (strcasecmp (ci->key, "Plugin") == 0)
302                 return (dispatch_block_plugin (ci));
303
304         return (0);
305 }
306
307 /* 
308  * Public functions
309  */
310 int global_option_set (const char *option, const char *value)
311 {
312         int i;
313
314         DEBUG ("option = %s; value = %s;", option, value);
315
316         for (i = 0; i < cf_global_options_num; i++)
317                 if (strcasecmp (cf_global_options[i].key, option) == 0)
318                         break;
319
320         if (i >= cf_global_options_num)
321                 return (-1);
322
323         sfree (cf_global_options[i].value);
324
325         if (value != NULL)
326                 cf_global_options[i].value = strdup (value);
327         else
328                 cf_global_options[i].value = NULL;
329
330         return (0);
331 }
332
333 const char *global_option_get (const char *option)
334 {
335         int i;
336
337         for (i = 0; i < cf_global_options_num; i++)
338                 if (strcasecmp (cf_global_options[i].key, option) == 0)
339                         break;
340
341         if (i >= cf_global_options_num)
342                 return (NULL);
343         
344         return ((cf_global_options[i].value != NULL)
345                         ? cf_global_options[i].value
346                         : cf_global_options[i].def);
347 } /* char *global_option_get */
348
349 void cf_unregister (const char *type)
350 {
351         cf_callback_t *this, *prev;
352
353         for (prev = NULL, this = first_callback;
354                         this != NULL;
355                         prev = this, this = this->next)
356                 if (strcasecmp (this->type, type) == 0)
357                 {
358                         if (prev == NULL)
359                                 first_callback = this->next;
360                         else
361                                 prev->next = this->next;
362
363                         free (this);
364                         break;
365                 }
366 } /* void cf_unregister */
367
368 void cf_unregister_complex (const char *type)
369 {
370         cf_complex_callback_t *this, *prev;
371
372         for (prev = NULL, this = complex_callback_head;
373                         this != NULL;
374                         prev = this, this = this->next)
375                 if (strcasecmp (this->type, type) == 0)
376                 {
377                         if (prev == NULL)
378                                 complex_callback_head = this->next;
379                         else
380                                 prev->next = this->next;
381
382                         sfree (this->type);
383                         sfree (this);
384                         break;
385                 }
386 } /* void cf_unregister */
387
388 void cf_register (const char *type,
389                 int (*callback) (const char *, const char *),
390                 const char **keys, int keys_num)
391 {
392         cf_callback_t *cf_cb;
393
394         /* Remove this module from the list, if it already exists */
395         cf_unregister (type);
396
397         /* This pointer will be free'd in `cf_unregister' */
398         if ((cf_cb = (cf_callback_t *) malloc (sizeof (cf_callback_t))) == NULL)
399                 return;
400
401         cf_cb->type     = type;
402         cf_cb->callback = callback;
403         cf_cb->keys     = keys;
404         cf_cb->keys_num = keys_num;
405
406         cf_cb->next = first_callback;
407         first_callback = cf_cb;
408 } /* void cf_register */
409
410 int cf_register_complex (const char *type, int (*callback) (oconfig_item_t *))
411 {
412         cf_complex_callback_t *new;
413
414         new = (cf_complex_callback_t *) malloc (sizeof (cf_complex_callback_t));
415         if (new == NULL)
416                 return (-1);
417
418         new->type = strdup (type);
419         if (new->type == NULL)
420         {
421                 sfree (new);
422                 return (-1);
423         }
424
425         new->callback = callback;
426         new->next = NULL;
427
428         if (complex_callback_head == NULL)
429         {
430                 complex_callback_head = new;
431         }
432         else
433         {
434                 cf_complex_callback_t *last = complex_callback_head;
435                 while (last->next != NULL)
436                         last = last->next;
437                 last->next = new;
438         }
439
440         return (0);
441 } /* int cf_register_complex */
442
443 int cf_read (char *filename)
444 {
445         oconfig_item_t *conf;
446         int i;
447
448         conf = oconfig_parse_file (filename);
449         if (conf == NULL)
450         {
451                 ERROR ("Unable to read config file %s.", filename);
452                 return (-1);
453         }
454
455         for (i = 0; i < conf->children_num; i++)
456         {
457                 if (conf->children[i].children == NULL)
458                         dispatch_value (conf->children + i);
459                 else
460                         dispatch_block (conf->children + i);
461         }
462
463         return (0);
464 } /* int cf_read */