2 * collectd - src/utils_match.c
3 * Copyright (C) 2008 Florian octo 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; either version 2 of the License, or (at your
8 * option) any later version.
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.
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
20 * Florian octo Forster <octo at verplant.org>
27 #include "utils_match.h"
31 #define UTILS_MATCH_FLAGS_FREE_USER_DATA 0x01
32 #define UTILS_MATCH_FLAGS_EXCLUDE_REGEX 0x02
40 int (*callback) (const char *str, char * const *matches, size_t matches_num,
48 static char *match_substr (const char *str, int begin, int end)
53 if ((begin < 0) || (end < 0) || (begin >= end))
55 if ((size_t) end > (strlen (str) + 1))
57 ERROR ("utils_match: match_substr: `end' points after end of string.");
61 ret_len = end - begin;
62 ret = (char *) malloc (sizeof (char) * (ret_len + 1));
65 ERROR ("utils_match: match_substr: malloc failed.");
69 sstrncpy (ret, str + begin, ret_len + 1);
71 } /* char *match_substr */
73 static int default_callback (const char __attribute__((unused)) *str,
74 char * const *matches, size_t matches_num, void *user_data)
76 cu_match_value_t *data = (cu_match_value_t *) user_data;
78 if (data->ds_type & UTILS_MATCH_DS_TYPE_GAUGE)
86 value = (gauge_t) strtod (matches[1], &endptr);
87 if (matches[1] == endptr)
90 if ((data->values_num == 0)
91 || (data->ds_type & UTILS_MATCH_CF_GAUGE_LAST))
93 data->value.gauge = value;
95 else if (data->ds_type & UTILS_MATCH_CF_GAUGE_AVERAGE)
97 double f = ((double) data->values_num)
98 / ((double) (data->values_num + 1));
99 data->value.gauge = (data->value.gauge * f) + (value * (1.0 - f));
101 else if (data->ds_type & UTILS_MATCH_CF_GAUGE_MIN)
103 if (data->value.gauge > value)
104 data->value.gauge = value;
106 else if (data->ds_type & UTILS_MATCH_CF_GAUGE_MAX)
108 if (data->value.gauge < value)
109 data->value.gauge = value;
113 ERROR ("utils_match: default_callback: obj->ds_type is invalid!");
119 else if (data->ds_type & UTILS_MATCH_DS_TYPE_COUNTER)
124 if (data->ds_type & UTILS_MATCH_CF_COUNTER_INC)
126 data->value.counter++;
134 value = (counter_t) strtoull (matches[1], &endptr, 0);
135 if (matches[1] == endptr)
138 if (data->ds_type & UTILS_MATCH_CF_COUNTER_SET)
139 data->value.counter = value;
140 else if (data->ds_type & UTILS_MATCH_CF_COUNTER_ADD)
141 data->value.counter += value;
144 ERROR ("utils_match: default_callback: obj->ds_type is invalid!");
150 else if (data->ds_type & UTILS_MATCH_DS_TYPE_DERIVE)
155 if (data->ds_type & UTILS_MATCH_CF_DERIVE_INC)
157 data->value.counter++;
165 value = (derive_t) strtoll (matches[1], &endptr, 0);
166 if (matches[1] == endptr)
169 if (data->ds_type & UTILS_MATCH_CF_DERIVE_SET)
170 data->value.derive = value;
171 else if (data->ds_type & UTILS_MATCH_CF_DERIVE_ADD)
172 data->value.derive += value;
175 ERROR ("utils_match: default_callback: obj->ds_type is invalid!");
181 else if (data->ds_type & UTILS_MATCH_DS_TYPE_ABSOLUTE)
189 value = (absolute_t) strtoull (matches[1], &endptr, 0);
190 if (matches[1] == endptr)
193 if (data->ds_type & UTILS_MATCH_CF_ABSOLUTE_SET)
194 data->value.absolute = value;
197 ERROR ("utils_match: default_callback: obj->ds_type is invalid!");
205 ERROR ("utils_match: default_callback: obj->ds_type is invalid!");
210 } /* int default_callback */
215 cu_match_t *match_create_callback (const char *regex, const char *excluderegex,
216 int (*callback) (const char *str,
217 char * const *matches, size_t matches_num, void *user_data),
223 DEBUG ("utils_match: match_create_callback: regex = %s, excluderegex = %s",
224 regex, excluderegex);
226 obj = (cu_match_t *) malloc (sizeof (cu_match_t));
229 memset (obj, '\0', sizeof (cu_match_t));
231 status = regcomp (&obj->regex, regex, REG_EXTENDED | REG_NEWLINE);
234 ERROR ("Compiling the regular expression \"%s\" failed.", regex);
239 if (excluderegex && strcmp(excluderegex, "") != 0) {
240 status = regcomp (&obj->excluderegex, excluderegex, REG_EXTENDED);
243 ERROR ("Compiling the excluding regular expression \"%s\" failed.",
248 obj->flags |= UTILS_MATCH_FLAGS_EXCLUDE_REGEX;
251 obj->callback = callback;
252 obj->user_data = user_data;
255 } /* cu_match_t *match_create_callback */
257 cu_match_t *match_create_simple (const char *regex,
258 const char *excluderegex, int match_ds_type)
260 cu_match_value_t *user_data;
263 user_data = (cu_match_value_t *) malloc (sizeof (cu_match_value_t));
264 if (user_data == NULL)
266 memset (user_data, '\0', sizeof (cu_match_value_t));
267 user_data->ds_type = match_ds_type;
269 obj = match_create_callback (regex, excluderegex,
270 default_callback, user_data);
277 obj->flags |= UTILS_MATCH_FLAGS_FREE_USER_DATA;
280 } /* cu_match_t *match_create_simple */
282 void match_destroy (cu_match_t *obj)
287 if (obj->flags & UTILS_MATCH_FLAGS_FREE_USER_DATA)
289 sfree (obj->user_data);
293 } /* void match_destroy */
295 int match_apply (cu_match_t *obj, const char *str)
298 regmatch_t re_match[32];
303 if ((obj == NULL) || (str == NULL))
306 if (obj->flags & UTILS_MATCH_FLAGS_EXCLUDE_REGEX) {
307 status = regexec (&obj->excluderegex, str,
308 STATIC_ARRAY_SIZE (re_match), re_match,
310 /* Regex did match, so exclude this line */
312 DEBUG("ExludeRegex matched, don't count that line\n");
317 status = regexec (&obj->regex, str,
318 STATIC_ARRAY_SIZE (re_match), re_match,
321 /* Regex did not match */
325 memset (matches, '\0', sizeof (matches));
326 for (matches_num = 0; matches_num < STATIC_ARRAY_SIZE (matches); matches_num++)
328 if ((re_match[matches_num].rm_so < 0)
329 || (re_match[matches_num].rm_eo < 0))
332 matches[matches_num] = match_substr (str,
333 re_match[matches_num].rm_so, re_match[matches_num].rm_eo);
334 if (matches[matches_num] == NULL)
343 ERROR ("utils_match: match_apply: match_substr failed.");
347 status = obj->callback (str, matches, matches_num, obj->user_data);
350 ERROR ("utils_match: match_apply: callback failed.");
354 for (i = 0; i < matches_num; i++)
360 } /* int match_apply */
362 void *match_get_user_data (cu_match_t *obj)
366 return (obj->user_data);
367 } /* void *match_get_user_data */
369 /* vim: set sw=2 sts=2 ts=8 : */