icinga2/lib/base/application.cpp

530 lines
12 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software Foundation *
2012-05-11 13:33:57 +02:00
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
2012-03-28 13:24:49 +02:00
#include "i2-base.h"
2012-03-28 13:24:49 +02:00
using namespace icinga;
Application *Application::m_Instance = NULL;
2012-07-10 12:21:19 +02:00
bool Application::m_ShuttingDown = false;
bool Application::m_Debugging = false;
boost::thread::id Application::m_MainThreadID;
String Application::m_PrefixDir;
String Application::m_LocalStateDir;
String Application::m_PkgLibDir;
2012-03-28 13:24:49 +02:00
2012-04-24 14:02:15 +02:00
/**
* Constructor for the Application class.
*/
Application::Application(const Dictionary::Ptr& serializedUpdate)
: DynamicObject(serializedUpdate), m_PidFile(NULL)
2012-03-28 13:24:49 +02:00
{
if (!IsLocal())
throw_exception(runtime_error("Application objects must be local."));
2012-03-28 13:24:49 +02:00
#ifdef _WIN32
/* disable GUI-based error messages for LoadLibrary() */
SetErrorMode(SEM_FAILCRITICALERRORS);
2012-03-28 13:24:49 +02:00
WSADATA wsaData;
2012-05-13 20:39:51 +02:00
if (WSAStartup(MAKEWORD(1, 1), &wsaData) != 0)
2012-07-17 20:41:06 +02:00
throw_exception(Win32Exception("WSAStartup failed", WSAGetLastError()));
#endif /* _WIN32 */
2012-03-28 13:24:49 +02:00
char *debugging = getenv("_DEBUG");
m_Debugging = (debugging && strtol(debugging, NULL, 10) != 0);
2012-04-18 15:22:25 +02:00
#ifdef _WIN32
if (IsDebuggerPresent())
m_Debugging = true;
#endif /* _WIN32 */
assert(m_Instance == NULL);
m_Instance = this;
2012-03-28 13:24:49 +02:00
}
2012-04-24 14:02:15 +02:00
/**
* Destructor for the application class.
*/
2012-03-28 13:24:49 +02:00
Application::~Application(void)
{
m_Instance = NULL;
2012-05-25 22:04:03 +02:00
m_ShuttingDown = true;
#ifdef _WIN32
WSACleanup();
#endif /* _WIN32 */
ClosePidFile();
2012-03-28 13:24:49 +02:00
}
/**
* Retrieves a pointer to the application singleton object.
*
* @returns The application object.
*/
Application::Ptr Application::GetInstance(void)
{
if (m_Instance)
return m_Instance->GetSelf();
else
return Application::Ptr();
}
2012-04-24 14:02:15 +02:00
/**
2012-05-18 22:53:35 +02:00
* Processes events for registered sockets and timers and calls whatever
* handlers have been set up for these events.
2012-04-24 14:02:15 +02:00
*/
2012-03-28 13:24:49 +02:00
void Application::RunEventLoop(void)
{
2012-08-04 09:58:31 +02:00
#ifdef _DEBUG
double nextProfile = 0;
2012-08-04 09:58:31 +02:00
#endif /* _DEBUG */
/* Start the system time watch thread. */
thread t(&Application::TimeWatchThreadProc);
t.detach();
2012-09-25 14:03:41 +02:00
2012-03-28 13:24:49 +02:00
while (!m_ShuttingDown) {
Object::ClearHeldObjects();
double sleep = Timer::ProcessTimers();
2012-06-22 11:19:58 +02:00
if (m_ShuttingDown)
break;
2012-04-18 15:22:25 +02:00
Event::ProcessEvents(boost::posix_time::milliseconds(sleep * 1000));
DynamicObject::FinishTx();
DynamicObject::BeginTx();
2012-08-03 13:19:55 +02:00
#ifdef _DEBUG
if (nextProfile < Utility::GetTime()) {
stringstream msgbuf;
msgbuf << "Active objects: " << Object::GetAliveObjectsCount();
Logger::Write(LogInformation, "base", msgbuf.str());
Object::PrintMemoryProfile();
2012-08-03 13:19:55 +02:00
nextProfile = Utility::GetTime() + 15.0;
}
2012-08-03 13:19:55 +02:00
#endif /* _DEBUG */
}
}
/**
* Watches for changes to the system time. Adjusts timers if necessary.
*/
void Application::TimeWatchThreadProc(void)
{
double lastLoop = Utility::GetTime();
for (;;) {
Utility::Sleep(5);
2012-09-25 14:03:41 +02:00
double now = Utility::GetTime();
double timeDiff = lastLoop - now;
2012-09-25 14:03:41 +02:00
if (abs(timeDiff) > 15) {
/* We made a significant jump in time. */
2012-09-25 14:03:41 +02:00
stringstream msgbuf;
msgbuf << "We jumped "
2012-09-25 15:33:51 +02:00
<< (timeDiff < 0 ? "forward" : "backward")
<< " in time: " << abs(timeDiff) << " seconds";
2012-09-25 14:03:41 +02:00
Logger::Write(LogInformation, "base", msgbuf.str());
/* in addition to rescheduling the timers this
* causes the event loop to wake up thereby
* solving the problem that timed_wait()
* uses an absolute timestamp for the timeout */
Event::Post(boost::bind(&Timer::AdjustTimers,
-timeDiff));
2012-09-25 14:03:41 +02:00
}
lastLoop = now;
2012-03-28 13:24:49 +02:00
}
}
2012-04-24 14:02:15 +02:00
/**
* Signals the application to shut down during the next
* execution of the event loop.
*/
void Application::RequestShutdown(void)
2012-03-28 13:24:49 +02:00
{
m_ShuttingDown = true;
}
/**
* Terminates the application.
*/
void Application::Terminate(int exitCode)
{
_exit(exitCode);
}
2012-04-24 14:02:15 +02:00
/**
2012-07-10 13:31:17 +02:00
* Retrieves the full path of the executable.
2012-04-24 14:02:15 +02:00
*
* @param argv0 The first command-line argument.
2012-07-10 13:31:17 +02:00
* @returns The path.
2012-04-24 14:02:15 +02:00
*/
String Application::GetExePath(const String& argv0)
2012-04-02 13:09:33 +02:00
{
String executablePath;
2012-04-02 13:09:33 +02:00
#ifndef _WIN32
char buffer[MAXPATHLEN];
if (getcwd(buffer, sizeof(buffer)) == NULL)
2012-07-17 20:41:06 +02:00
throw_exception(PosixException("getcwd failed", errno));
String workingDirectory = buffer;
2012-04-02 13:09:33 +02:00
if (argv0[0] != '/')
executablePath = workingDirectory + "/" + argv0;
2012-04-02 13:09:33 +02:00
else
executablePath = argv0;
2012-04-02 13:09:33 +02:00
bool foundSlash = false;
2012-08-04 09:58:31 +02:00
for (size_t i = 0; i < argv0.GetLength(); i++) {
if (argv0[i] == '/') {
foundSlash = true;
break;
}
}
if (!foundSlash) {
const char *pathEnv = getenv("PATH");
if (pathEnv != NULL) {
vector<String> paths;
boost::algorithm::split(paths, pathEnv, boost::is_any_of(":"));
2012-04-02 13:09:33 +02:00
bool foundPath = false;
BOOST_FOREACH(String& path, paths) {
String pathTest = path + "/" + argv0;
2012-04-02 13:09:33 +02:00
if (access(pathTest.CStr(), X_OK) == 0) {
executablePath = pathTest;
foundPath = true;
2012-04-02 13:09:33 +02:00
break;
}
}
if (!foundPath) {
executablePath.Clear();
2012-07-17 20:41:06 +02:00
throw_exception(runtime_error("Could not determine executable path."));
}
2012-04-02 13:09:33 +02:00
}
}
if (realpath(executablePath.CStr(), buffer) == NULL)
2012-07-17 20:41:06 +02:00
throw_exception(PosixException("realpath failed", errno));
2012-04-02 13:09:33 +02:00
return buffer;
2012-04-02 13:09:33 +02:00
#else /* _WIN32 */
char FullExePath[MAXPATHLEN];
if (!GetModuleFileName(NULL, FullExePath, sizeof(FullExePath)))
2012-07-17 20:41:06 +02:00
throw_exception(Win32Exception("GetModuleFileName() failed", GetLastError()));
2012-04-02 13:09:33 +02:00
return FullExePath;
2012-04-02 13:09:33 +02:00
#endif /* _WIN32 */
}
2012-04-24 14:02:15 +02:00
/**
* Retrieves the debugging mode of the application.
*
* @returns true if the application is being debugged, false otherwise
*/
bool Application::IsDebugging(void)
{
return m_Debugging;
}
2012-04-03 19:49:56 +02:00
2012-09-14 14:41:17 +02:00
/**
* Checks whether we're currently on the main thread.
*
* @returns true if this is the main thread, false otherwise
*/
2012-07-10 12:21:19 +02:00
bool Application::IsMainThread(void)
{
return (boost::this_thread::get_id() == m_MainThreadID);
}
2012-09-14 14:41:17 +02:00
/**
* Sets the main thread to the currently running thread.
*/
void Application::SetMainThread(void)
{
m_MainThreadID = boost::this_thread::get_id();
}
2012-04-22 16:45:31 +02:00
#ifndef _WIN32
2012-04-24 14:02:15 +02:00
/**
2012-05-18 22:53:35 +02:00
* Signal handler for SIGINT. Prepares the application for cleanly
* shutting down during the next execution of the event loop.
2012-04-24 14:02:15 +02:00
*
* @param signum The signal number.
*/
2012-05-18 22:53:35 +02:00
void Application::SigIntHandler(int signum)
2012-04-03 19:49:56 +02:00
{
2012-04-24 14:02:15 +02:00
assert(signum == SIGINT);
Application::Ptr instance = Application::GetInstance();
if (!instance)
return;
instance->RequestShutdown();
2012-04-03 19:49:56 +02:00
struct sigaction sa;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = SIG_DFL;
sigaction(SIGINT, &sa, NULL);
}
/**
* Signal handler for SIGABRT. Helps with debugging assert()s.
*
* @param signum The signal number.
*/
void Application::SigAbrtHandler(int signum)
{
assert(signum == SIGABRT);
std::cerr << "Caught SIGABRT." << std::endl;
Utility::PrintStacktrace(std::cerr, 1);
}
#else /* _WIN32 */
/**
* Console control handler. Prepares the application for cleanly
* shutting down during the next execution of the event loop.
*/
BOOL WINAPI Application::CtrlHandler(DWORD type)
{
Application::Ptr instance = Application::GetInstance();
if (!instance)
return TRUE;
instance->GetInstance()->RequestShutdown();
SetConsoleCtrlHandler(NULL, FALSE);
return TRUE;
}
2012-04-22 16:45:31 +02:00
#endif /* _WIN32 */
/**
* Handler for unhandled exceptions.
*/
void Application::ExceptionHandler(void)
{
static bool rethrow = true;
try {
rethrow = false;
throw;
} catch (const std::exception& ex) {
std::cerr << std::endl;
std::cerr << "Unhandled exception of type "
<< Utility::GetTypeName(typeid(ex))
<< std::endl;
std::cerr << "Diagnostic Information: "
<< ex.what()
<< std::endl;
}
Utility::PrintStacktrace(std::cerr, 1);
#ifndef _WIN32
struct sigaction sa;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = SIG_DFL;
sigaction(SIGABRT, &sa, NULL);
#endif /* _WIN32 */
abort();
}
/**
* Installs the exception handlers.
*/
void Application::InstallExceptionHandlers(void)
{
std::set_terminate(&Application::ExceptionHandler);
#ifndef _WIN32
struct sigaction sa;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = &Application::SigAbrtHandler;
sigaction(SIGABRT, &sa, NULL);
#endif /* _WIN32 */
}
2012-04-24 14:02:15 +02:00
/**
* Runs the application.
2012-04-24 14:02:15 +02:00
*
* @param argc The number of arguments.
* @param argv The arguments that should be passed to the application.
* @returns The application's exit code.
*/
int Application::Run(int argc, char **argv)
{
int result;
#ifndef _WIN32
struct sigaction sa;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = &Application::SigIntHandler;
sigaction(SIGINT, &sa, NULL);
sa.sa_handler = SIG_IGN;
sigaction(SIGPIPE, &sa, NULL);
#else /* _WIN32 */
SetConsoleCtrlHandler(&Application::CtrlHandler, TRUE);
#endif /* _WIN32 */
m_Arguments.clear();
for (int i = 0; i < argc; i++)
m_Arguments.push_back(String(argv[i]));
DynamicObject::BeginTx();
2012-09-27 09:38:28 +02:00
result = Main(m_Arguments);
DynamicObject::FinishTx();
DynamicObject::DeactivateObjects();
return result;
2012-04-16 16:27:41 +02:00
}
2012-09-14 14:41:17 +02:00
/**
* Grabs the PID file lock and updates the PID. Terminates the application
* if the PID file is already locked by another instance of the application.
2012-09-14 14:41:17 +02:00
*
* @param filename The name of the PID file.
*/
void Application::UpdatePidFile(const String& filename)
{
ClosePidFile();
/* There's just no sane way of getting a file descriptor for a
* C++ ofstream which is why we're using FILEs here. */
m_PidFile = fopen(filename.CStr(), "w");
if (m_PidFile == NULL)
2012-07-17 20:41:06 +02:00
throw_exception(runtime_error("Could not open PID file '" + filename + "'"));
2012-07-13 15:24:19 +02:00
#ifndef _WIN32
if (flock(fileno(m_PidFile), LOCK_EX | LOCK_NB) < 0) {
ClosePidFile();
Logger::Write(LogCritical, "base",
"Another instance of the application is "
"already running. Remove the '" + filename + "' file if "
"you're certain that this is not the case.");
Terminate(EXIT_FAILURE);
}
2012-07-13 15:29:39 +02:00
#endif /* _WIN32 */
fprintf(m_PidFile, "%d", Utility::GetPid());
fflush(m_PidFile);
}
2012-09-14 14:41:17 +02:00
/**
* Closes the PID file. Does nothing if the PID file is not currently open.
*/
void Application::ClosePidFile(void)
{
if (m_PidFile != NULL)
fclose(m_PidFile);
m_PidFile = NULL;
}
/**
* Retrieves the path of the installation prefix.
*
* @returns The path.
*/
String Application::GetPrefixDir(void)
{
if (m_PrefixDir.IsEmpty())
return ".";
else
return m_PrefixDir;
}
/**
* Sets the path for the installation prefix.
*
* @param path The new path.
*/
void Application::SetPrefixDir(const String& path)
{
m_PrefixDir = path;
}
/**
* Retrieves the path for the local state dir.
*
* @returns The path.
*/
String Application::GetLocalStateDir(void)
{
if (m_LocalStateDir.IsEmpty())
return "./var";
else
return m_LocalStateDir;
}
/**
* Sets the path for the local state dir.
*
* @param path The new path.
*/
void Application::SetLocalStateDir(const String& path)
{
m_LocalStateDir = path;
}
/**
* Retrives the path for the package lib dir.
*
* @returns The path.
*/
String Application::GetPkgLibDir(void)
{
if (m_PkgLibDir.IsEmpty())
return ".";
else
return m_PkgLibDir;
}
/**
* Sets the path for the package lib dir.
*
* @param path The new path.
*/
void Application::SetPkgLibDir(const String& path)
{
m_PkgLibDir = path;
}