2 * collectd - src/utils_cmd_flush.c
3 * Copyright (C) 2008 Sebastian Harl
4 * Copyright (C) 2008 Florian Forster
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; only version 2 of the License is applicable.
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 * Sebastian "tokkee" Harl <sh at tokkee.org>
21 * Florian "octo" Forster <octo at verplant.org>
27 #include "utils_parse_option.h"
29 int handle_flush (FILE *fh, char *buffer)
35 char **plugins = NULL;
36 size_t plugins_num = 0;
37 char **identifiers = NULL;
38 size_t identifiers_num = 0;
42 #define PRINT_TO_SOCK(fh, ...) \
44 if (fprintf (fh, __VA_ARGS__) < 0) { \
46 WARNING ("handle_flush: failed to write to socket #%i: %s", \
47 fileno (fh), sstrerror (errno, errbuf, sizeof (errbuf))); \
48 strarray_free (plugins, plugins_num); \
49 strarray_free (identifiers, identifiers_num); \
55 if ((fh == NULL) || (buffer == NULL))
58 DEBUG ("utils_cmd_flush: handle_flush (fh = %p, buffer = %s);",
61 if (strncasecmp ("FLUSH", buffer, strlen ("FLUSH")) != 0)
63 PRINT_TO_SOCK (fh, "-1 Cannot parse command.\n");
66 buffer += strlen ("FLUSH");
76 status = parse_option (&buffer, &opt_key, &opt_value);
79 PRINT_TO_SOCK (fh, "-1 Parsing options failed.\n");
80 strarray_free (plugins, plugins_num);
81 strarray_free (identifiers, identifiers_num);
85 if (strcasecmp ("plugin", opt_key) == 0)
86 strarray_add (&plugins, &plugins_num, opt_value);
87 else if (strcasecmp ("identifier", opt_key) == 0)
88 strarray_add (&identifiers, &identifiers_num, opt_value);
89 else if (strcasecmp ("timeout", opt_key) == 0)
95 timeout = strtod (opt_value, &endptr);
97 if ((endptr == opt_value) || (errno != 0) || (!isfinite (timeout)))
99 PRINT_TO_SOCK (fh, "-1 Invalid value for option `timeout': "
101 strarray_free (plugins, plugins_num);
102 strarray_free (identifiers, identifiers_num);
105 else if (timeout < 0.0)
112 PRINT_TO_SOCK (fh, "-1 Cannot parse option %s\n", opt_key);
113 strarray_free (plugins, plugins_num);
114 strarray_free (identifiers, identifiers_num);
117 } /* while (*buffer != 0) */
119 for (i = 0; (i == 0) || (i < plugins_num); i++)
124 if (plugins_num != 0)
127 for (j = 0; (j == 0) || (j < identifiers_num); j++)
129 char *identifier = NULL;
132 if (identifiers_num != 0)
133 identifier = identifiers[j];
135 status = plugin_flush (plugin,
136 DOUBLE_TO_CDTIME_T (timeout),
145 PRINT_TO_SOCK (fh, "0 Done: %i successful, %i errors\n",
148 strarray_free (plugins, plugins_num);
149 strarray_free (identifiers, identifiers_num);
152 } /* int handle_flush */
154 /* vim: set sw=4 ts=4 tw=78 noexpandtab : */