X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Frrd_info.c;h=2f6c07fff78c1806323807084d9e181e9afb337a;hb=4ac4f3f1155702ed4d4b021eed20ff64a09a6549;hp=50aab7202ed6e91a775ea89d6ee2a5aa51c28216;hpb=ac630adec930653637199258efd99024d49325c7;p=rrdtool.git diff --git a/src/rrd_info.c b/src/rrd_info.c index 50aab72..2f6c07f 100644 --- a/src/rrd_info.c +++ b/src/rrd_info.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.2 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.4.3 Copyright by Tobi Oetiker, 1997-2010 ***************************************************************************** * rrd_info Get Information about the configuration of an RRD *****************************************************************************/ @@ -21,10 +21,18 @@ char *sprintf_alloc( char *fmt, ...) { - int maxlen = 1024 + strlen(fmt); char *str = NULL; va_list argp; - str = malloc(sizeof(char) * (maxlen + 1)); +#ifdef HAVE_VASPRINTF + va_start( argp, fmt ); + if (vasprintf( &str, fmt, argp ) == -1){ + va_end(argp); + rrd_set_error ("vasprintf failed."); + return(NULL); + } +#else + int maxlen = 1024 + strlen(fmt); + str = (char*)malloc(sizeof(char) * (maxlen + 1)); if (str != NULL) { va_start(argp, fmt); #ifdef HAVE_VSNPRINTF @@ -33,6 +41,7 @@ char *sprintf_alloc( vsprintf(str, fmt, argp); #endif } +#endif /* HAVE_VASPRINTF */ va_end(argp); return str; } @@ -45,7 +54,7 @@ rrd_info_t { rrd_info_t *next; - next = malloc(sizeof(*next)); + next = (rrd_info_t*)malloc(sizeof(*next)); next->next = (rrd_info_t *) 0; if (info) info->next = next; @@ -62,13 +71,13 @@ rrd_info_t next->value.u_int = value.u_int; break; case RD_I_STR: - next->value.u_str = malloc(sizeof(char) * (strlen(value.u_str) + 1)); + next->value.u_str = (char*)malloc(sizeof(char) * (strlen(value.u_str) + 1)); strcpy(next->value.u_str, value.u_str); break; case RD_I_BLO: next->value.u_blo.size = value.u_blo.size; next->value.u_blo.ptr = - malloc(sizeof(unsigned char) * value.u_blo.size); + (unsigned char *)malloc(sizeof(unsigned char) * value.u_blo.size); memcpy(next->value.u_blo.ptr, value.u_blo.ptr, value.u_blo.size); break; } @@ -82,6 +91,8 @@ rrd_info_t *rrd_info( { rrd_info_t *info; char *opt_daemon = NULL; + int status; + int flushfirst = 1; optind = 0; opterr = 0; /* initialize getopt */ @@ -91,10 +102,11 @@ rrd_info_t *rrd_info( int option_index = 0; static struct option long_options[] = { {"daemon", required_argument, 0, 'd'}, + {"noflush", no_argument, 0, 'F'}, {0, 0, 0, 0} }; - opt = getopt_long(argc, argv, "d:", long_options, &option_index); + opt = getopt_long(argc, argv, "d:F", long_options, &option_index); if (opt == EOF) break; @@ -111,8 +123,12 @@ rrd_info_t *rrd_info( } break; + case 'F': + flushfirst = 0; + break; + default: - rrd_set_error ("Usage: rrdtool %s [--daemon ] ", + rrd_set_error ("Usage: rrdtool %s [--daemon [--noflush]] ", argv[0]); return (NULL); break; @@ -120,51 +136,23 @@ rrd_info_t *rrd_info( } /* while (42) */ if ((argc - optind) != 1) { - rrd_set_error ("Usage: rrdtool %s [--daemon ] ", + rrd_set_error ("Usage: rrdtool %s [--daemon [--noflush]] ", argv[0]); return (NULL); } - if (opt_daemon == NULL) - { - char *temp; - - temp = getenv (ENV_RRDCACHED_ADDRESS); - if (temp != NULL) - { - opt_daemon = strdup (temp); - if (opt_daemon == NULL) - { - rrd_set_error("strdup failed."); - return (NULL); - } - } + if( flushfirst ) { + status = rrdc_flush_if_daemon(opt_daemon, argv[optind]); + if (status) return (NULL); } - if (opt_daemon != NULL) - { - int status; - - status = rrdc_connect (opt_daemon); - if (status != 0) - { - rrd_set_error ("rrdc_connect failed with status %i.", status); - return (NULL); - } - - status = rrdc_flush (argv[optind]); - if (status != 0) - { - rrd_set_error ("rrdc_flush (%s) failed with status %i.", - argv[optind], status); - return (NULL); - } - - rrdc_disconnect (); - } /* if (opt_daemon) */ - + rrdc_connect (opt_daemon); + if (rrdc_is_connected (opt_daemon)) + info = rrdc_info (argv[optind]); + else info = rrd_info_r(argv[optind]); + if (opt_daemon) free(opt_daemon); return (info); } /* rrd_info_t *rrd_info */ @@ -179,6 +167,7 @@ rrd_info_t *rrd_info_r( enum cf_en current_cf; enum dst_en current_ds; + rrd_init(&rrd); rrd_file = rrd_open(filename, &rrd, RRD_READONLY); if (rrd_file == NULL) goto err_free; @@ -196,8 +185,16 @@ rrd_info_t *rrd_info_r( info.u_cnt = rrd.live_head->last_up; cd = rrd_info_push(cd, sprintf_alloc("last_update"), RD_I_CNT, info); + info.u_cnt = rrd_get_header_size(&rrd); + cd = rrd_info_push(cd, sprintf_alloc("header_size"), RD_I_CNT, info); + for (i = 0; i < rrd.stat_head->ds_cnt; i++) { + info.u_cnt=i; + cd= rrd_info_push(cd,sprintf_alloc("ds[%s].index", + rrd.ds_def[i].ds_nam), + RD_I_CNT, info); + info.u_str = rrd.ds_def[i].dst; cd = rrd_info_push(cd, sprintf_alloc("ds[%s].type", rrd.ds_def[i].ds_nam),