2 * collectd - src/match_value.c
3 * Copyright (C) 2008 Florian Forster
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
24 * Florian Forster <octo at collectd.org>
28 * This module allows to filter and rewrite value lists based on
29 * Perl-compatible regular expressions.
35 #include "utils_cache.h"
36 #include "filter_chain.h"
45 typedef struct mv_match_s mv_match_t;
54 size_t data_sources_num;
58 * internal helper functions
60 static void mv_free_match (mv_match_t *m) /* {{{ */
65 if (m->data_sources != NULL)
67 for (size_t i = 0; i < m->data_sources_num; ++i)
68 free(m->data_sources[i]);
69 free(m->data_sources);
73 } /* }}} void mv_free_match */
75 static int mv_config_add_satisfy (mv_match_t *m, /* {{{ */
78 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
80 ERROR ("`value' match: `%s' needs exactly one string argument.",
85 if (strcasecmp ("All", ci->values[0].value.string) == 0)
86 m->satisfy = SATISFY_ALL;
87 else if (strcasecmp ("Any", ci->values[0].value.string) == 0)
88 m->satisfy = SATISFY_ANY;
91 ERROR ("`value' match: Passing `%s' to the `%s' option is invalid. "
92 "The argument must either be `All' or `Any'.",
93 ci->values[0].value.string, ci->key);
98 } /* }}} int mv_config_add_satisfy */
100 static int mv_config_add_data_source (mv_match_t *m, /* {{{ */
103 size_t new_data_sources_num;
106 /* Check number of arbuments. */
107 if (ci->values_num < 1)
109 ERROR ("`value' match: `%s' needs at least one argument.",
114 /* Check type of arguments */
115 for (int i = 0; i < ci->values_num; i++)
117 if (ci->values[i].type == OCONFIG_TYPE_STRING)
120 ERROR ("`value' match: `%s' accepts only string arguments "
121 "(argument %i is a %s).",
123 (ci->values[i].type == OCONFIG_TYPE_BOOLEAN)
124 ? "truth value" : "number");
128 /* Allocate space for the char pointers */
129 new_data_sources_num = m->data_sources_num + ((size_t) ci->values_num);
130 temp = realloc (m->data_sources,
131 new_data_sources_num * sizeof (char *));
134 ERROR ("`value' match: realloc failed.");
137 m->data_sources = temp;
139 /* Copy the strings, allocating memory as needed. */
140 for (int i = 0; i < ci->values_num; i++)
142 /* If we get here, there better be memory for us to write to. */
143 assert (m->data_sources_num < new_data_sources_num);
145 size_t j = m->data_sources_num;
146 m->data_sources[j] = sstrdup (ci->values[i].value.string);
147 if (m->data_sources[j] == NULL)
149 ERROR ("`value' match: sstrdup failed.");
152 m->data_sources_num++;
156 } /* }}} int mv_config_add_data_source */
158 static int mv_config_add_gauge (gauge_t *ret_value, /* {{{ */
162 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_NUMBER))
164 ERROR ("`value' match: `%s' needs exactly one numeric argument.",
169 *ret_value = ci->values[0].value.number;
172 } /* }}} int mv_config_add_gauge */
174 static int mv_config_add_boolean (int *ret_value, /* {{{ */
178 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_BOOLEAN))
180 ERROR ("`value' match: `%s' needs exactly one boolean argument.",
185 if (ci->values[0].value.boolean)
191 } /* }}} int mv_config_add_boolean */
193 static int mv_create (const oconfig_item_t *ci, void **user_data) /* {{{ */
198 m = calloc (1, sizeof (*m));
201 ERROR ("mv_create: calloc failed.");
208 m->satisfy = SATISFY_ALL;
209 m->data_sources = NULL;
210 m->data_sources_num = 0;
213 for (int i = 0; i < ci->children_num; i++)
215 oconfig_item_t *child = ci->children + i;
217 if (strcasecmp ("Min", child->key) == 0)
218 status = mv_config_add_gauge (&m->min, child);
219 else if (strcasecmp ("Max", child->key) == 0)
220 status = mv_config_add_gauge (&m->max, child);
221 else if (strcasecmp ("Invert", child->key) == 0)
222 status = mv_config_add_boolean (&m->invert, child);
223 else if (strcasecmp ("Satisfy", child->key) == 0)
224 status = mv_config_add_satisfy (m, child);
225 else if (strcasecmp ("DataSource", child->key) == 0)
226 status = mv_config_add_data_source (m, child);
229 ERROR ("`value' match: The `%s' configuration option is not "
230 "understood and will be ignored.", child->key);
238 /* Additional sanity-checking */
241 if (isnan (m->min) && isnan (m->max))
243 ERROR ("`value' match: Neither minimum nor maximum are defined. "
244 "This match will be ignored.");
259 } /* }}} int mv_create */
261 static int mv_destroy (void **user_data) /* {{{ */
263 if ((user_data != NULL) && (*user_data != NULL))
264 mv_free_match (*user_data);
266 } /* }}} int mv_destroy */
268 static int mv_match (const data_set_t *ds, const value_list_t *vl, /* {{{ */
269 notification_meta_t __attribute__((unused)) **meta, void **user_data)
275 if ((user_data == NULL) || (*user_data == NULL))
280 values = uc_get_rate (ds, vl);
283 ERROR ("`value' match: Retrieving the current rate from the cache "
288 status = FC_MATCH_NO_MATCH;
290 for (size_t i = 0; i < ds->ds_num; i++)
292 int value_matches = 0;
294 /* Check if this data source is relevant. */
295 if (m->data_sources != NULL)
299 for (j = 0; j < m->data_sources_num; j++)
300 if (strcasecmp (ds->ds[i].name, m->data_sources[j]) == 0)
303 /* No match, ignore this data source. */
304 if (j >= m->data_sources_num)
308 DEBUG ("`value' match: current = %g; min = %g; max = %g; invert = %s;",
309 values[i], m->min, m->max,
310 m->invert ? "true" : "false");
312 if ((!isnan (m->min) && (values[i] < m->min))
313 || (!isnan (m->max) && (values[i] > m->max)))
326 if (value_matches != 0)
328 status = FC_MATCH_MATCHES;
329 if (m->satisfy == SATISFY_ANY)
334 status = FC_MATCH_NO_MATCH;
335 if (m->satisfy == SATISFY_ALL)
338 } /* for (i = 0; i < ds->ds_num; i++) */
342 } /* }}} int mv_match */
344 void module_register (void)
346 match_proc_t mproc = { 0 };
348 mproc.create = mv_create;
349 mproc.destroy = mv_destroy;
350 mproc.match = mv_match;
351 fc_register_match ("value", mproc);
352 } /* module_register */
354 /* vim: set sw=2 sts=2 tw=78 et fdm=marker : */