X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fgraph.h;h=26b4ac619bf5975074bbec6721e0629ee2de1b43;hb=f393a5cc0a2a7b0cd1d5b06166966d7af6f9daf5;hp=d303a8515e728c9e961bf95c69097473cb98e468;hpb=aaf63df27b244028582cfd078e82189110501043;p=collection4.git diff --git a/src/graph.h b/src/graph.h index d303a85..26b4ac6 100644 --- a/src/graph.h +++ b/src/graph.h @@ -1,9 +1,33 @@ +/** + * collection4 - graph.h + * Copyright (C) 2010 Florian octo Forster + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA + * + * Authors: + * Florian octo Forster + **/ + #ifndef GRAPH_H #define GRAPH_H 1 #include "graph_types.h" #include "graph_ident.h" #include "oconfig.h" +#include "rrd_args.h" #include "utils_array.h" /* @@ -46,6 +70,10 @@ graph_instance_t *graph_inst_find_exact (graph_config_t *cfg, graph_instance_t *graph_inst_find_matching (graph_config_t *cfg, const graph_ident_t *ident); +int graph_inst_find_all_matching (graph_config_t *cfg, + const graph_ident_t *ident, + graph_inst_callback_t callback, void *user_data); + int graph_inst_search (graph_config_t *cfg, const char *term, graph_inst_callback_t callback, void *user_data); @@ -57,10 +85,12 @@ int graph_inst_search_field (graph_config_t *cfg, int graph_compare (graph_config_t *cfg, const graph_ident_t *ident); +int graph_sort_instances (graph_config_t *cfg); + int graph_clear_instances (graph_config_t *cfg); int graph_get_rrdargs (graph_config_t *cfg, graph_instance_t *inst, - str_array_t *args); + rrd_args_t *args); #endif /* GRAPH_H */ /* vim: set sw=2 sts=2 et fdm=marker : */