{GPL, other}: Relicense to MIT license.
[collectd.git] / src / utils_cmd_listval.c
1 /**
2  * collectd - src/utils_cmd_listval.c
3  * Copyright (C) 2008       Florian octo Forster
4  *
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:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
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.
22  *
23  * Authors:
24  *   Florian octo Forster <octo at collectd.org>
25  **/
26
27 #include "collectd.h"
28 #include "common.h"
29 #include "plugin.h"
30
31 #include "utils_cmd_listval.h"
32 #include "utils_cache.h"
33 #include "utils_parse_option.h"
34
35 #define free_everything_and_return(status) do { \
36     size_t j; \
37     for (j = 0; j < number; j++) { \
38       sfree(names[j]); \
39       names[j] = NULL; \
40     } \
41     sfree(names); \
42     sfree(times); \
43     return (status); \
44   } while (0)
45
46 #define print_to_socket(fh, ...) \
47   if (fprintf (fh, __VA_ARGS__) < 0) { \
48     char errbuf[1024]; \
49     WARNING ("handle_listval: failed to write to socket #%i: %s", \
50         fileno (fh), sstrerror (errno, errbuf, sizeof (errbuf))); \
51     free_everything_and_return (-1); \
52   }
53
54 int handle_listval (FILE *fh, char *buffer)
55 {
56   char *command;
57   char **names = NULL;
58   cdtime_t *times = NULL;
59   size_t number = 0;
60   size_t i;
61   int status;
62
63   DEBUG ("utils_cmd_listval: handle_listval (fh = %p, buffer = %s);",
64       (void *) fh, buffer);
65
66   command = NULL;
67   status = parse_string (&buffer, &command);
68   if (status != 0)
69   {
70     print_to_socket (fh, "-1 Cannot parse command.\n");
71     free_everything_and_return (-1);
72   }
73   assert (command != NULL);
74
75   if (strcasecmp ("LISTVAL", command) != 0)
76   {
77     print_to_socket (fh, "-1 Unexpected command: `%s'.\n", command);
78     free_everything_and_return (-1);
79   }
80
81   if (*buffer != 0)
82   {
83     print_to_socket (fh, "-1 Garbage after end of command: %s\n", buffer);
84     free_everything_and_return (-1);
85   }
86
87   status = uc_get_names (&names, &times, &number);
88   if (status != 0)
89   {
90     DEBUG ("command listval: uc_get_names failed with status %i", status);
91     print_to_socket (fh, "-1 uc_get_names failed.\n");
92     free_everything_and_return (-1);
93   }
94
95   print_to_socket (fh, "%i Value%s found\n",
96       (int) number, (number == 1) ? "" : "s");
97   for (i = 0; i < number; i++)
98     print_to_socket (fh, "%.3f %s\n", CDTIME_T_TO_DOUBLE (times[i]),
99         names[i]);
100
101   free_everything_and_return (0);
102 } /* int handle_listval */
103
104 /* vim: set sw=2 sts=2 ts=8 : */