src/graph_instance.[ch]: Implement "inst_matches_field".
[collection4.git] / src / graph_instance.h
1 #ifndef GRAPH_INSTANCE_H
2 #define GRAPH_INSTANCE_H 1
3
4 #include <time.h>
5
6 #include "graph_types.h"
7 #include "graph_ident.h"
8 #include "utils_array.h"
9
10 /*
11  * Methods
12  */
13 graph_instance_t *inst_create (graph_config_t *cfg,
14                 const graph_ident_t *ident);
15
16 void inst_destroy (graph_instance_t *inst);
17
18 int inst_add_file (graph_instance_t *inst, const graph_ident_t *file);
19
20 graph_instance_t *inst_get_selected (graph_config_t *cfg);
21
22 int inst_get_params (graph_config_t *cfg, graph_instance_t *inst,
23     char *buffer, size_t buffer_size);
24
25 int inst_get_rrdargs (graph_config_t *cfg, graph_instance_t *inst,
26     str_array_t *args);
27
28 graph_ident_t *inst_get_selector (graph_instance_t *inst);
29
30 int inst_compare_ident (graph_instance_t *inst, const graph_ident_t *ident);
31
32 _Bool inst_matches_ident (graph_instance_t *inst, const graph_ident_t *ident);
33
34 _Bool inst_matches_string (graph_config_t *cfg, graph_instance_t *inst,
35     const char *term);
36
37 _Bool inst_matches_field (graph_instance_t *inst,
38     graph_ident_field_t field, const char *field_value);
39
40 int inst_describe (graph_config_t *cfg, graph_instance_t *inst,
41     char *buffer, size_t buffer_size);
42
43 time_t inst_get_mtime (graph_instance_t *inst);
44
45 #endif /* GRAPH_INSTANCE_H */
46 /* vim: set sw=2 sts=2 et fdm=marker : */