Disambiguated the protocol used by the unixsock (and other) plugins.
[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
29 int handle_listval (FILE *fh, char **fields, int fields_num)
30 {
31   char **names = NULL;
32   time_t *times = NULL;
33   size_t number = 0;
34   size_t i;
35   int status;
36
37   if (fields_num != 1)
38   {
39     DEBUG ("command listval: us_handle_listval: Wrong number of fields: %i",
40         fields_num);
41     fprintf (fh, "-1 Wrong number of fields: Got %i, expected 1.\n",
42         fields_num);
43     fflush (fh);
44     return (-1);
45   }
46
47   status = uc_get_names (&names, &times, &number);
48   if (status != 0)
49   {
50     DEBUG ("command listval: uc_get_names failed with status %i", status);
51     fprintf (fh, "-1 uc_get_names failed.\n");
52     fflush (fh);
53     return (-1);
54   }
55
56   fprintf (fh, "%i Value%s found\n", (int) number, (number == 1) ? "" : "s");
57   for (i = 0; i < number; i++)
58     fprintf (fh, "%u %s\n", (unsigned int) times[i], names[i]);
59   fflush (fh);
60
61   return (0);
62 } /* int handle_listval */
63
64 /* vim: set sw=2 sts=2 ts=8 : */