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"
20 #include <libmemcached-1.0/memcached.h>
21 #include "client_options.h"
22 #include "utilities.h"
24 static int opt_binary
= 0;
25 static int opt_verbose
= 0;
26 static time_t opt_expire
= 0;
27 static char *opt_servers
= NULL
;
28 static char *opt_username
;
29 static char *opt_passwd
;
31 #define PROGRAM_NAME "memflush"
32 #define PROGRAM_DESCRIPTION "Erase all data in a server of memcached servers."
35 void options_parse(int argc
, char *argv
[]);
37 int main(int argc
, char *argv
[])
39 options_parse(argc
, argv
);
41 if (opt_servers
== false)
45 if ((temp
= getenv("MEMCACHED_SERVERS")))
47 opt_servers
= strdup(temp
);
51 std::cerr
<< "No Servers provided" << std::endl
;
56 memcached_st
*memc
= memcached_create(NULL
);
58 memcached_server_st
*servers
= memcached_servers_parse(opt_servers
);
59 memcached_server_push(memc
, servers
);
60 memcached_server_list_free(servers
);
61 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
,
62 (uint64_t) opt_binary
);
64 if (opt_username
and LIBMEMCACHED_WITH_SASL_SUPPORT
== 0)
67 std::cerr
<< "--username was supplied, but binary was not built with SASL support." << std::endl
;
73 memcached_return_t ret
;
74 if (memcached_failed(ret
= memcached_set_sasl_auth_data(memc
, opt_username
, opt_passwd
)))
76 std::cerr
<< memcached_last_error_message(memc
) << std::endl
;
82 memcached_return_t rc
= memcached_flush(memc
, opt_expire
);
83 if (rc
!= MEMCACHED_SUCCESS
)
85 std::cerr
<< memcached_last_error_message(memc
) << std::endl
;
96 void options_parse(int argc
, char *argv
[])
98 static struct option long_options
[]=
100 {(OPTIONSTRING
)"version", no_argument
, NULL
, OPT_VERSION
},
101 {(OPTIONSTRING
)"help", no_argument
, NULL
, OPT_HELP
},
102 {(OPTIONSTRING
)"quiet", no_argument
, NULL
, OPT_QUIET
},
103 {(OPTIONSTRING
)"verbose", no_argument
, &opt_verbose
, OPT_VERBOSE
},
104 {(OPTIONSTRING
)"debug", no_argument
, &opt_verbose
, OPT_DEBUG
},
105 {(OPTIONSTRING
)"servers", required_argument
, NULL
, OPT_SERVERS
},
106 {(OPTIONSTRING
)"expire", required_argument
, NULL
, OPT_EXPIRE
},
107 {(OPTIONSTRING
)"binary", no_argument
, NULL
, OPT_BINARY
},
108 {(OPTIONSTRING
)"username", required_argument
, NULL
, OPT_USERNAME
},
109 {(OPTIONSTRING
)"password", required_argument
, NULL
, OPT_PASSWD
},
113 bool opt_version
= false;
114 bool opt_help
= false;
118 int option_rv
= getopt_long(argc
, argv
, "Vhvds:", long_options
, &option_index
);
119 if (option_rv
== -1) break;
129 case OPT_VERBOSE
: /* --verbose or -v */
130 opt_verbose
= OPT_VERBOSE
;
133 case OPT_DEBUG
: /* --debug or -d */
134 opt_verbose
= OPT_DEBUG
;
137 case OPT_VERSION
: /* --version or -V */
141 case OPT_HELP
: /* --help or -h */
145 case OPT_SERVERS
: /* --servers or -s */
146 opt_servers
= strdup(optarg
);
149 case OPT_EXPIRE
: /* --expire */
150 opt_expire
= (time_t)strtoll(optarg
, (char **)NULL
, 10);
154 opt_username
= optarg
;
166 /* getopt_long already printed an error message. */
176 version_command(PROGRAM_NAME
);
182 help_command(PROGRAM_NAME
, PROGRAM_DESCRIPTION
, long_options
, NULL
);