X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Frrd_update.c;h=5e26055a66db2fa20244860359f137f3f0b010b6;hb=6d9b8ecd5a3e2f9ce9df0f46d0818bc36a93ec5c;hp=2b4a29300844208026abfca9331bc6222c78cb8a;hpb=ac630adec930653637199258efd99024d49325c7;p=rrdtool.git diff --git a/src/rrd_update.c b/src/rrd_update.c index 2b4a293..5e26055 100644 --- a/src/rrd_update.c +++ b/src/rrd_update.c @@ -1,3 +1,4 @@ + /***************************************************************************** * RRDtool 1.3.2 Copyright by Tobi Oetiker, 1997-2008 * Copyright by Florian Forster, 2008 @@ -321,6 +322,7 @@ rrd_info_t *rrd_update_v( char *tmplt = NULL; rrd_info_t *result = NULL; rrd_infoval_t rc; + char *opt_daemon = NULL; struct option long_options[] = { {"template", required_argument, 0, 't'}, {0, 0, 0, 0} @@ -350,6 +352,15 @@ rrd_info_t *rrd_update_v( } } + opt_daemon = getenv (ENV_RRDCACHED_ADDRESS); + if (opt_daemon != NULL) { + rrd_set_error ("The \"%s\" environment variable is defined, " + "but \"%s\" cannot work with rrdcached. Either unset " + "the environment variable or use \"update\" instead.", + ENV_RRDCACHED_ADDRESS, argv[0]); + goto end_tag; + } + /* need at least 2 arguments: filename, data. */ if (argc - optind < 2) { rrd_set_error("Not enough arguments"); @@ -417,64 +428,33 @@ int rrd_update( goto out; } - if ((tmplt != NULL) && (opt_daemon != NULL)) + { /* try to connect to rrdcached */ + int status = rrdc_connect(opt_daemon); + if (status != 0) return status; + } + + if ((tmplt != NULL) && rrdc_is_connected(opt_daemon)) { - rrd_set_error("The caching opt_daemon cannot be used together with " + rrd_set_error("The caching daemon cannot be used together with " "templates yet."); goto out; } - if ((tmplt == NULL) && (opt_daemon == NULL)) + if (! rrdc_is_connected(opt_daemon)) { - char *temp; - - temp = getenv (ENV_RRDCACHED_ADDRESS); - if (temp != NULL) - { - opt_daemon = strdup (temp); - if (opt_daemon == NULL) - { - rrd_set_error("strdup failed."); - goto out; - } - } + rc = rrd_update_r(argv[optind], tmplt, + argc - optind - 1, (const char **) (argv + optind + 1)); } - - if (opt_daemon != NULL) + else /* we are connected */ { - int status; - - status = rrdc_connect (opt_daemon); - if (status != 0) - { - rrd_set_error("Unable to connect to opt_daemon: %s", - (status < 0) - ? "Internal error" - : rrd_strerror (status)); - goto out; - } - - status = rrdc_update (/* file = */ argv[optind], - /* values_num = */ argc - optind - 1, - /* values = */ (void *) (argv + optind + 1)); - if (status != 0) - { - rrd_set_error("Failed sending the values to the opt_daemon: %s", - (status < 0) - ? "Internal error" - : rrd_strerror (status)); - } - else - { - rc = 0; - } - - rrdc_disconnect (); - goto out; - } /* if (opt_daemon != NULL) */ + rc = rrdc_update (argv[optind], /* file */ + argc - optind - 1, /* values_num */ + (void *) (argv + optind + 1)); /* values */ + if (rc > 0) + rrd_set_error("Failed sending the values to rrdcached: %s", + rrd_strerror (rc)); + } - rc = rrd_update_r(argv[optind], tmplt, - argc - optind - 1, (const char **) (argv + optind + 1)); out: if (tmplt != NULL) {