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
23 #include <libtest/common.h>
35 static inline std::string
&rtrim(std::string
&s
)
37 s
.erase(std::find_if(s
.rbegin(), s
.rend(), std::not1(std::ptr_fun
<int, int>(std::isspace
))).base(), s
.end());
43 void server_startup_st::push_server(Server
*arg
)
45 servers
.push_back(arg
);
47 char port_str
[NI_MAXSERV
];
48 snprintf(port_str
, sizeof(port_str
), "%u", int(arg
->port()));
50 std::string server_config_string
;
51 if (arg
->has_socket())
53 server_config_string
+= "--socket=";
54 server_config_string
+= '"';
55 server_config_string
+= arg
->socket();
56 server_config_string
+= '"';
57 server_config_string
+= " ";
61 server_config_string
+= "--server=";
62 server_config_string
+= arg
->hostname();
63 server_config_string
+= ":";
64 server_config_string
+= port_str
;
65 server_config_string
+= " ";
68 server_list
+= server_config_string
;
72 Server
* server_startup_st::pop_server()
74 Server
*tmp
= servers
.back();
79 bool server_startup_st::shutdown(uint32_t number_of_host
)
81 if (servers
.size() > number_of_host
)
83 Server
* tmp
= servers
[number_of_host
];
85 if (tmp
and tmp
->has_pid() and tmp
->kill() == false)
96 void server_startup_st::shutdown_and_remove()
98 for (std::vector
<Server
*>::iterator iter
= servers
.begin(); iter
!= servers
.end(); iter
++)
105 bool server_startup_st::check() const
108 for (std::vector
<Server
*>::const_iterator iter
= servers
.begin(); iter
!= servers
.end(); iter
++)
110 if ((*iter
)->check() == false)
119 bool server_startup_st::shutdown()
122 for (std::vector
<Server
*>::iterator iter
= servers
.begin(); iter
!= servers
.end(); iter
++)
124 if ((*iter
)->has_pid() and (*iter
)->kill() == false)
126 Error
<< "Unable to kill:" << *(*iter
);
134 void server_startup_st::restart()
136 for (std::vector
<Server
*>::iterator iter
= servers
.begin(); iter
!= servers
.end(); iter
++)
142 #define MAGIC_MEMORY 123575
143 server_startup_st::server_startup_st() :
144 _magic(MAGIC_MEMORY
),
152 server_startup_st::~server_startup_st()
154 shutdown_and_remove();
157 bool server_startup_st::validate()
159 return _magic
== MAGIC_MEMORY
;
162 bool server_startup(server_startup_st
& construct
, const std::string
& server_type
, in_port_t try_port
, int argc
, const char *argv
[], const bool opt_startup_message
)
166 throw libtest::fatal(LIBYATL_DEFAULT_PARAM
, "was passed the invalid port number %d", int(try_port
));
169 libtest::Server
*server
= NULL
;
172 else if (server_type
.compare("gearmand") == 0)
178 server
= build_gearmand("localhost", try_port
);
182 else if (server_type
.compare("blobslap_worker") == 0)
186 if (GEARMAND_BLOBSLAP_WORKER
)
190 server
= build_blobslap_worker(try_port
);
195 else if (server_type
.compare("memcached-sasl") == 0)
197 if (MEMCACHED_SASL_BINARY
)
199 if (HAVE_LIBMEMCACHED
)
201 server
= build_memcached_sasl("localhost", try_port
, construct
.username(), construct
.password());
205 else if (server_type
.compare("memcached") == 0)
207 if (MEMCACHED_BINARY
)
209 if (HAVE_LIBMEMCACHED
)
211 server
= build_memcached("localhost", try_port
);
215 else if (server_type
.compare("memcached-light") == 0)
217 if (MEMCACHED_LIGHT_BINARY
)
219 if (HAVE_LIBMEMCACHED
)
221 server
= build_memcached_light("localhost", try_port
);
228 fatal_message("Launching of an unknown server was attempted");
232 We will now cycle the server we have created.
234 if (server
->cycle() == false)
236 Error
<< "Could not start up server " << *server
;
241 server
->build(argc
, argv
);
243 if (gdb_is_caller() and false)
245 Out
<< "Pausing for startup, hit return when ready.";
246 std::string gdb_command
= server
->base_command();
249 Out
<< "run " << server
->args(options
);
253 else if (server
->start() == false)
260 if (opt_startup_message
)
263 Out
<< "STARTING SERVER(pid:" << server
->pid() << "): " << server
->running();
268 construct
.push_server(server
);
273 bool server_startup_st::start_socket_server(const std::string
& server_type
, const in_port_t try_port
, int argc
, const char *argv
[])
278 Server
*server
= NULL
;
281 else if (server_type
.compare("gearmand") == 0)
283 Error
<< "Socket files are not supported for gearmand yet";
285 else if (server_type
.compare("memcached-sasl") == 0)
287 if (MEMCACHED_SASL_BINARY
)
289 if (HAVE_LIBMEMCACHED
)
291 server
= build_memcached_sasl_socket("localhost", try_port
, username(), password());
295 Error
<< "Libmemcached was not found";
300 Error
<< "No memcached binary is available";
303 else if (server_type
.compare("memcached") == 0)
305 if (MEMCACHED_BINARY
)
307 if (HAVE_LIBMEMCACHED
)
309 server
= build_memcached_socket("localhost", try_port
);
313 Error
<< "Libmemcached was not found";
318 Error
<< "No memcached binary is available";
323 Error
<< "Failed to start " << server_type
<< ", no support was found to be compiled in for it.";
328 Error
<< "Failure occured while creating server: " << server_type
;
333 We will now cycle the server we have created.
335 if (server
->cycle() == false)
337 Error
<< "Could not start up server " << *server
;
342 server
->build(argc
, argv
);
344 if (gdb_is_caller() and false)
346 Out
<< "Pausing for startup, hit return when ready.";
347 std::string gdb_command
= server
->base_command();
350 Out
<< "run " << server
->args(options
);
354 else if (server
->start() == false)
356 Error
<< "Failed to start " << *server
;
362 Out
<< "STARTING SERVER(pid:" << server
->pid() << "): " << server
->running();
367 set_default_socket(server
->socket().c_str());
374 std::string
server_startup_st::option_string() const
376 std::string temp
= server_list
;
382 } // namespace libtest