X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Frrd_info.c;h=5722025384cd1fed366b92434d074124cc4ca237;hb=23a7a9744b3f840f358e1c8e8483f93bd2bdf97f;hp=f241b8d483949f668bad811b851c9e015f7d834e;hpb=56d67cdd0c5b2c27c9242a3d5810c7184917f663;p=rrdtool.git diff --git a/src/rrd_info.c b/src/rrd_info.c index f241b8d..5722025 100644 --- a/src/rrd_info.c +++ b/src/rrd_info.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.0 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.4.3 Copyright by Tobi Oetiker, 1997-2010 ***************************************************************************** * rrd_info Get Information about the configuration of an RRD *****************************************************************************/ @@ -71,8 +71,7 @@ rrd_info_t next->value.u_int = value.u_int; break; case RD_I_STR: - next->value.u_str = (char*)malloc(sizeof(char) * (strlen(value.u_str) + 1)); - strcpy(next->value.u_str, value.u_str); + next->value.u_str = strdup(value.u_str); break; case RD_I_BLO: next->value.u_blo.size = value.u_blo.size; @@ -92,6 +91,7 @@ rrd_info_t *rrd_info( rrd_info_t *info; char *opt_daemon = NULL; int status; + int flushfirst = 1; optind = 0; opterr = 0; /* initialize getopt */ @@ -101,10 +101,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; @@ -121,8 +122,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; @@ -130,17 +135,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( flushfirst ) { status = rrdc_flush_if_daemon(opt_daemon, argv[optind]); - if (opt_daemon) free (opt_daemon); if (status) return (NULL); + } + 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 */