X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=clients%2Fmemcat.c;h=f50b069dc53844095fe6a4c17a188eaafca8fb62;hb=b539fd56a235cfbbdd12ebc64c66686b518573d0;hp=3ae82e460188ef0ef76a20369db04af2aa408f83;hpb=26c65ac524f21cd73a79f3caf45cdb76c9a41bc0;p=awesomized%2Flibmemcached diff --git a/clients/memcat.c b/clients/memcat.c index 3ae82e46..f50b069d 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[]) { @@ -91,9 +93,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); } } @@ -102,7 +138,9 @@ 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)); + } fprintf(stderr, "\n"); return_code= -1; @@ -151,6 +189,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 +228,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);