1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 3 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 #include <libtest/common.h>
26 #include <libmemcached-1.0/memcached.h>
27 #include <libmemcachedutil-1.0/util.h>
29 using namespace libtest
;
38 #include <sys/types.h>
42 #include <libtest/server.h>
43 #include <libtest/wait.h>
45 #include <libtest/memcached.h>
47 #ifndef __INTEL_COMPILER
48 #pragma GCC diagnostic ignored "-Wold-style-cast"
51 using namespace libtest
;
54 bool is_memcached_libtool()
56 if (MEMCACHED_BINARY
and strcmp(MEMCACHED_BINARY
, "memcached/memcached") == 0)
65 class Memcached
: public libtest::Server
67 std::string _username
;
68 std::string _password
;
71 Memcached(const std::string
& host_arg
,
72 const in_port_t port_arg
,
73 const bool is_socket_arg
,
74 const std::string
& username_arg
,
75 const std::string
& password_arg
) :
76 libtest::Server(host_arg
, port_arg
,
77 MEMCACHED_BINARY
, is_memcached_libtool(), is_socket_arg
),
78 _username(username_arg
),
79 _password(password_arg
)
82 Memcached(const std::string
& host_arg
, const in_port_t port_arg
, const bool is_socket_arg
) :
83 libtest::Server(host_arg
, port_arg
,
84 MEMCACHED_BINARY
, is_memcached_libtool(), is_socket_arg
)
89 virtual const char *sasl() const
94 const std::string
& password() const
99 const std::string
& username() const
104 bool wait_for_pidfile() const
108 return wait
.successful();
114 // Memcached is slow to start, so we need to do this
115 if (pid_file().empty() == false)
117 if (wait_for_pidfile() == false)
119 Error
<< "Pidfile was not found:" << pid_file() << " :" << running();
125 memcached_return_t rc
;
130 ret
= libmemcached_util_ping(socket().c_str(), 0, &rc
);
134 ret
= libmemcached_util_ping(hostname().c_str(), port(), &rc
);
137 if (memcached_failed(rc
) or not ret
)
139 Error
<< "libmemcached_util_ping(" << hostname() << ", " << port() << ") error: " << memcached_strerror(NULL
, rc
);
150 const char *executable()
152 return MEMCACHED_BINARY
;
157 return is_memcached_libtool();
160 virtual void pid_file_option(Application
& app
, const std::string
& arg
)
162 if (arg
.empty() == false)
164 app
.add_option("-P", arg
);
168 const char *socket_file_option() const
173 virtual void port_option(Application
& app
, in_port_t arg
)
176 snprintf(buffer
, sizeof(buffer
), "%d", int(arg
));
177 app
.add_option("-p", buffer
);
180 bool has_port_option() const
185 bool has_socket_file_option() const
190 void socket_file_option(Application
& app
, const std::string
& socket_arg
)
192 if (socket_arg
.empty() == false)
194 app
.add_option("-s", socket_arg
);
198 bool broken_socket_cleanup()
203 // Memcached's pidfile is broken
204 bool broken_pid_file()
209 bool build(size_t argc
, const char *argv
[]);
212 class MemcachedLight
: public libtest::Server
216 MemcachedLight(const std::string
& host_arg
, const in_port_t port_arg
) :
217 libtest::Server(host_arg
, port_arg
, MEMCACHED_LIGHT_BINARY
, true)
224 // Memcached is slow to start, so we need to do this
225 if (not pid_file().empty())
227 if (not wait_for_pidfile())
229 Error
<< "Pidfile was not found:" << pid_file();
234 std::stringstream error_message
;
235 pid_t local_pid
= get_pid_from_file(pid_file(), error_message
);
238 if (::kill(local_pid
, 0) == 0)
249 return "memcached_light";
252 const char *executable()
254 return MEMCACHED_LIGHT_BINARY
;
257 virtual void port_option(Application
& app
, in_port_t arg
)
260 snprintf(buffer
, sizeof(buffer
), "--port=%d", int(arg
));
261 app
.add_option(buffer
);
264 bool has_port_option() const
274 void log_file_option(Application
& app
, const std::string
& arg
)
276 if (arg
.empty() == false)
278 std::string
buffer("--log-file=");
280 app
.add_option("--verbose");
281 app
.add_option(buffer
);
285 bool has_log_file_option() const
290 bool build(size_t argc
, const char *argv
[]);
293 class MemcachedSaSL
: public Memcached
296 MemcachedSaSL(const std::string
& host_arg
,
297 const in_port_t port_arg
,
298 const bool is_socket_arg
,
299 const std::string
& username_arg
,
300 const std::string
&password_arg
) :
301 Memcached(host_arg
, port_arg
, is_socket_arg
, username_arg
, password_arg
)
306 return "memcached-sasl";
309 const char *sasl() const
311 return " -S -B binary ";
314 const char *executable()
316 return MEMCACHED_SASL_BINARY
;
321 // Memcached is slow to start, so we need to do this
322 if (pid_file().empty() == false)
324 if (wait_for_pidfile() == false)
326 Error
<< "Pidfile was not found:" << pid_file();
331 memcached_return_t rc
;
336 ret
= libmemcached_util_ping2(socket().c_str(), 0, username().c_str(), password().c_str(), &rc
);
340 ret
= libmemcached_util_ping2(hostname().c_str(), port(), username().c_str(), password().c_str(), &rc
);
343 if (memcached_failed(rc
) or ret
== false)
345 Error
<< "libmemcached_util_ping2(" << hostname() << ", " << port() << ", " << username() << ", " << password() << ") error: " << memcached_strerror(NULL
, rc
);
356 bool Memcached::build(size_t argc
, const char *argv
[])
358 std::stringstream arg_buffer
;
360 if (getuid() == 0 or geteuid() == 0)
362 add_option("-u", "root");
365 add_option("-l", "localhost");
366 add_option("-m", "128");
374 for (int x
= 0 ; x
< argc
; x
++)
382 bool MemcachedLight::build(size_t argc
, const char *argv
[])
384 for (size_t x
= 0 ; x
< argc
; x
++)
394 libtest::Server
*build_memcached(const std::string
& hostname
, const in_port_t try_port
)
396 return new Memcached(hostname
, try_port
, false);
399 libtest::Server
*build_memcached_socket(const std::string
& socket_file
, const in_port_t try_port
)
401 return new Memcached(socket_file
, try_port
, true);
404 libtest::Server
*build_memcached_light(const std::string
& hostname
, const in_port_t try_port
)
406 return new MemcachedLight(hostname
, try_port
);
410 libtest::Server
*build_memcached_sasl(const std::string
& hostname
, const in_port_t try_port
, const std::string
& username
, const std::string
&password
)
412 if (username
.empty())
414 return new MemcachedSaSL(hostname
, try_port
, false, "memcached", "memcached");
417 return new MemcachedSaSL(hostname
, try_port
, false, username
, password
);
420 libtest::Server
*build_memcached_sasl_socket(const std::string
& socket_file
, const in_port_t try_port
, const std::string
& username
, const std::string
&password
)
422 if (username
.empty())
424 return new MemcachedSaSL(socket_file
, try_port
, true, "memcached", "memcached");
427 return new MemcachedSaSL(socket_file
, try_port
, true, username
, password
);