Code

src/graph.[ch]: Implement "graph_get_params".
[collection4.git] / src / graph.h
1 #ifndef GRAPH_H
2 #define GRAPH_H 1
4 #include "graph_types.h"
5 #include "oconfig.h"
6 #include "utils_array.h"
8 /*
9  * Functions
10  */
11 graph_config_t *graph_create (const graph_ident_t *selector);
13 void graph_destroy (graph_config_t *graph);
15 int graph_config_add (const oconfig_item_t *ci);
17 int graph_add_file (graph_config_t *cfg, const graph_ident_t *file);
19 int graph_get_title (graph_config_t *cfg,
20     char *buffer, size_t buffer_size);
22 int graph_get_params (graph_config_t *cfg, char *buffer, size_t buffer_size);
24 graph_ident_t *graph_get_selector (graph_config_t *cfg);
26 graph_instance_t *graph_get_instances (graph_config_t *cfg);
28 graph_def_t *graph_get_defs (graph_config_t *cfg);
30 int graph_add_def (graph_config_t *cfg, graph_def_t *def);
32 _Bool graph_matches (graph_config_t *cfg, const graph_ident_t *ident);
34 int graph_inst_foreach (graph_config_t *cfg,
35                 inst_callback_t cb, void *user_data);
37 int graph_search (graph_config_t *cfg, const char *term,
38     graph_inst_callback_t callback, void *user_data);
40 int graph_compare (graph_config_t *cfg, const graph_ident_t *ident);
42 int graph_clear_instances (graph_config_t *cfg);
44 int graph_get_rrdargs (graph_config_t *cfg, graph_instance_t *inst,
45     str_array_t *args);
47 #endif /* GRAPH_H */
48 /* vim: set sw=2 sts=2 et fdm=marker : */