graph_ident.[ch]: Move the graph_ident_t data structure into an own module.
[collection4.git] / graph_list.h
1 #ifndef GRAPH_LIST_H
2 #define GRAPH_LIST_H 1
3
4 #include "utils_array.h"
5 #include "graph_ident.h"
6
7 struct graph_instance_s;
8 typedef struct graph_instance_s graph_instance_t;
9
10 struct graph_config_s;
11 typedef struct graph_config_s graph_config_t;
12
13 /*
14  * Callback types
15  */
16 typedef int (*gl_cfg_callback) (graph_config_t *cfg,
17     void *user_data);
18
19 typedef int (*gl_inst_callback) (graph_config_t *cfg,
20     graph_instance_t *inst, void *user_data);
21
22 /*
23  * Functions
24  */
25 int gl_graph_get_all (gl_cfg_callback callback,
26     void *user_data);
27
28 graph_config_t *graph_get_selected (void);
29
30 int gl_graph_get_title (graph_config_t *cfg,
31     char *buffer, size_t buffer_size);
32
33 int gl_graph_instance_get_all (graph_config_t *cfg,
34     gl_inst_callback callback, void *user_data);
35
36 graph_instance_t *inst_get_selected (graph_config_t *cfg);
37
38 int gl_instance_get_all (gl_inst_callback callback,
39     void *user_data);
40
41 int gl_instance_get_params (graph_config_t *cfg, graph_instance_t *inst,
42     char *buffer, size_t buffer_size);
43
44 int gl_instance_get_rrdargs (graph_config_t *cfg, graph_instance_t *inst,
45     str_array_t *args);
46
47 graph_ident_t *gl_instance_get_selector (graph_instance_t *inst);
48
49 struct graph_list_s
50 {
51   char *host;
52   char *plugin;
53   char *plugin_instance;
54   char *type;
55   char *type_instance;
56 };
57 typedef struct graph_list_s graph_list_t;
58
59 typedef int (*gl_callback) (
60     const graph_list_t *, void *user_data);
61
62 int gl_update (void);
63
64 #endif /* GRAPH_LIST_H */
65 /* vim: set sw=2 sts=2 et fdm=marker : */