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.
12 #include "mem_config.h"
21 #include <libmemcached-1.0/memcached.h>
22 #include "client_options.h"
23 #include "utilities.h"
25 static int opt_binary
= 0;
26 static int opt_verbose
= 0;
27 static time_t opt_expire
= 0;
28 static char *opt_servers
= NULL
;
29 static char *opt_username
;
30 static char *opt_passwd
;
32 #define PROGRAM_NAME "memflush"
33 #define PROGRAM_DESCRIPTION "Erase all data in a server of memcached servers."
36 void options_parse(int argc
, char *argv
[]);
38 int main(int argc
, char *argv
[])
40 options_parse(argc
, argv
);
42 if (opt_servers
== false)
46 if ((temp
= getenv("MEMCACHED_SERVERS")))
48 opt_servers
= strdup(temp
);
52 std::cerr
<< "No Servers provided" << std::endl
;
57 memcached_st
*memc
= memcached_create(NULL
);
59 memcached_server_st
*servers
= memcached_servers_parse(opt_servers
);
60 memcached_server_push(memc
, servers
);
61 memcached_server_list_free(servers
);
62 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
,
63 (uint64_t) opt_binary
);
65 if (opt_username
and LIBMEMCACHED_WITH_SASL_SUPPORT
== 0)
68 std::cerr
<< "--username was supplied, but binary was not built with SASL support." << std::endl
;
74 memcached_return_t ret
;
75 if (memcached_failed(ret
= memcached_set_sasl_auth_data(memc
, opt_username
, opt_passwd
)))
77 std::cerr
<< memcached_last_error_message(memc
) << std::endl
;
83 memcached_return_t rc
= memcached_flush(memc
, opt_expire
);
84 if (rc
!= MEMCACHED_SUCCESS
)
86 std::cerr
<< memcached_last_error_message(memc
) << std::endl
;
97 void options_parse(int argc
, char *argv
[])
99 static struct option long_options
[]=
101 {(OPTIONSTRING
)"version", no_argument
, NULL
, OPT_VERSION
},
102 {(OPTIONSTRING
)"help", no_argument
, NULL
, OPT_HELP
},
103 {(OPTIONSTRING
)"quiet", no_argument
, NULL
, OPT_QUIET
},
104 {(OPTIONSTRING
)"verbose", no_argument
, &opt_verbose
, OPT_VERBOSE
},
105 {(OPTIONSTRING
)"debug", no_argument
, &opt_verbose
, OPT_DEBUG
},
106 {(OPTIONSTRING
)"servers", required_argument
, NULL
, OPT_SERVERS
},
107 {(OPTIONSTRING
)"expire", required_argument
, NULL
, OPT_EXPIRE
},
108 {(OPTIONSTRING
)"binary", no_argument
, NULL
, OPT_BINARY
},
109 {(OPTIONSTRING
)"username", required_argument
, NULL
, OPT_USERNAME
},
110 {(OPTIONSTRING
)"password", required_argument
, NULL
, OPT_PASSWD
},
114 bool opt_version
= false;
115 bool opt_help
= false;
119 int option_rv
= getopt_long(argc
, argv
, "Vhvds:", long_options
, &option_index
);
120 if (option_rv
== -1) break;
130 case OPT_VERBOSE
: /* --verbose or -v */
131 opt_verbose
= OPT_VERBOSE
;
134 case OPT_DEBUG
: /* --debug or -d */
135 opt_verbose
= OPT_DEBUG
;
138 case OPT_VERSION
: /* --version or -V */
142 case OPT_HELP
: /* --help or -h */
146 case OPT_SERVERS
: /* --servers or -s */
147 opt_servers
= strdup(optarg
);
150 case OPT_EXPIRE
: /* --expire */
152 opt_expire
= (time_t)strtoll(optarg
, (char **)NULL
, 10);
155 std::cerr
<< "Incorrect value passed to --expire: `" << optarg
<< "`" << std::cerr
;
161 opt_username
= optarg
;
173 /* getopt_long already printed an error message. */
183 version_command(PROGRAM_NAME
);
189 help_command(PROGRAM_NAME
, PROGRAM_DESCRIPTION
, long_options
, NULL
);