2 * collectd - src/target_set.c
3 * Copyright (C) 2008 Florian Forster
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.
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.
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
19 * Florian Forster <octo at verplant.org>
24 #include "filter_chain.h"
30 char *plugin_instance;
34 typedef struct ts_data_s ts_data_t;
36 static char *ts_strdup (const char *orig) /* {{{ */
44 sz = strlen (orig) + 1;
45 dest = (char *) malloc (sz);
49 memcpy (dest, orig, sz);
52 } /* }}} char *ts_strdup */
54 static int ts_config_add_string (char **dest, /* {{{ */
55 const oconfig_item_t *ci, int may_be_empty)
62 if ((ci->values_num != 1)
63 || (ci->values[0].type != OCONFIG_TYPE_STRING))
65 ERROR ("Target `set': The `%s' option requires exactly one string "
66 "argument.", ci->key);
70 if ((!may_be_empty) && (ci->values[0].value.string[0] == 0))
72 ERROR ("Target `set': The `%s' option does not accept empty strings.",
77 temp = ts_strdup (ci->values[0].value.string);
80 ERROR ("ts_config_add_string: ts_strdup failed.");
88 } /* }}} int ts_config_add_string */
90 static int ts_destroy (void **user_data) /* {{{ */
94 if (user_data == NULL)
103 free (data->plugin_instance);
104 /* free (data->type); */
105 free (data->type_instance);
109 } /* }}} int ts_destroy */
111 static int ts_create (const oconfig_item_t *ci, void **user_data) /* {{{ */
117 data = (ts_data_t *) malloc (sizeof (*data));
120 ERROR ("ts_create: malloc failed.");
123 memset (data, 0, sizeof (*data));
127 data->plugin_instance = NULL;
128 /* data->type = NULL; */
129 data->type_instance = NULL;
132 for (i = 0; i < ci->children_num; i++)
134 oconfig_item_t *child = ci->children + i;
136 if ((strcasecmp ("Host", child->key) == 0)
137 || (strcasecmp ("Hostname", child->key) == 0))
138 status = ts_config_add_string (&data->host, child,
139 /* may be empty = */ 0);
140 else if (strcasecmp ("Plugin", child->key) == 0)
141 status = ts_config_add_string (&data->plugin, child,
142 /* may be empty = */ 0);
143 else if (strcasecmp ("PluginInstance", child->key) == 0)
144 status = ts_config_add_string (&data->plugin_instance, child,
145 /* may be empty = */ 1);
147 else if (strcasecmp ("Type", child->key) == 0)
148 status = ts_config_add_string (&data->type, child,
149 /* may be empty = */ 0);
151 else if (strcasecmp ("TypeInstance", child->key) == 0)
152 status = ts_config_add_string (&data->type_instance, child,
153 /* may be empty = */ 1);
156 ERROR ("Target `set': The `%s' configuration option is not understood "
157 "and will be ignored.", child->key);
165 /* Additional sanity-checking */
168 if ((data->host == NULL)
169 && (data->plugin == NULL)
170 && (data->plugin_instance == NULL)
171 /* && (data->type == NULL) */
172 && (data->type_instance == NULL))
174 ERROR ("Target `set': You need to set at lease one of `Host', "
175 "`Plugin', `PluginInstance', `Type', or `TypeInstance'.");
184 ts_destroy ((void *) &data);
190 } /* }}} int ts_create */
192 static int ts_invoke (const data_set_t *ds, value_list_t *vl, /* {{{ */
193 notification_meta_t __attribute__((unused)) **meta, void **user_data)
197 if ((ds == NULL) || (vl == NULL) || (user_data == NULL))
203 ERROR ("Target `set': Invoke: `data' is NULL.");
207 #define SET_FIELD(f) if (data->f != NULL) { sstrncpy (vl->f, data->f, sizeof (vl->f)); }
210 SET_FIELD (plugin_instance);
211 /* SET_FIELD (type); */
212 SET_FIELD (type_instance);
214 return (FC_TARGET_CONTINUE);
215 } /* }}} int ts_invoke */
217 void module_register (void)
221 memset (&tproc, 0, sizeof (tproc));
222 tproc.create = ts_create;
223 tproc.destroy = ts_destroy;
224 tproc.invoke = ts_invoke;
225 fc_register_target ("set", tproc);
226 } /* module_register */
228 /* vim: set sw=2 sts=2 tw=78 et fdm=marker : */