X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Frrd_info.c;h=679b02402dfcfa8e68aa663d5459d201890eb0d6;hb=6d9b8ecd5a3e2f9ce9df0f46d0818bc36a93ec5c;hp=f2a81f06d452a3dd8a6e3ffa3662960a06b17a89;hpb=35354e059a77479a7a135c1e4fc71c76523fd7c4;p=rrdtool.git diff --git a/src/rrd_info.c b/src/rrd_info.c index f2a81f0..679b024 100644 --- a/src/rrd_info.c +++ b/src/rrd_info.c @@ -1,11 +1,12 @@ /***************************************************************************** - * RRDtool 1.3.0 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3.2 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_info Get Information about the configuration of an RRD *****************************************************************************/ #include "rrd_tool.h" #include "rrd_rpncalc.h" +#include "rrd_client.h" #include /* proto */ @@ -80,18 +81,59 @@ rrd_info_t *rrd_info( char **argv) { rrd_info_t *info; + char *opt_daemon = NULL; + int status; - if (argc < 2) { - rrd_set_error("please specify an rrd"); - return NULL; - } + optind = 0; + opterr = 0; /* initialize getopt */ - info = rrd_info_r(argv[1]); + while (42) { + int opt; + int option_index = 0; + static struct option long_options[] = { + {"daemon", required_argument, 0, 'd'}, + {0, 0, 0, 0} + }; - return (info); -} + opt = getopt_long(argc, argv, "d:", long_options, &option_index); + if (opt == EOF) + break; + switch (opt) { + case 'd': + if (opt_daemon != NULL) + free (opt_daemon); + opt_daemon = strdup (optarg); + if (opt_daemon == NULL) + { + rrd_set_error ("strdup failed."); + return (NULL); + } + break; + + default: + rrd_set_error ("Usage: rrdtool %s [--daemon ] ", + argv[0]); + return (NULL); + break; + } + } /* while (42) */ + + if ((argc - optind) != 1) { + rrd_set_error ("Usage: rrdtool %s [--daemon ] ", + argv[0]); + return (NULL); + } + + status = rrdc_flush_if_daemon(opt_daemon, argv[optind]); + if (opt_daemon) free (opt_daemon); + if (status) return (NULL); + + info = rrd_info_r(argv[optind]); + + return (info); +} /* rrd_info_t *rrd_info */ rrd_info_t *rrd_info_r( char *filename)