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