2 * collectd - src/utils_cmd_putval.c
3 * Copyright (C) 2007-2009 Florian octo Forster
4 * Copyright (C) 2016 Sebastian tokkee Harl
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
25 * Florian octo Forster <octo at collectd.org>
26 * Sebastian tokkee Harl <sh at tokkee.org>
32 #include "utils_cmd_putval.h"
35 * private helper functions
38 static int set_option(value_list_t *vl, const char *key, const char *value) {
39 if ((vl == NULL) || (key == NULL) || (value == NULL))
42 if (strcasecmp("interval", key) == 0) {
48 tmp = strtod(value, &endptr);
50 if ((errno == 0) && (endptr != NULL) && (endptr != value) && (tmp > 0.0))
51 vl->interval = DOUBLE_TO_CDTIME_T(tmp);
56 } /* int set_option */
62 cmd_status_t cmd_parse_putval(size_t argc, char **argv,
63 cmd_putval_t *ret_putval,
64 const cmd_options_t *opts,
65 cmd_error_handler_t *err) {
71 char *plugin_instance;
76 char *identifier_copy;
79 value_list_t vl = VALUE_LIST_INIT;
81 if ((ret_putval == NULL) || (opts == NULL)) {
83 cmd_error(CMD_ERROR, err, "Invalid arguments to cmd_parse_putval.");
88 cmd_error(CMD_PARSE_ERROR, err, "Missing identifier and/or value-list.");
89 return CMD_PARSE_ERROR;
94 /* parse_identifier() modifies its first argument, returning pointers into
95 * it; retain the old value for later. */
96 identifier_copy = sstrdup(identifier);
99 parse_identifier(identifier, &hostname, &plugin, &plugin_instance, &type,
100 &type_instance, opts->identifier_default_host);
102 DEBUG("cmd_handle_putval: Cannot parse identifier `%s'.", identifier_copy);
103 cmd_error(CMD_PARSE_ERROR, err, "Cannot parse identifier `%s'.",
105 sfree(identifier_copy);
106 return CMD_PARSE_ERROR;
109 if ((strlen(hostname) >= sizeof(vl.host)) ||
110 (strlen(plugin) >= sizeof(vl.plugin)) ||
111 ((plugin_instance != NULL) &&
112 (strlen(plugin_instance) >= sizeof(vl.plugin_instance))) ||
113 ((type_instance != NULL) &&
114 (strlen(type_instance) >= sizeof(vl.type_instance)))) {
115 cmd_error(CMD_PARSE_ERROR, err, "Identifier too long.");
116 sfree(identifier_copy);
117 return CMD_PARSE_ERROR;
120 sstrncpy(vl.host, hostname, sizeof(vl.host));
121 sstrncpy(vl.plugin, plugin, sizeof(vl.plugin));
122 sstrncpy(vl.type, type, sizeof(vl.type));
123 if (plugin_instance != NULL)
124 sstrncpy(vl.plugin_instance, plugin_instance, sizeof(vl.plugin_instance));
125 if (type_instance != NULL)
126 sstrncpy(vl.type_instance, type_instance, sizeof(vl.type_instance));
128 ds = plugin_get_ds(type);
130 cmd_error(CMD_PARSE_ERROR, err, "1 Type `%s' isn't defined.", type);
131 sfree(identifier_copy);
132 return CMD_PARSE_ERROR;
137 plugin_instance = NULL;
139 type_instance = NULL;
141 ret_putval->raw_identifier = identifier_copy;
142 if (ret_putval->raw_identifier == NULL) {
143 cmd_error(CMD_ERROR, err, "malloc failed.");
144 cmd_destroy_putval(ret_putval);
149 /* All the remaining fields are part of the option list. */
151 for (size_t i = 1; i < argc; ++i) {
157 status = cmd_parse_option(argv[i], &key, &value, err);
158 if (status == CMD_OK) {
160 assert(value != NULL);
161 set_option(&vl, key, value);
163 } else if (status != CMD_NO_OPTION) {
164 /* parse_option failed, buffer has been modified.
165 * => we need to abort */
169 /* else: cmd_parse_option did not find an option; treat this as a
172 vl.values_len = ds->ds_num;
173 vl.values = calloc(vl.values_len, sizeof(*vl.values));
174 if (vl.values == NULL) {
175 cmd_error(CMD_ERROR, err, "malloc failed.");
180 status = parse_values(argv[i], &vl, ds);
182 cmd_error(CMD_PARSE_ERROR, err, "Parsing the values string failed.");
183 result = CMD_PARSE_ERROR;
189 tmp = realloc(ret_putval->vl,
190 (ret_putval->vl_num + 1) * sizeof(*ret_putval->vl));
192 cmd_error(CMD_ERROR, err, "realloc failed.");
193 cmd_destroy_putval(ret_putval);
200 ret_putval->vl = tmp;
201 ret_putval->vl_num++;
202 memcpy(&ret_putval->vl[ret_putval->vl_num - 1], &vl, sizeof(vl));
204 /* pointer is now owned by ret_putval->vl[] */
207 } /* while (*buffer != 0) */
208 /* Done parsing the options. */
210 if (result != CMD_OK)
211 cmd_destroy_putval(ret_putval);
214 } /* cmd_status_t cmd_parse_putval */
216 void cmd_destroy_putval(cmd_putval_t *putval) {
220 sfree(putval->raw_identifier);
222 for (size_t i = 0; i < putval->vl_num; ++i) {
223 sfree(putval->vl[i].values);
224 meta_data_destroy(putval->vl[i].meta);
225 putval->vl[i].meta = NULL;
230 } /* void cmd_destroy_putval */
232 cmd_status_t cmd_handle_putval(FILE *fh, char *buffer) {
233 cmd_error_handler_t err = {cmd_error_fh, fh};
238 DEBUG("utils_cmd_putval: cmd_handle_putval (fh = %p, buffer = %s);",
241 if ((status = cmd_parse(buffer, &cmd, NULL, &err)) != CMD_OK)
243 if (cmd.type != CMD_PUTVAL) {
244 cmd_error(CMD_UNKNOWN_COMMAND, &err, "Unexpected command: `%s'.",
245 CMD_TO_STRING(cmd.type));
247 return CMD_UNKNOWN_COMMAND;
250 for (size_t i = 0; i < cmd.cmd.putval.vl_num; ++i)
251 plugin_dispatch_values(&cmd.cmd.putval.vl[i]);
254 cmd_error(CMD_OK, &err, "Success: %i %s been dispatched.",
255 (int)cmd.cmd.putval.vl_num,
256 (cmd.cmd.putval.vl_num == 1) ? "value has" : "values have");
260 } /* int cmd_handle_putval */
262 int cmd_create_putval(char *ret, size_t ret_len, /* {{{ */
263 const data_set_t *ds, const value_list_t *vl) {
264 char buffer_ident[6 * DATA_MAX_NAME_LEN];
265 char buffer_values[1024];
268 status = FORMAT_VL(buffer_ident, sizeof(buffer_ident), vl);
271 escape_string(buffer_ident, sizeof(buffer_ident));
273 status = format_values(buffer_values, sizeof(buffer_values), ds, vl,
274 /* store rates = */ 0);
277 escape_string(buffer_values, sizeof(buffer_values));
279 snprintf(ret, ret_len, "PUTVAL %s interval=%.3f %s", buffer_ident,
280 (vl->interval > 0) ? CDTIME_T_TO_DOUBLE(vl->interval)
281 : CDTIME_T_TO_DOUBLE(plugin_get_interval()),
285 } /* }}} int cmd_create_putval */