use kern.cp_times sysctl for FreeBSD smp support
[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  **/
21
22 #include "collectd.h"
23 #include "common.h"
24 #include "plugin.h"
25
26 #include "utils_cmd_listval.h"
27 #include "utils_cache.h"
28 #include "utils_parse_option.h"
29
30 #define print_to_socket(fh, ...) \
31   if (fprintf (fh, __VA_ARGS__) < 0) { \
32     char errbuf[1024]; \
33     WARNING ("handle_listval: failed to write to socket #%i: %s", \
34         fileno (fh), sstrerror (errno, errbuf, sizeof (errbuf))); \
35     return -1; \
36   }
37
38 int handle_listval (FILE *fh, char *buffer)
39 {
40   char *command;
41   char **names = NULL;
42   time_t *times = NULL;
43   size_t number = 0;
44   size_t i;
45   int status;
46
47   DEBUG ("utils_cmd_listval: handle_listval (fh = %p, buffer = %s);",
48       (void *) fh, buffer);
49
50   command = NULL;
51   status = parse_string (&buffer, &command);
52   if (status != 0)
53   {
54     print_to_socket (fh, "-1 Cannot parse command.\n");
55     return (-1);
56   }
57   assert (command != NULL);
58
59   if (strcasecmp ("LISTVAL", command) != 0)
60   {
61     print_to_socket (fh, "-1 Unexpected command: `%s'.\n", command);
62     return (-1);
63   }
64
65   if (*buffer != 0)
66   {
67     print_to_socket (fh, "-1 Garbage after end of command: %s\n", buffer);
68     return (-1);
69   }
70
71   status = uc_get_names (&names, &times, &number);
72   if (status != 0)
73   {
74     DEBUG ("command listval: uc_get_names failed with status %i", status);
75     print_to_socket (fh, "-1 uc_get_names failed.\n");
76     return (-1);
77   }
78
79   print_to_socket (fh, "%i Value%s found\n",
80       (int) number, (number == 1) ? "" : "s");
81   for (i = 0; i < number; i++)
82     print_to_socket (fh, "%u %s\n", (unsigned int) times[i], names[i]);
83
84   return (0);
85 } /* int handle_listval */
86
87 /* vim: set sw=2 sts=2 ts=8 : */