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
22 #include <libtest/common.h>
34 static inline std::string
&rtrim(std::string
&s
)
36 s
.erase(std::find_if(s
.rbegin(), s
.rend(), std::not1(std::ptr_fun
<int, int>(std::isspace
))).base(), s
.end());
42 void server_startup_st::push_server(Server
*arg
)
44 servers
.push_back(arg
);
46 char port_str
[NI_MAXSERV
];
47 snprintf(port_str
, sizeof(port_str
), "%u", int(arg
->port()));
49 std::string server_config_string
;
50 if (arg
->has_socket())
52 server_config_string
+= "--socket=";
53 server_config_string
+= '"';
54 server_config_string
+= arg
->socket();
55 server_config_string
+= '"';
56 server_config_string
+= " ";
60 server_config_string
+= "--server=";
61 server_config_string
+= arg
->hostname();
62 server_config_string
+= ":";
63 server_config_string
+= port_str
;
64 server_config_string
+= " ";
67 server_list
+= server_config_string
;
71 Server
* server_startup_st::pop_server()
73 Server
*tmp
= servers
.back();
78 bool server_startup_st::shutdown(uint32_t number_of_host
)
80 assert(servers
.size() > 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 not tmp
->kill(tmp
->pid()))
96 void server_startup_st::shutdown_and_remove()
98 for (std::vector
<Server
*>::iterator iter
= servers
.begin(); iter
!= servers
.end(); iter
++)
105 void server_startup_st::shutdown()
107 for (std::vector
<Server
*>::iterator iter
= servers
.begin(); iter
!= servers
.end(); iter
++)
109 if ((*iter
)->has_pid() and not (*iter
)->kill((*iter
)->pid()))
111 Error
<< "Unable to kill:" << *(*iter
);
116 void server_startup_st::restart()
118 for (std::vector
<Server
*>::iterator iter
= servers
.begin(); iter
!= servers
.end(); iter
++)
124 server_startup_st::~server_startup_st()
126 shutdown_and_remove();
129 bool server_startup_st::is_debug() const
131 return bool(getenv("LIBTEST_MANUAL_GDB"));
134 bool server_startup_st::is_valgrind() const
136 return bool(getenv("LIBTEST_MANUAL_VALGRIND"));
139 bool server_startup_st::is_helgrind() const
141 return bool(getenv("LIBTEST_MANUAL_HELGRIND"));
145 bool server_startup(server_startup_st
& construct
, const std::string
& server_type
, in_port_t try_port
, int argc
, const char *argv
[])
150 set_max_port(try_port
);
152 // Look to see if we are being provided ports to use
154 char variable_buffer
[1024];
155 snprintf(variable_buffer
, sizeof(variable_buffer
), "LIBTEST_PORT_%lu", (unsigned long)construct
.count());
158 if ((var
= getenv(variable_buffer
)))
160 in_port_t tmp
= in_port_t(atoi(var
));
167 libtest::Server
*server
= NULL
;
170 else if (server_type
.compare("gearmand") == 0)
176 server
= build_gearmand("localhost", try_port
);
180 Error
<< "Libgearman was not found";
185 Error
<< "No gearmand binary is available";
188 else if (server_type
.compare("blobslap_worker") == 0)
190 if (GEARMAND_BINARY
and GEARMAND_BLOBSLAP_WORKER
)
194 server
= build_blobslap_worker(try_port
);
198 Error
<< "Libgearman was not found";
203 Error
<< "No gearmand binary is available";
206 else if (server_type
.compare("memcached-sasl") == 0)
208 if (MEMCACHED_SASL_BINARY
)
210 if (HAVE_LIBMEMCACHED
)
212 server
= build_memcached_sasl("localhost", try_port
, construct
.username(), construct
.password());
216 Error
<< "Libmemcached was not found";
221 Error
<< "No memcached binary that was compiled with sasl is available";
224 else if (server_type
.compare("memcached") == 0)
226 if (MEMCACHED_BINARY
)
228 if (HAVE_LIBMEMCACHED
)
230 server
= build_memcached("localhost", try_port
);
234 Error
<< "Libmemcached was not found";
239 Error
<< "No memcached binary is available";
244 Error
<< "Failed to start " << server_type
<< ", no support was found to be compiled in for it.";
249 Error
<< "Failure occured while creating server: " << server_type
;
254 We will now cycle the server we have created.
256 if (not server
->cycle())
258 Error
<< "Could not start up server " << *server
;
263 server
->build(argc
, argv
);
265 if (construct
.is_debug())
267 Out
<< "Pausing for startup, hit return when ready.";
268 std::string gdb_command
= server
->base_command();
270 Out
<< "run " << server
->args(options
);
273 else if (not server
->start())
275 Error
<< "Failed to start " << *server
;
281 Out
<< "STARTING SERVER(pid:" << server
->pid() << "): " << server
->running();
284 construct
.push_server(server
);
286 if (default_port() == 0)
288 assert(server
->has_port());
289 set_default_port(server
->port());
297 bool server_startup_st::start_socket_server(const std::string
& server_type
, const in_port_t try_port
, int argc
, const char *argv
[])
302 Server
*server
= NULL
;
305 else if (server_type
.compare("gearmand") == 0)
307 Error
<< "Socket files are not supported for gearmand yet";
309 else if (server_type
.compare("memcached-sasl") == 0)
311 if (MEMCACHED_SASL_BINARY
)
313 if (HAVE_LIBMEMCACHED
)
315 server
= build_memcached_sasl_socket("localhost", try_port
, username(), password());
319 Error
<< "Libmemcached was not found";
324 Error
<< "No memcached binary is available";
327 else if (server_type
.compare("memcached") == 0)
329 if (MEMCACHED_BINARY
)
331 if (HAVE_LIBMEMCACHED
)
333 server
= build_memcached_socket("localhost", try_port
);
337 Error
<< "Libmemcached was not found";
342 Error
<< "No memcached binary is available";
347 Error
<< "Failed to start " << server_type
<< ", no support was found to be compiled in for it.";
352 Error
<< "Failure occured while creating server: " << server_type
;
357 We will now cycle the server we have created.
359 if (not server
->cycle())
361 Error
<< "Could not start up server " << *server
;
366 server
->build(argc
, argv
);
370 Out
<< "Pausing for startup, hit return when ready.";
371 std::string gdb_command
= server
->base_command();
373 Out
<< "run " << server
->args(options
);
376 else if (not server
->start())
378 Error
<< "Failed to start " << *server
;
384 Out
<< "STARTING SERVER(pid:" << server
->pid() << "): " << server
->running();
389 set_default_socket(server
->socket().c_str());
396 std::string
server_startup_st::option_string() const
398 std::string temp
= server_list
;
404 } // namespace libtest