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.
37 #include "libtest/yatlcon.h"
39 #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 Server
* server_startup_st::last()
60 return servers
.back();
63 void server_startup_st::push_server(Server
*arg
)
65 servers
.push_back(arg
);
67 std::string server_config_string
;
68 if (arg
->has_socket())
70 server_config_string
+= "--socket=";
71 server_config_string
+= '"';
72 server_config_string
+= arg
->socket();
73 server_config_string
+= '"';
74 server_config_string
+= " ";
78 libtest::vchar_t port_str
;
79 port_str
.resize(NI_MAXSERV
);
80 snprintf(&port_str
[0], port_str
.size(), "%u", int(arg
->port()));
82 server_config_string
+= "--server=";
83 server_config_string
+= arg
->hostname();
84 server_config_string
+= ":";
85 server_config_string
+= &port_str
[0];
86 server_config_string
+= " ";
89 server_list
+= server_config_string
;
92 Server
* server_startup_st::pop_server()
94 Server
*tmp
= servers
.back();
99 // host_to_shutdown => host number to shutdown in array
100 bool server_startup_st::shutdown(uint32_t host_to_shutdown
)
102 if (servers
.size() > host_to_shutdown
)
104 Server
* tmp
= servers
[host_to_shutdown
];
106 if (tmp
and tmp
->kill() == false)
117 void server_startup_st::clear()
119 std::for_each(servers
.begin(), servers
.end(), DeleteFromVector());
123 bool server_startup_st::check() const
126 for (std::vector
<Server
*>::const_iterator iter
= servers
.begin(); iter
!= servers
.end(); ++iter
)
128 if ((*iter
)->check() == false)
137 bool server_startup_st::shutdown()
140 for (std::vector
<Server
*>::iterator iter
= servers
.begin(); iter
!= servers
.end(); ++iter
)
142 if ((*iter
)->has_pid() and (*iter
)->kill() == false)
144 Error
<< "Unable to kill:" << *(*iter
);
152 void server_startup_st::restart()
154 for (std::vector
<Server
*>::iterator iter
= servers
.begin(); iter
!= servers
.end(); ++iter
)
160 #define MAGIC_MEMORY 123575
161 server_startup_st::server_startup_st() :
162 _magic(MAGIC_MEMORY
),
169 server_startup_st::~server_startup_st()
174 bool server_startup_st::validate()
176 return _magic
== MAGIC_MEMORY
;
179 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
)
181 return construct
.start_server(server_type
, try_port
, argc
, argv
, opt_startup_message
);
184 libtest::Server
* server_startup_st::create(const std::string
& server_type
, in_port_t try_port
, const bool is_socket
)
186 libtest::Server
*server
= NULL
;
188 if (is_socket
== false)
192 throw libtest::fatal(LIBYATL_DEFAULT_PARAM
, "was passed the invalid port number %d", int(try_port
));
198 if (server_type
.compare("memcached") == 0)
200 server
= build_memcached_socket("localhost", try_port
);
204 Error
<< "Socket is not support for server: " << server_type
;
208 else if (server_type
.compare("gearmand") == 0)
210 server
= build_gearmand("localhost", try_port
);
212 else if (server_type
.compare("hostile-gearmand") == 0)
214 server
= build_gearmand("localhost", try_port
, "gearmand/hostile_gearmand");
216 else if (server_type
.compare("drizzled") == 0)
222 server
= build_drizzled("localhost", try_port
);
226 else if (server_type
.compare("blobslap_worker") == 0)
230 if (GEARMAND_BLOBSLAP_WORKER
)
234 server
= build_blobslap_worker(try_port
);
239 else if (server_type
.compare("memcached") == 0)
241 if (HAVE_MEMCACHED_BINARY
)
243 server
= build_memcached("localhost", try_port
);
252 ServerPtr(libtest::Server
* server_
):
267 libtest::Server
* release(libtest::Server
* server_
= NULL
)
269 libtest::Server
* tmp
= _server
;
274 libtest::Server
* operator->() const
279 libtest::Server
* operator&() const
285 libtest::Server
* _server
;
288 bool server_startup_st::_start_server(const bool is_socket
,
289 const std::string
& server_type
,
291 int argc
, const char *argv
[],
292 const bool opt_startup_message
)
295 ServerPtr
server(create(server_type
, try_port
, is_socket
));
299 Error
<< "Could not allocate server: " << server_type
;
304 We will now cycle the server we have created.
306 if (server
->cycle() == false)
308 Error
<< "Could not start up server " << &server
;
312 server
->build(argc
, argv
);
317 Out
<< "Pausing for startup, hit return when ready.";
318 std::string gdb_command
= server
->base_command();
324 if (server
->start() == false)
330 if (opt_startup_message
)
336 Out
<< "STARTING SERVER(pid:" << server
->pid() << "): " << server
->running();
343 push_server(server
.release());
345 if (is_socket
and &server
)
347 set_default_socket(server
->socket().c_str());
350 catch (libtest::disconnected
& err
)
352 if (fatal::is_disabled() == false and try_port
!= LIBTEST_FAIL_PORT
)
354 stream::cerr(err
.file(), err
.line(), err
.func()) << err
.what();
358 catch (libtest::__test_result
& err
)
360 stream::cerr(err
.file(), err
.line(), err
.func()) << err
.what();
363 catch (std::exception
& err
)
370 Error
<< "error occured while creating server: " << server_type
;
377 bool server_startup_st::start_server(const std::string
& server_type
, in_port_t try_port
,
378 int argc
, const char *argv
[],
379 const bool opt_startup_message
)
381 return _start_server(false, server_type
, try_port
, argc
, argv
, opt_startup_message
);
384 bool server_startup_st::start_socket_server(const std::string
& server_type
, const in_port_t try_port
,
385 int argc
, const char *argv
[],
386 const bool opt_startup_message
)
388 return _start_server(true, server_type
, try_port
, argc
, argv
, opt_startup_message
);
391 std::string
server_startup_st::option_string() const
393 std::string temp
= server_list
;
399 } // namespace libtest