X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libtest%2Fserver_container.cc;h=b63cfbb4de6787719081091687ad788834086289;hb=1ad78a588c2899f9f42d5e51352e57ef6cdbdf8e;hp=d406c16e497a15591739a58977c5d24bb9d7f665;hpb=675ac17fddca229e391d80eb610959d9c53db6e5;p=m6w6%2Flibmemcached diff --git a/libtest/server_container.cc b/libtest/server_container.cc index d406c16e..b63cfbb4 100644 --- a/libtest/server_container.cc +++ b/libtest/server_container.cc @@ -104,26 +104,31 @@ void server_startup_st::shutdown_and_remove() bool server_startup_st::check() const { + bool success= true; for (std::vector::const_iterator iter= servers.begin(); iter != servers.end(); iter++) { if ((*iter)->check() == false) { - return false; + success= false; } } - return true; + return success; } -void server_startup_st::shutdown() +bool server_startup_st::shutdown() { + bool success= true; for (std::vector::iterator iter= servers.begin(); iter != servers.end(); iter++) { if ((*iter)->has_pid() and (*iter)->kill() == false) { Error << "Unable to kill:" << *(*iter); + success= false; } } + + return success; } void server_startup_st::restart() @@ -139,8 +144,9 @@ server_startup_st::server_startup_st() : _magic(MAGIC_MEMORY), _socket(false), _sasl(false), - _count(5), - udp(0) + _count(0), + udp(0), + _servers_to_run(5) { } server_startup_st::~server_startup_st() @@ -153,29 +159,11 @@ bool server_startup_st::validate() return _magic == MAGIC_MEMORY; } - -bool server_startup_st::is_debug() const -{ - return bool(getenv("LIBTEST_MANUAL_GDB")); -} - -bool server_startup_st::is_valgrind() const -{ - return bool(getenv("LIBTEST_MANUAL_VALGRIND")); -} - -bool server_startup_st::is_helgrind() const -{ - return bool(getenv("LIBTEST_MANUAL_HELGRIND")); -} - - -bool server_startup(server_startup_st& construct, const std::string& server_type, in_port_t try_port, int argc, const char *argv[]) +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) { - Outn(); if (try_port <= 0) { - libtest::fatal(LIBYATL_DEFAULT_PARAM, "was passed the invalid port number %d", int(try_port)); + throw libtest::fatal(LIBYATL_DEFAULT_PARAM, "was passed the invalid port number %d", int(try_port)); } libtest::Server *server= NULL; @@ -252,7 +240,7 @@ bool server_startup(server_startup_st& construct, const std::string& server_type server->build(argc, argv); - if (construct.is_debug()) + if (false) { Out << "Pausing for startup, hit return when ready."; std::string gdb_command= server->base_command(); @@ -269,13 +257,16 @@ bool server_startup(server_startup_st& construct, const std::string& server_type } else { - Out << "STARTING SERVER(pid:" << server->pid() << "): " << server->running(); + if (opt_startup_message) + { + Outn(); + Out << "STARTING SERVER(pid:" << server->pid() << "): " << server->running(); + Outn(); + } } construct.push_server(server); - Outn(); - return true; } @@ -350,7 +341,7 @@ bool server_startup_st::start_socket_server(const std::string& server_type, cons server->build(argc, argv); - if (is_debug()) + if (false) { Out << "Pausing for startup, hit return when ready."; std::string gdb_command= server->base_command(); @@ -360,7 +351,7 @@ bool server_startup_st::start_socket_server(const std::string& server_type, cons #endif getchar(); } - else if (not server->start()) + else if (server->start() == false) { Error << "Failed to start " << *server; delete server;