X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_cmd_flush.c;h=087fee3d5c285f26f0ad2b44428c1d5e30d59fc4;hb=99eb08be924850cf76e3dece205d5cbf9c7d74c7;hp=0e7b350f581f02f07ccaf234c1ec0c225011b33d;hpb=68ab7da7a51018a00e6e03347182b988a30296a7;p=collectd.git diff --git a/src/utils_cmd_flush.c b/src/utils_cmd_flush.c index 0e7b350f..087fee3d 100644 --- a/src/utils_cmd_flush.c +++ b/src/utils_cmd_flush.c @@ -25,42 +25,33 @@ #include "common.h" #include "plugin.h" #include "utils_parse_option.h" - -#define print_to_socket(fh, ...) \ - if (fprintf (fh, __VA_ARGS__) < 0) { \ - char errbuf[1024]; \ - WARNING ("handle_flush: failed to write to socket #%i: %s", \ - fileno (fh), sstrerror (errno, errbuf, sizeof (errbuf))); \ - return -1; \ - } - -static int add_to_array (char ***array, int *array_num, char *value) -{ - char **temp; - - temp = (char **) realloc (*array, sizeof (char *) * (*array_num + 1)); - if (temp == NULL) - return (-1); - - *array = temp; - (*array)[*array_num] = value; - (*array_num)++; - - return (0); -} /* int add_to_array */ +#include "utils_cmd_flush.h" int handle_flush (FILE *fh, char *buffer) { int success = 0; int error = 0; - int timeout = -1; + double timeout = 0.0; char **plugins = NULL; - int plugins_num = 0; + size_t plugins_num = 0; char **identifiers = NULL; - int identifiers_num = 0; - - int i; + size_t identifiers_num = 0; + + size_t i; + +#define PRINT_TO_SOCK(fh, ...) \ + do { \ + if (fprintf (fh, __VA_ARGS__) < 0) { \ + char errbuf[1024]; \ + WARNING ("handle_flush: failed to write to socket #%i: %s", \ + fileno (fh), sstrerror (errno, errbuf, sizeof (errbuf))); \ + strarray_free (plugins, plugins_num); \ + strarray_free (identifiers, identifiers_num); \ + return -1; \ + } \ + fflush(fh); \ + } while (0) if ((fh == NULL) || (buffer == NULL)) return (-1); @@ -70,7 +61,7 @@ int handle_flush (FILE *fh, char *buffer) if (strncasecmp ("FLUSH", buffer, strlen ("FLUSH")) != 0) { - print_to_socket (fh, "-1 Cannot parse command.\n"); + PRINT_TO_SOCK (fh, "-1 Cannot parse command.\n"); return (-1); } buffer += strlen ("FLUSH"); @@ -86,70 +77,65 @@ int handle_flush (FILE *fh, char *buffer) status = parse_option (&buffer, &opt_key, &opt_value); if (status != 0) { - print_to_socket (fh, "-1 Parsing options failed.\n"); - sfree (plugins); - sfree (identifiers); + PRINT_TO_SOCK (fh, "-1 Parsing options failed.\n"); + strarray_free (plugins, plugins_num); + strarray_free (identifiers, identifiers_num); return (-1); } if (strcasecmp ("plugin", opt_key) == 0) - { - add_to_array (&plugins, &plugins_num, opt_value); - } + strarray_add (&plugins, &plugins_num, opt_value); else if (strcasecmp ("identifier", opt_key) == 0) - { - add_to_array (&identifiers, &identifiers_num, opt_value); - } + strarray_add (&identifiers, &identifiers_num, opt_value); else if (strcasecmp ("timeout", opt_key) == 0) { char *endptr; - + errno = 0; endptr = NULL; - timeout = strtol (opt_value, &endptr, 0); + timeout = strtod (opt_value, &endptr); - if ((endptr == opt_value) || (errno != 0)) + if ((endptr == opt_value) || (errno != 0) || (!isfinite (timeout))) { - print_to_socket (fh, "-1 Invalid value for option `timeout': " + PRINT_TO_SOCK (fh, "-1 Invalid value for option `timeout': " "%s\n", opt_value); - sfree (plugins); - sfree (identifiers); + strarray_free (plugins, plugins_num); + strarray_free (identifiers, identifiers_num); return (-1); } - else if (timeout <= 0) - timeout = -1; + else if (timeout < 0.0) + { + timeout = 0.0; + } } else { - print_to_socket (fh, "-1 Cannot parse option %s\n", opt_key); - sfree (plugins); - sfree (identifiers); + PRINT_TO_SOCK (fh, "-1 Cannot parse option %s\n", opt_key); + strarray_free (plugins, plugins_num); + strarray_free (identifiers, identifiers_num); return (-1); } } /* while (*buffer != 0) */ - /* Add NULL entries for `any plugin' and/or `any value' if nothing was - * specified. */ - if (plugins_num == 0) - add_to_array (&plugins, &plugins_num, NULL); - - if (identifiers_num == 0) - add_to_array (&identifiers, &identifiers_num, NULL); - - for (i = 0; i < plugins_num; i++) + for (i = 0; (i == 0) || (i < plugins_num); i++) { - char *plugin; + char *plugin = NULL; int j; - plugin = plugins[i]; + if (plugins_num != 0) + plugin = plugins[i]; - for (j = 0; j < identifiers_num; j++) + for (j = 0; (j == 0) || (j < identifiers_num); j++) { - char *identifier; + char *identifier = NULL; int status; - identifier = identifiers[j]; - status = plugin_flush (plugin, timeout, identifier); + if (identifiers_num != 0) + identifier = identifiers[j]; + + status = plugin_flush (plugin, + DOUBLE_TO_CDTIME_T (timeout), + identifier); if (status == 0) success++; else @@ -157,20 +143,13 @@ int handle_flush (FILE *fh, char *buffer) } } - if ((success + error) > 0) - { - print_to_socket (fh, "0 Done: %i successful, %i errors\n", - success, error); - } - else - { - plugin_flush (NULL, timeout, NULL); - print_to_socket (fh, "0 Done\n"); - } + PRINT_TO_SOCK (fh, "0 Done: %i successful, %i errors\n", + success, error); - sfree (plugins); - sfree (identifiers); + strarray_free (plugins, plugins_num); + strarray_free (identifiers, identifiers_num); return (0); +#undef PRINT_TO_SOCK } /* int handle_flush */ /* vim: set sw=4 ts=4 tw=78 noexpandtab : */