command parser: Add support for parser options.
[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
29 #include "common.h"
30 #include "plugin.h"
31
32 #include "utils_cmd_listval.h"
33 #include "utils_cache.h"
34 #include "utils_parse_option.h"
35
36 cmd_status_t cmd_parse_listval (size_t argc, char **argv,
37     cmd_listval_t *ret_listval __attribute__((unused)),
38     const cmd_options_t *opts __attribute__((unused)),
39     cmd_error_handler_t *err)
40 {
41   if (argc != 0)
42   {
43     cmd_error (CMD_PARSE_ERROR, err,
44         "Garbage after end of command: `%s'.", argv[0]);
45     return (CMD_PARSE_ERROR);
46   }
47
48   return (CMD_OK);
49 } /* cmd_status_t cmd_parse_listval */
50
51 #define free_everything_and_return(status) do { \
52     for (size_t j = 0; j < number; j++) { \
53       sfree(names[j]); \
54       names[j] = NULL; \
55     } \
56     sfree(names); \
57     sfree(times); \
58     return (status); \
59   } while (0)
60
61 #define print_to_socket(fh, ...) \
62   do { \
63     if (fprintf (fh, __VA_ARGS__) < 0) { \
64       char errbuf[1024]; \
65       WARNING ("handle_listval: failed to write to socket #%i: %s", \
66           fileno (fh), sstrerror (errno, errbuf, sizeof (errbuf))); \
67       free_everything_and_return (CMD_ERROR); \
68     } \
69     fflush(fh); \
70   } while (0)
71
72 cmd_status_t cmd_handle_listval (FILE *fh, char *buffer)
73 {
74   cmd_error_handler_t err = { cmd_error_fh, fh };
75   cmd_status_t status;
76   cmd_t cmd;
77
78   char **names = NULL;
79   cdtime_t *times = NULL;
80   size_t number = 0;
81
82   DEBUG ("utils_cmd_listval: handle_listval (fh = %p, buffer = %s);",
83       (void *) fh, buffer);
84
85   if ((status = cmd_parse (buffer, &cmd, NULL, &err)) != CMD_OK)
86     return (status);
87   if (cmd.type != CMD_LISTVAL)
88   {
89     cmd_error (CMD_UNKNOWN_COMMAND, &err,
90         "Unexpected command: `%s'.", CMD_TO_STRING (cmd.type));
91     free_everything_and_return (CMD_UNKNOWN_COMMAND);
92   }
93
94   status = uc_get_names (&names, &times, &number);
95   if (status != 0)
96   {
97     DEBUG ("command listval: uc_get_names failed with status %i", status);
98     cmd_error (CMD_ERROR, &err, "uc_get_names failed.");
99     free_everything_and_return (CMD_ERROR);
100   }
101
102   print_to_socket (fh, "%i Value%s found\n",
103       (int) number, (number == 1) ? "" : "s");
104   for (size_t i = 0; i < number; i++)
105     print_to_socket (fh, "%.3f %s\n", CDTIME_T_TO_DOUBLE (times[i]),
106         names[i]);
107
108   free_everything_and_return (CMD_OK);
109 } /* cmd_status_t cmd_handle_listval */
110
111 void cmd_destroy_listval (cmd_listval_t *listval __attribute__((unused)))
112 {
113   /* nothing to do */
114 } /* void cmd_destroy_listval */
115
116 /* vim: set sw=2 sts=2 ts=8 : */