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>
52 static inline std::string
&rtrim(std::string
&s
)
54 s
.erase(std::find_if(s
.rbegin(), s
.rend(), std::not1(std::ptr_fun
<int, int>(std::isspace
))).base(), s
.end());
58 #include <libtest/server.h>
59 #include <libtest/stream.h>
60 #include <libtest/killpid.h>
64 std::ostream
& operator<<(std::ostream
& output
, const Server
&arg
)
68 output
<< arg
.hostname();
72 output
<< arg
.hostname() << ":" << arg
.port();
77 output
<< " Pid:" << arg
.pid();
82 output
<< " Socket:" << arg
.socket();
85 if (arg
.running().empty() == false)
87 output
<< " Exec:" << arg
.running();
90 return output
; // for multiple << operators
93 #define MAGIC_MEMORY 123570
95 Server::Server(const std::string
& host_arg
, const in_port_t port_arg
,
96 const std::string
& executable
, const bool _is_libtool
,
99 _is_socket(is_socket_arg
),
102 _app(executable
, _is_libtool
)
117 bool Server::validate()
119 return _magic
== MAGIC_MEMORY
;
122 // If the server exists, kill it
127 // Try to ping, and kill the server #limit number of times
129 is_pid_valid(_app
.pid()))
133 Log
<< "Killed existing server," << *this;
139 // For whatever reason we could not kill it, and we reached limit
142 Error
<< "Reached limit, could not kill server";
149 bool Server::wait_for_pidfile() const
151 Wait
wait(pid_file(), 4);
153 return wait
.successful();
156 bool Server::has_pid() const
158 return (_app
.pid() > 1);
164 // If we find that we already have a pid then kill it.
165 if (has_pid() == true)
168 fatal_message("has_pid() failed, programer error");
172 // This needs more work.
180 if (getenv("YATL_PTRCHECK_SERVER"))
184 else if (getenv("YATL_VALGRIND_SERVER"))
189 if (args(_app
) == false)
191 Error
<< "Could not build command()";
195 Application::error_t ret
;
196 if (Application::SUCCESS
!= (ret
= _app
.run()))
198 Error
<< "Application::run() " << ret
;
201 _running
= _app
.print();
203 if (valgrind_is_caller())
212 if (pid_file().empty() == false)
214 Wait
wait(pid_file(), 8);
216 if (wait
.successful() == false)
225 char *getcwd_buf
= getcwd(buf
, sizeof(buf
));
226 throw libtest::fatal(LIBYATL_DEFAULT_PARAM
,
227 "Unable to open pidfile in %s for: %s stderr:%s",
228 getcwd_buf
? getcwd_buf
: "",
230 _app
.stderr_c_str());
235 uint32_t this_wait
= 0;
238 uint32_t timeout
= 20; // This number should be high enough for valgrind startup (which is slow)
242 for (waited
= 0, retry
= 1; ; retry
++, waited
+= this_wait
)
244 if ((pinged
= ping()) == true)
248 else if (waited
>= timeout
)
253 this_wait
= retry
* retry
/ 3 + 1;
254 libtest::dream(this_wait
, 0);
260 // If we happen to have a pid file, lets try to kill it
261 if ((pid_file().empty() == false) and (access(pid_file().c_str(), R_OK
) == 0))
264 if (kill_file(pid_file()) == false)
266 throw libtest::fatal(LIBYATL_DEFAULT_PARAM
,
267 "Failed to kill off server, waited: %u after startup occurred, when pinging failed: %.*s stderr:%.*s",
269 int(_running
.size()), _running
.c_str(),
270 int(_app
.stderr_result_length()), _app
.stderr_c_str());
273 throw libtest::fatal(LIBYATL_DEFAULT_PARAM
,
274 "Failed native ping(), pid: %d is alive: %s waited: %u server started, having pid_file. exec: %.*s stderr:%.*s",
276 _app
.check() ? "true" : "false",
278 int(_running
.size()), _running
.c_str(),
279 int(_app
.stderr_result_length()), _app
.stderr_c_str());
283 throw libtest::fatal(LIBYATL_DEFAULT_PARAM
,
284 "Failed native ping(), pid: %d is alive: %s waited: %u server started. exec: %.*s stderr:%.*s",
286 _app
.check() ? "true" : "false",
288 int(_running
.size()), _running
.c_str(),
289 int(_app
.stderr_result_length()), _app
.stderr_c_str());
298 void Server::reset_pid()
304 pid_t
Server::pid() const
309 void Server::add_option(const std::string
& arg
)
311 _options
.push_back(std::make_pair(arg
, std::string()));
314 void Server::add_option(const std::string
& name
, const std::string
& value
)
316 _options
.push_back(std::make_pair(name
, value
));
319 bool Server::set_socket_file()
321 char file_buffer
[FILENAME_MAX
];
324 if (broken_pid_file())
326 snprintf(file_buffer
, sizeof(file_buffer
), "/tmp/%s.socketXXXXXX", name());
330 snprintf(file_buffer
, sizeof(file_buffer
), "var/run/%s.socketXXXXXX", name());
334 if ((fd
= mkstemp(file_buffer
)) == -1)
342 _socket
= file_buffer
;
347 bool Server::set_pid_file()
349 char file_buffer
[FILENAME_MAX
];
352 if (broken_pid_file())
354 snprintf(file_buffer
, sizeof(file_buffer
), "/tmp/%s.pidXXXXXX", name());
358 snprintf(file_buffer
, sizeof(file_buffer
), "var/run/%s.pidXXXXXX", name());
362 if ((fd
= mkstemp(file_buffer
)) == -1)
364 throw libtest::fatal(LIBYATL_DEFAULT_PARAM
, "mkstemp() failed on %s with %s", file_buffer
, strerror(errno
));
369 _pid_file
= file_buffer
;
374 bool Server::set_log_file()
376 char file_buffer
[FILENAME_MAX
];
379 snprintf(file_buffer
, sizeof(file_buffer
), "var/log/%s.logXXXXXX", name());
381 if ((fd
= mkstemp(file_buffer
)) == -1)
383 throw libtest::fatal(LIBYATL_DEFAULT_PARAM
, "mkstemp() failed on %s with %s", file_buffer
, strerror(errno
));
387 _log_file
= file_buffer
;
392 bool Server::args(Application
& app
)
395 // Set a log file if it was requested (and we can)
396 if (has_log_file_option())
399 log_file_option(app
, _log_file
);
402 if (getenv("LIBTEST_SYSLOG") and has_syslog())
404 app
.add_option("--syslog");
409 if (_pid_file
.empty() and set_pid_file() == false)
414 pid_file_option(app
, pid_file());
417 if (has_socket_file_option())
419 if (set_socket_file() == false)
424 socket_file_option(app
, _socket
);
427 if (has_port_option())
429 port_option(app
, _port
);
432 for (Options::const_iterator iter
= _options
.begin(); iter
!= _options
.end(); iter
++)
434 if ((*iter
).second
.empty() == false)
436 app
.add_option((*iter
).first
, (*iter
).second
);
440 app
.add_option((*iter
).first
);
449 if (check_pid(_app
.pid())) // If we kill it, reset
452 if (broken_pid_file() and pid_file().empty() == false)
454 unlink(pid_file().c_str());
457 if (broken_socket_cleanup() and has_socket() and not socket().empty())
459 unlink(socket().c_str());
470 } // namespace libtest