1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3 * Data Differential YATL (i.e. libtest) library
5 * Copyright (C) 2012 Data Differential, http://datadifferential.com/
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following disclaimer
16 * in the documentation and/or other materials provided with the
19 * * The names of its contributors may not be used to endorse or
20 * promote products derived from this software without specific prior
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 #include <libtest/common.h>
50 static inline std::string
&rtrim(std::string
&s
)
52 s
.erase(std::find_if(s
.rbegin(), s
.rend(), std::not1(std::ptr_fun
<int, int>(std::isspace
))).base(), s
.end());
58 void server_startup_st::push_server(Server
*arg
)
60 servers
.push_back(arg
);
62 char port_str
[NI_MAXSERV
];
63 snprintf(port_str
, sizeof(port_str
), "%u", int(arg
->port()));
65 std::string server_config_string
;
66 if (arg
->has_socket())
68 server_config_string
+= "--socket=";
69 server_config_string
+= '"';
70 server_config_string
+= arg
->socket();
71 server_config_string
+= '"';
72 server_config_string
+= " ";
76 server_config_string
+= "--server=";
77 server_config_string
+= arg
->hostname();
78 server_config_string
+= ":";
79 server_config_string
+= port_str
;
80 server_config_string
+= " ";
83 server_list
+= server_config_string
;
87 Server
* server_startup_st::pop_server()
89 Server
*tmp
= servers
.back();
94 // host_to_shutdown => host number to shutdown in array
95 bool server_startup_st::shutdown(uint32_t host_to_shutdown
)
97 if (servers
.size() > host_to_shutdown
)
99 Server
* tmp
= servers
[host_to_shutdown
];
101 if (tmp
and tmp
->kill() == false)
112 void server_startup_st::clear()
114 for (std::vector
<Server
*>::iterator iter
= servers
.begin(); iter
!= servers
.end(); iter
++)
121 bool server_startup_st::check() const
124 for (std::vector
<Server
*>::const_iterator iter
= servers
.begin(); iter
!= servers
.end(); iter
++)
126 if ((*iter
)->check() == false)
135 bool server_startup_st::shutdown()
138 for (std::vector
<Server
*>::iterator iter
= servers
.begin(); iter
!= servers
.end(); iter
++)
140 if ((*iter
)->has_pid() and (*iter
)->kill() == false)
142 Error
<< "Unable to kill:" << *(*iter
);
150 void server_startup_st::restart()
152 for (std::vector
<Server
*>::iterator iter
= servers
.begin(); iter
!= servers
.end(); iter
++)
158 #define MAGIC_MEMORY 123575
159 server_startup_st::server_startup_st() :
160 _magic(MAGIC_MEMORY
),
168 server_startup_st::~server_startup_st()
173 bool server_startup_st::validate()
175 return _magic
== MAGIC_MEMORY
;
178 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
)
182 throw libtest::fatal(LIBYATL_DEFAULT_PARAM
, "was passed the invalid port number %d", int(try_port
));
185 libtest::Server
*server
= NULL
;
188 else if (server_type
.compare("gearmand") == 0)
194 server
= build_gearmand("localhost", try_port
);
198 else if (server_type
.compare("drizzled") == 0)
204 server
= build_drizzled("localhost", try_port
);
208 else if (server_type
.compare("blobslap_worker") == 0)
212 if (GEARMAND_BLOBSLAP_WORKER
)
216 server
= build_blobslap_worker(try_port
);
221 else if (server_type
.compare("memcached-sasl") == 0)
223 if (MEMCACHED_SASL_BINARY
)
225 if (HAVE_LIBMEMCACHED
)
227 server
= build_memcached_sasl("localhost", try_port
, construct
.username(), construct
.password());
231 else if (server_type
.compare("memcached") == 0)
233 if (MEMCACHED_BINARY
)
235 if (HAVE_LIBMEMCACHED
)
237 server
= build_memcached("localhost", try_port
);
241 else if (server_type
.compare("memcached-light") == 0)
243 if (MEMCACHED_LIGHT_BINARY
)
245 if (HAVE_LIBMEMCACHED
)
247 server
= build_memcached_light("localhost", try_port
);
254 fatal_message("Launching of an unknown server was attempted");
258 We will now cycle the server we have created.
260 if (server
->cycle() == false)
262 Error
<< "Could not start up server " << *server
;
267 server
->build(argc
, argv
);
271 Out
<< "Pausing for startup, hit return when ready.";
272 std::string gdb_command
= server
->base_command();
275 Out
<< "run " << server
->args(options
);
279 else if (server
->start() == false)
286 if (opt_startup_message
)
289 Out
<< "STARTING SERVER(pid:" << server
->pid() << "): " << server
->running();
294 construct
.push_server(server
);
299 bool server_startup_st::start_socket_server(const std::string
& server_type
, const in_port_t try_port
, int argc
, const char *argv
[])
304 Server
*server
= NULL
;
307 else if (server_type
.compare("gearmand") == 0)
309 Error
<< "Socket files are not supported for gearmand yet";
311 else if (server_type
.compare("memcached-sasl") == 0)
313 if (MEMCACHED_SASL_BINARY
)
315 if (HAVE_LIBMEMCACHED
)
317 server
= build_memcached_sasl_socket("localhost", try_port
, username(), password());
321 Error
<< "Libmemcached was not found";
326 Error
<< "No memcached binary is available";
329 else if (server_type
.compare("memcached") == 0)
331 if (MEMCACHED_BINARY
)
333 if (HAVE_LIBMEMCACHED
)
335 server
= build_memcached_socket("localhost", try_port
);
339 Error
<< "Libmemcached was not found";
344 Error
<< "No memcached binary is available";
349 Error
<< "Failed to start " << server_type
<< ", no support was found to be compiled in for it.";
354 Error
<< "Failure occured while creating server: " << server_type
;
359 We will now cycle the server we have created.
361 if (server
->cycle() == false)
363 Error
<< "Could not start up server " << *server
;
368 server
->build(argc
, argv
);
372 Out
<< "Pausing for startup, hit return when ready.";
373 std::string gdb_command
= server
->base_command();
376 Out
<< "run " << server
->args(options
);
380 else if (server
->start() == false)
382 Error
<< "Failed to start " << *server
;
388 Out
<< "STARTING SERVER(pid:" << server
->pid() << "): " << server
->running();
393 set_default_socket(server
->socket().c_str());
400 std::string
server_startup_st::option_string() const
402 std::string temp
= server_list
;
408 } // namespace libtest