X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Frrd.h;h=3e1a08ad333a7e692eec5f5c6dd827962a899eb7;hb=ea8c705cc27ef33dee2cc6561ed51e16ddc5d0a9;hp=978ad1c1b17d2e8a3100037e07d5af2a715f7dd0;hpb=6a4c9f4045859f5dd1096464f4cdf2e8b862147b;p=rrdtool.git diff --git a/src/rrd.h b/src/rrd.h index 978ad1c..3e1a08a 100644 --- a/src/rrd.h +++ b/src/rrd.h @@ -86,6 +86,35 @@ extern "C" { off_t pos; /* current pos in file */ } rrd_file_t; +/* rrd info interface */ + typedef struct rrd_blob_t { + unsigned long size; /* size of the blob */ + unsigned char *ptr; /* pointer */ + } rrd_blob_t; + + enum info_type { RD_I_VAL = 0, + RD_I_CNT, + RD_I_STR, + RD_I_INT, + RD_I_BLO + }; + + typedef union infoval { + unsigned long u_cnt; + rrd_value_t u_val; + char *u_str; + int u_int; + struct rrd_blob_t u_blo; + } infoval; + + typedef struct info_t { + char *key; + enum info_type type; + union infoval value; + struct info_t *next; + } info_t; + + /* main function blocks */ int rrd_create( int, @@ -102,16 +131,9 @@ extern "C" { FILE *, double *, double *); - - unsigned char *rrd_graph_in_memory( - int argc, - char **argv, - char ***prdata, - int *xsize, - int *ysize, - double *ymin, - double *ymax, - size_t * img_size); + info_t *rrd_graph_v( + int, + char **); int rrd_fetch( int,