2 * collectd - src/table.c
3 * Copyright (C) 2009 Sebastian Harl
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:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
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.
24 * Sebastian Harl <sh at tokkee.org>
28 * This module provides generic means to parse and dispatch tabular data.
37 #define log_err(...) ERROR("table plugin: " __VA_ARGS__)
38 #define log_warn(...) WARNING("table plugin: " __VA_ARGS__)
46 char *instance_prefix;
60 tbl_result_t *results;
66 static void tbl_result_setup(tbl_result_t *res) {
69 res->instance_prefix = NULL;
70 res->instances = NULL;
71 res->instances_num = 0;
77 } /* tbl_result_setup */
79 static void tbl_result_clear(tbl_result_t *res) {
82 sfree(res->instance_prefix);
83 sfree(res->instances);
84 res->instances_num = 0;
90 } /* tbl_result_clear */
92 static void tbl_setup(tbl_t *tbl, char *file) {
93 tbl->file = sstrdup(file);
103 static void tbl_clear(tbl_t *tbl) {
106 sfree(tbl->instance);
108 for (size_t i = 0; i < tbl->results_num; ++i)
109 tbl_result_clear(tbl->results + i);
111 tbl->results_num = 0;
116 static tbl_t *tables;
117 static size_t tables_num;
120 * configuration handling
123 static int tbl_config_set_s(char *name, char **var, oconfig_item_t *ci) {
124 if ((1 != ci->values_num) || (OCONFIG_TYPE_STRING != ci->values[0].type)) {
125 log_err("\"%s\" expects a single string argument.", name);
130 *var = sstrdup(ci->values[0].value.string);
132 } /* tbl_config_set_separator */
134 static int tbl_config_append_array_i(char *name, size_t **var, size_t *len,
135 oconfig_item_t *ci) {
139 if (1 > ci->values_num) {
140 log_err("\"%s\" expects at least one argument.", name);
144 num = (size_t)ci->values_num;
145 for (size_t i = 0; i < num; ++i) {
146 if (OCONFIG_TYPE_NUMBER != ci->values[i].type) {
147 log_err("\"%s\" expects numerical arguments only.", name);
152 tmp = realloc(*var, ((*len) + num) * sizeof(**var));
155 log_err("realloc failed: %s.", sstrerror(errno, errbuf, sizeof(errbuf)));
160 for (size_t i = 0; i < num; ++i) {
161 (*var)[*len] = (size_t)ci->values[i].value.number;
166 } /* tbl_config_append_array_s */
168 static int tbl_config_result(tbl_t *tbl, oconfig_item_t *ci) {
173 if (0 != ci->values_num) {
174 log_err("<Result> does not expect any arguments.");
178 res = realloc(tbl->results, (tbl->results_num + 1) * sizeof(*tbl->results));
181 log_err("realloc failed: %s.", sstrerror(errno, errbuf, sizeof(errbuf)));
188 res = tbl->results + tbl->results_num - 1;
189 tbl_result_setup(res);
191 for (int i = 0; i < ci->children_num; ++i) {
192 oconfig_item_t *c = ci->children + i;
194 if (0 == strcasecmp(c->key, "Type"))
195 tbl_config_set_s(c->key, &res->type, c);
196 else if (0 == strcasecmp(c->key, "InstancePrefix"))
197 tbl_config_set_s(c->key, &res->instance_prefix, c);
198 else if (0 == strcasecmp(c->key, "InstancesFrom"))
199 tbl_config_append_array_i(c->key, &res->instances, &res->instances_num,
201 else if (0 == strcasecmp(c->key, "ValuesFrom"))
202 tbl_config_append_array_i(c->key, &res->values, &res->values_num, c);
204 log_warn("Ignoring unknown config key \"%s\" "
209 if (NULL == res->type) {
210 log_err("No \"Type\" option specified for <Result> "
216 if (NULL == res->values) {
217 log_err("No \"ValuesFrom\" option specified for <Result> "
224 tbl_result_clear(res);
229 } /* tbl_config_result */
231 static int tbl_config_table(oconfig_item_t *ci) {
236 if ((1 != ci->values_num) || (OCONFIG_TYPE_STRING != ci->values[0].type)) {
237 log_err("<Table> expects a single string argument.");
241 tbl = realloc(tables, (tables_num + 1) * sizeof(*tables));
244 log_err("realloc failed: %s.", sstrerror(errno, errbuf, sizeof(errbuf)));
251 tbl = tables + tables_num - 1;
252 tbl_setup(tbl, ci->values[0].value.string);
254 for (size_t i = 0; i < ((size_t)ci->children_num); ++i) {
255 oconfig_item_t *c = ci->children + i;
257 if (0 == strcasecmp(c->key, "Separator"))
258 tbl_config_set_s(c->key, &tbl->sep, c);
259 else if (0 == strcasecmp(c->key, "Instance"))
260 tbl_config_set_s(c->key, &tbl->instance, c);
261 else if (0 == strcasecmp(c->key, "Result"))
262 tbl_config_result(tbl, c);
264 log_warn("Ignoring unknown config key \"%s\" "
269 if (NULL == tbl->sep) {
270 log_err("Table \"%s\" does not specify any separator.", tbl->file);
273 strunescape(tbl->sep, strlen(tbl->sep) + 1);
276 if (NULL == tbl->instance) {
277 tbl->instance = sstrdup(tbl->file);
278 replace_special(tbl->instance, strlen(tbl->instance));
281 if (NULL == tbl->results) {
282 log_err("Table \"%s\" does not specify any (valid) results.", tbl->file);
292 for (size_t i = 0; i < tbl->results_num; ++i) {
293 tbl_result_t *res = tbl->results + i;
295 for (size_t j = 0; j < res->instances_num; ++j)
296 if (res->instances[j] > tbl->max_colnum)
297 tbl->max_colnum = res->instances[j];
299 for (size_t j = 0; j < res->values_num; ++j)
300 if (res->values[j] > tbl->max_colnum)
301 tbl->max_colnum = res->values[j];
304 } /* tbl_config_table */
306 static int tbl_config(oconfig_item_t *ci) {
307 for (int i = 0; i < ci->children_num; ++i) {
308 oconfig_item_t *c = ci->children + i;
310 if (0 == strcasecmp(c->key, "Table"))
313 log_warn("Ignoring unknown config key \"%s\".", c->key);
322 static int tbl_prepare(tbl_t *tbl) {
323 for (size_t i = 0; i < tbl->results_num; ++i) {
324 tbl_result_t *res = tbl->results + i;
326 res->ds = plugin_get_ds(res->type);
327 if (NULL == res->ds) {
328 log_err("Unknown type \"%s\". See types.db(5) for details.", res->type);
332 if (res->values_num != res->ds->ds_num) {
333 log_err("Invalid type \"%s\". Expected %zu data source%s, "
335 res->type, res->values_num, (1 == res->values_num) ? "" : "s",
343 static int tbl_finish(tbl_t *tbl) {
344 for (size_t i = 0; i < tbl->results_num; ++i)
345 tbl->results[i].ds = NULL;
349 static int tbl_result_dispatch(tbl_t *tbl, tbl_result_t *res, char **fields,
351 value_list_t vl = VALUE_LIST_INIT;
352 value_t values[res->values_num];
354 assert(NULL != res->ds);
355 assert(res->values_num == res->ds->ds_num);
357 for (size_t i = 0; i < res->values_num; ++i) {
360 assert(res->values[i] < fields_num);
361 value = fields[res->values[i]];
363 if (0 != parse_value(value, &values[i], res->ds->ds[i].type))
368 vl.values_len = STATIC_ARRAY_SIZE(values);
370 sstrncpy(vl.plugin, "table", sizeof(vl.plugin));
371 sstrncpy(vl.plugin_instance, tbl->instance, sizeof(vl.plugin_instance));
372 sstrncpy(vl.type, res->type, sizeof(vl.type));
374 if (0 == res->instances_num) {
375 if (NULL != res->instance_prefix)
376 sstrncpy(vl.type_instance, res->instance_prefix,
377 sizeof(vl.type_instance));
379 char *instances[res->instances_num];
380 char instances_str[DATA_MAX_NAME_LEN];
382 for (size_t i = 0; i < res->instances_num; ++i) {
383 assert(res->instances[i] < fields_num);
384 instances[i] = fields[res->instances[i]];
387 strjoin(instances_str, sizeof(instances_str), instances,
388 STATIC_ARRAY_SIZE(instances), "-");
389 instances_str[sizeof(instances_str) - 1] = '\0';
391 vl.type_instance[sizeof(vl.type_instance) - 1] = '\0';
392 if (NULL == res->instance_prefix)
393 strncpy(vl.type_instance, instances_str, sizeof(vl.type_instance));
395 snprintf(vl.type_instance, sizeof(vl.type_instance), "%s-%s",
396 res->instance_prefix, instances_str);
398 if ('\0' != vl.type_instance[sizeof(vl.type_instance) - 1]) {
399 vl.type_instance[sizeof(vl.type_instance) - 1] = '\0';
400 log_warn("Truncated type instance: %s.", vl.type_instance);
404 plugin_dispatch_values(&vl);
406 } /* tbl_result_dispatch */
408 static int tbl_parse_line(tbl_t *tbl, char *line, size_t len) {
409 char *fields[tbl->max_colnum + 1];
416 while (NULL != (fields[i] = strtok_r(ptr, tbl->sep, &saveptr))) {
420 if (i > tbl->max_colnum)
424 if (i <= tbl->max_colnum) {
425 log_warn("Not enough columns in line "
426 "(expected at least %zu, got %zu).",
427 tbl->max_colnum + 1, i);
431 for (i = 0; i < tbl->results_num; ++i)
432 if (0 != tbl_result_dispatch(tbl, tbl->results + i, fields,
433 STATIC_ARRAY_SIZE(fields))) {
434 log_err("Failed to dispatch result.");
438 } /* tbl_parse_line */
440 static int tbl_read_table(tbl_t *tbl) {
444 fh = fopen(tbl->file, "r");
447 log_err("Failed to open file \"%s\": %s.", tbl->file,
448 sstrerror(errno, errbuf, sizeof(errbuf)));
452 buf[sizeof(buf) - 1] = '\0';
453 while (NULL != fgets(buf, sizeof(buf), fh)) {
454 if ('\0' != buf[sizeof(buf) - 1]) {
455 buf[sizeof(buf) - 1] = '\0';
456 log_warn("Table %s: Truncated line: %s", tbl->file, buf);
459 if (0 != tbl_parse_line(tbl, buf, sizeof(buf))) {
460 log_warn("Table %s: Failed to parse line: %s", tbl->file, buf);
465 if (0 != ferror(fh)) {
467 log_err("Failed to read from file \"%s\": %s.", tbl->file,
468 sstrerror(errno, errbuf, sizeof(errbuf)));
475 } /* tbl_read_table */
481 static int tbl_read(void) {
487 for (size_t i = 0; i < tables_num; ++i) {
488 tbl_t *tbl = tables + i;
490 if (0 != tbl_prepare(tbl)) {
491 log_err("Failed to prepare and parse table \"%s\".", tbl->file);
495 if (0 == tbl_read_table(tbl))
503 static int tbl_shutdown(void) {
504 for (size_t i = 0; i < tables_num; ++i)
505 tbl_clear(&tables[i]);
510 static int tbl_init(void) {
514 plugin_register_read("table", tbl_read);
515 plugin_register_shutdown("table", tbl_shutdown);
519 void module_register(void) {
520 plugin_register_complex_config("table", tbl_config);
521 plugin_register_init("table", tbl_init);
522 } /* module_register */