2 * Copyright (C) 2011-2012 Data Differential, http://datadifferential.com/
3 * Copyright (C) 2006-2009 Brian Aker
6 * Use and distribution licensed under the BSD license. See
7 * the COPYING file in the parent directory for full text.
13 #include "mem_config.h"
24 #include <sys/types.h>
25 #include <sys/types.h>
28 #include <libmemcached-1.0/memcached.h>
30 #include "client_options.h"
31 #include "utilities.h"
33 #define PROGRAM_NAME "memdump"
34 #define PROGRAM_DESCRIPTION "Dump all values from one or many servers."
37 static void options_parse(int argc
, char *argv
[]);
39 static bool opt_binary
=0;
40 static int opt_verbose
= 0;
41 static char *opt_servers
= NULL
;
42 static char *opt_hash
= NULL
;
43 static char *opt_username
;
44 static char *opt_passwd
;
46 /* Print the keys and counter how many were found */
47 static memcached_return_t
key_printer(const memcached_st
*,
48 const char *key
, size_t key_length
,
51 std::cout
.write(key
, key_length
);
52 std::cout
<< std::endl
;
54 return MEMCACHED_SUCCESS
;
57 int main(int argc
, char *argv
[])
59 memcached_dump_fn callbacks
[1];
61 callbacks
[0]= &key_printer
;
63 options_parse(argc
, argv
);
65 memcached_st
*memc
= memcached_create(NULL
);
66 process_hash_option(memc
, opt_hash
);
68 if (opt_servers
== NULL
)
72 if ((temp
= getenv("MEMCACHED_SERVERS")))
74 opt_servers
= strdup(temp
);
78 std::cerr
<< "No Servers provided" << std::endl
;
83 memcached_server_st
*servers
;
86 servers
= memcached_servers_parse(opt_servers
);
90 servers
= memcached_servers_parse(argv
[--argc
]);
93 memcached_server_push(memc
, servers
);
94 memcached_server_list_free(servers
);
95 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
,
96 (uint64_t)opt_binary
);
98 if (opt_username
and LIBMEMCACHED_WITH_SASL_SUPPORT
== 0)
100 memcached_free(memc
);
101 std::cerr
<< "--username was supplied, but binary was not built with SASL support." << std::endl
;
107 memcached_return_t ret
;
108 if (memcached_failed(ret
= memcached_set_sasl_auth_data(memc
, opt_username
, opt_passwd
)))
110 std::cerr
<< memcached_last_error_message(memc
) << std::endl
;
111 memcached_free(memc
);
116 memcached_return_t rc
= memcached_dump(memc
, callbacks
, NULL
, 1);
118 int exit_code
= EXIT_SUCCESS
;
119 if (memcached_failed(rc
))
123 std::cerr
<< "Failed to dump keys: " << memcached_last_error_message(memc
) << std::endl
;
125 exit_code
= EXIT_FAILURE
;
128 memcached_free(memc
);
142 static void options_parse(int argc
, char *argv
[])
144 static struct option long_options
[]=
146 {(OPTIONSTRING
)"version", no_argument
, NULL
, OPT_VERSION
},
147 {(OPTIONSTRING
)"help", no_argument
, NULL
, OPT_HELP
},
148 {(OPTIONSTRING
)"quiet", no_argument
, NULL
, OPT_QUIET
},
149 {(OPTIONSTRING
)"verbose", no_argument
, &opt_verbose
, OPT_VERBOSE
},
150 {(OPTIONSTRING
)"debug", no_argument
, &opt_verbose
, OPT_DEBUG
},
151 {(OPTIONSTRING
)"servers", required_argument
, NULL
, OPT_SERVERS
},
152 {(OPTIONSTRING
)"hash", required_argument
, NULL
, OPT_HASH
},
153 {(OPTIONSTRING
)"binary", no_argument
, NULL
, OPT_BINARY
},
154 {(OPTIONSTRING
)"username", required_argument
, NULL
, OPT_USERNAME
},
155 {(OPTIONSTRING
)"password", required_argument
, NULL
, OPT_PASSWD
},
160 bool opt_version
= false;
161 bool opt_help
= false;
164 int option_rv
= getopt_long(argc
, argv
, "Vhvds:", long_options
, &option_index
);
166 if (option_rv
== -1) break;
177 case OPT_VERBOSE
: /* --verbose or -v */
178 opt_verbose
= OPT_VERBOSE
;
181 case OPT_DEBUG
: /* --debug or -d */
182 opt_verbose
= OPT_DEBUG
;
185 case OPT_VERSION
: /* --version or -V */
189 case OPT_HELP
: /* --help or -h */
193 case OPT_SERVERS
: /* --servers or -s */
194 opt_servers
= strdup(optarg
);
198 opt_hash
= strdup(optarg
);
202 opt_username
= optarg
;
214 /* getopt_long already printed an error message. */
223 version_command(PROGRAM_NAME
);
229 help_command(PROGRAM_NAME
, PROGRAM_DESCRIPTION
, long_options
, NULL
);