Code

Merge remote-tracking branch 'github/pr/387'
[collectd.git] / src / utils_cmd_listval.c
1 /**
2  * collectd - src/utils_cms_listval.c
3  * Copyright (C) 2008  Florian octo Forster
4  *
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.
8  *
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.
13  *
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
17  *
18  * Author:
19  *   Florian octo Forster <octo at verplant.org>
20  **/
22 #include "collectd.h"
23 #include "common.h"
24 #include "plugin.h"
26 #include "utils_cmd_listval.h"
27 #include "utils_cache.h"
28 #include "utils_parse_option.h"
30 #define free_everything_and_return(status) do { \
31     size_t j; \
32     for (j = 0; j < number; j++) { \
33       sfree(names[j]); \
34       names[j] = NULL; \
35     } \
36     sfree(names); \
37     sfree(times); \
38     return (status); \
39   } while (0)
41 #define print_to_socket(fh, ...) \
42   if (fprintf (fh, __VA_ARGS__) < 0) { \
43     char errbuf[1024]; \
44     WARNING ("handle_listval: failed to write to socket #%i: %s", \
45         fileno (fh), sstrerror (errno, errbuf, sizeof (errbuf))); \
46     free_everything_and_return (-1); \
47   }
49 int handle_listval (FILE *fh, char *buffer)
50 {
51   char *command;
52   char **names = NULL;
53   cdtime_t *times = NULL;
54   size_t number = 0;
55   size_t i;
56   int status;
58   DEBUG ("utils_cmd_listval: handle_listval (fh = %p, buffer = %s);",
59       (void *) fh, buffer);
61   command = NULL;
62   status = parse_string (&buffer, &command);
63   if (status != 0)
64   {
65     print_to_socket (fh, "-1 Cannot parse command.\n");
66     free_everything_and_return (-1);
67   }
68   assert (command != NULL);
70   if (strcasecmp ("LISTVAL", command) != 0)
71   {
72     print_to_socket (fh, "-1 Unexpected command: `%s'.\n", command);
73     free_everything_and_return (-1);
74   }
76   if (*buffer != 0)
77   {
78     print_to_socket (fh, "-1 Garbage after end of command: %s\n", buffer);
79     free_everything_and_return (-1);
80   }
82   status = uc_get_names (&names, &times, &number);
83   if (status != 0)
84   {
85     DEBUG ("command listval: uc_get_names failed with status %i", status);
86     print_to_socket (fh, "-1 uc_get_names failed.\n");
87     free_everything_and_return (-1);
88   }
90   print_to_socket (fh, "%i Value%s found\n",
91       (int) number, (number == 1) ? "" : "s");
92   for (i = 0; i < number; i++)
93     print_to_socket (fh, "%.3f %s\n", CDTIME_T_TO_DOUBLE (times[i]),
94         names[i]);
96   free_everything_and_return (0);
97 } /* int handle_listval */
99 /* vim: set sw=2 sts=2 ts=8 : */