X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=clients%2Fmemerror.cc;h=3cee64cce518aaf3b6ca19bb64ac0b399ad6bd55;hb=1c2f1d893384cf632697ce46e21d2f0c1edfc389;hp=fd4238a51eb3dd256fa6530510d9605c12d1aceb;hpb=956d15b5b1f3f3518eb374a3a9e0393e9dacd3b6;p=awesomized%2Flibmemcached diff --git a/clients/memerror.cc b/clients/memerror.cc index fd4238a5..3cee64cc 100644 --- a/clients/memerror.cc +++ b/clients/memerror.cc @@ -1,4 +1,5 @@ /* LibMemcached + * Copyright (C) 2011-2012 Data Differential, http://datadifferential.com/ * Copyright (C) 2006-2009 Brian Aker * All rights reserved. * @@ -8,17 +9,19 @@ * Summary: * */ -#include "config.h" +#include "mem_config.h" -#include +#include #include #include #include +#include + #include #include #include -#include +#include #include "utilities.h" @@ -29,27 +32,41 @@ /* Prototypes */ void options_parse(int argc, char *argv[]); -static int opt_verbose= 0; - int main(int argc, char *argv[]) { options_parse(argc, argv); - if (argc != 2) + if (argc < 2) { return EXIT_FAILURE; } - unsigned long value= strtoul(argv[1], (char **) NULL, 10); - - if (value < MEMCACHED_MAXIMUM_RETURN) + while (optind < argc) { - std::cout << memcached_strerror(NULL, (memcached_return_t)value) << std::endl; - } - else - { - std::cerr << memcached_strerror(NULL, MEMCACHED_MAXIMUM_RETURN) << std::endl; - return EXIT_FAILURE; + errno= 0; + char *nptr; + unsigned long value= strtoul(argv[optind], &nptr, 10); + + if ((errno != 0) or + (nptr == argv[optind] and value == 0) or + (value == ULONG_MAX and errno == ERANGE) or + (value == 0 and errno == EINVAL)) + { + std::cerr << "strtoul() was unable to parse given value" << std::endl; + return EXIT_FAILURE; + } + + if (value < MEMCACHED_MAXIMUM_RETURN) + { + std::cout << memcached_strerror(NULL, (memcached_return_t)value) << std::endl; + } + else + { + std::cerr << memcached_strerror(NULL, MEMCACHED_MAXIMUM_RETURN) << std::endl; + return EXIT_FAILURE; + } + + optind++; } return EXIT_SUCCESS; @@ -62,9 +79,6 @@ void options_parse(int argc, char *argv[]) { {(OPTIONSTRING)"version", no_argument, NULL, OPT_VERSION}, {(OPTIONSTRING)"help", no_argument, NULL, OPT_HELP}, - {(OPTIONSTRING)"quiet", no_argument, NULL, OPT_QUIET}, - {(OPTIONSTRING)"verbose", no_argument, &opt_verbose, OPT_VERBOSE}, - {(OPTIONSTRING)"debug", no_argument, &opt_verbose, OPT_DEBUG}, {0, 0, 0, 0}, }; @@ -84,14 +98,6 @@ void options_parse(int argc, char *argv[]) case 0: break; - case OPT_VERBOSE: /* --verbose or -v */ - opt_verbose = OPT_VERBOSE; - break; - - case OPT_DEBUG: /* --debug or -d */ - opt_verbose = OPT_DEBUG; - break; - case OPT_VERSION: /* --version or -V */ opt_version= true; break; @@ -100,16 +106,12 @@ void options_parse(int argc, char *argv[]) opt_help= true; break; - case OPT_QUIET: - close_stdio(); - break; - case '?': /* getopt_long already printed an error message. */ exit(EXIT_FAILURE); default: - abort(); + exit(EXIT_FAILURE); } }