X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=clients%2Fmemcat.c;h=3f0d92b4af6e8afceab649e74950ad89a59c1470;hb=6bc6cf720913ae042f36e62e09abce7d340607ab;hp=3ae82e460188ef0ef76a20369db04af2aa408f83;hpb=26c65ac524f21cd73a79f3caf45cdb76c9a41bc0;p=awesomized%2Flibmemcached diff --git a/clients/memcat.c b/clients/memcat.c index 3ae82e46..3f0d92b4 100644 --- a/clients/memcat.c +++ b/clients/memcat.c @@ -9,7 +9,8 @@ * */ -#include "libmemcached/common.h" +#include "config.h" + #include #include #include @@ -33,6 +34,7 @@ static char *opt_servers= NULL; static char *opt_hash= NULL; static char *opt_username; static char *opt_passwd; +static char *opt_file; int main(int argc, char *argv[]) { @@ -46,6 +48,7 @@ int main(int argc, char *argv[]) int return_code= 0; options_parse(argc, argv); + initialize_sockets(); if (!opt_servers) { @@ -73,7 +76,7 @@ int main(int argc, char *argv[]) if (!initialize_sasl(memc, opt_username, opt_passwd)) { memcached_free(memc); - return 1; + return EXIT_FAILURE; } while (optind < argc) @@ -91,9 +94,43 @@ int main(int argc, char *argv[]) else { if (opt_verbose) + { printf("key: %s\nflags: %x\nlength: %zu\nvalue: ", argv[optind], flags, string_length); - printf("%.*s\n", (int)string_length, string); + } + + if (opt_file) + { + FILE *fp; + size_t written; + + fp= fopen(opt_file, "w"); + if (!fp) + { + perror("fopen"); + return_code= -1; + break; + } + + written= fwrite(string, 1, string_length, fp); + if (written != string_length) + { + fprintf(stderr, "error writing file (written %zu, should be %zu)\n", written, string_length); + return_code= -1; + break; + } + + if (fclose(fp)) + { + fprintf(stderr, "error closing file\n"); + return_code= -1; + break; + } + } + else + { + printf("%.*s\n", (int)string_length, string); + } free(string); } } @@ -101,8 +138,10 @@ int main(int argc, char *argv[]) { fprintf(stderr, "memcat: %s: memcache error %s", argv[optind], memcached_strerror(memc, rc)); - if (memc->cached_errno) - fprintf(stderr, " system error %s", strerror(memc->cached_errno)); + if (memcached_last_error_errno(memc)) + { + fprintf(stderr, " system error %s", strerror(memcached_last_error_errno(memc))); + } fprintf(stderr, "\n"); return_code= -1; @@ -151,6 +190,7 @@ void options_parse(int argc, char *argv[]) {(OPTIONSTRING)"binary", no_argument, NULL, OPT_BINARY}, {(OPTIONSTRING)"username", required_argument, NULL, OPT_USERNAME}, {(OPTIONSTRING)"password", required_argument, NULL, OPT_PASSWD}, + {(OPTIONSTRING)"file", required_argument, NULL, OPT_FILE}, {0, 0, 0, 0}, }; @@ -189,6 +229,9 @@ void options_parse(int argc, char *argv[]) case OPT_PASSWD: opt_passwd= optarg; break; + case OPT_FILE: + opt_file= optarg; + break; case '?': /* getopt_long already printed an error message. */ exit(1);