icinga2/base/application.cpp

446 lines
11 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-04-02 10:29:08 +02:00
#ifndef _WIN32
# include <ltdl.h>
#endif
2012-06-15 19:32:41 +02:00
using std::cout;
using std::endl;
2012-03-28 13:24:49 +02:00
using namespace icinga;
Application::Ptr I2_EXPORT Application::m_Instance;
2012-05-25 22:04:03 +02:00
bool I2_EXPORT Application::m_ShuttingDown = false;
bool I2_EXPORT Application::m_Debugging = false;
2012-03-28 13:24:49 +02:00
2012-04-24 14:02:15 +02:00
/**
* Constructor for the Application class.
*/
2012-03-28 13:24:49 +02:00
Application::Application(void)
{
#ifdef _WIN32
WSADATA wsaData;
2012-05-13 20:39:51 +02:00
if (WSAStartup(MAKEWORD(1, 1), &wsaData) != 0)
throw Win32Exception("WSAStartup failed", WSAGetLastError());
#else /* _WIN32 */
lt_dlinit();
#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 */
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)
{
2012-05-25 22:04:03 +02:00
m_ShuttingDown = true;
2012-04-24 14:02:15 +02:00
/* stop all components */
2012-04-22 16:45:31 +02:00
for (map<string, Component::Ptr>::iterator i = m_Components.begin();
i != m_Components.end(); i++) {
i->second->Stop();
}
m_Components.clear();
#ifdef _WIN32
WSACleanup();
#else /* _WIN32 */
2012-04-04 10:08:31 +02:00
//lt_dlexit();
#endif /* _WIN32 */
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)
{
2012-05-25 22:04:03 +02:00
if (m_ShuttingDown)
return Application::Ptr();
else
return m_Instance;
}
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)
{
while (!m_ShuttingDown) {
Object::ClearHeldObjects();
2012-06-22 11:19:58 +02:00
long sleep = Timer::ProcessTimers();
if (m_ShuttingDown)
break;
2012-04-18 15:22:25 +02:00
2012-06-24 02:56:48 +02:00
vector<Event::Ptr> events;
Event::Wait(&events, boost::get_system_time() + boost::posix_time::seconds(sleep));
2012-06-24 02:56:48 +02:00
for (vector<Event::Ptr>::iterator it = events.begin(); it != events.end(); it++) {
Event::Ptr ev = *it;
ev->OnEventDelivered();
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.
*/
2012-03-28 13:24:49 +02:00
void Application::Shutdown(void)
{
m_ShuttingDown = true;
}
2012-04-24 14:02:15 +02:00
/**
* Loads a component from a shared library.
2012-04-24 14:02:15 +02:00
*
* @param path The path of the component library.
* @param componentConfig The configuration for the component.
* @returns The component.
*/
2012-04-22 16:45:31 +02:00
Component::Ptr Application::LoadComponent(const string& path,
const ConfigObject::Ptr& componentConfig)
{
Component::Ptr component;
Component *(*pCreateComponent)();
2012-06-15 19:32:41 +02:00
Log(LogInformation, "base", "Loading component '" + path + "'");
2012-04-02 10:29:08 +02:00
#ifdef _WIN32
HMODULE hModule = LoadLibrary(path.c_str());
2012-04-02 10:29:08 +02:00
#else /* _WIN32 */
2012-04-13 11:08:33 +02:00
lt_dlhandle hModule = lt_dlopen(path.c_str());
2012-04-02 10:29:08 +02:00
#endif /* _WIN32 */
2012-04-02 10:29:08 +02:00
if (hModule == NULL)
2012-05-26 21:30:04 +02:00
throw runtime_error("Could not load module");
2012-04-02 10:29:08 +02:00
#ifdef _WIN32
2012-05-25 16:56:47 +02:00
pCreateComponent = (CreateComponentFunction)GetProcAddress(hModule,
"CreateComponent");
2012-04-02 10:29:08 +02:00
#else /* _WIN32 */
2012-05-10 13:46:04 +02:00
# ifdef __GNUC__
/* suppress compiler warning for void * cast */
__extension__
# endif
2012-05-25 16:56:47 +02:00
pCreateComponent = (CreateComponentFunction)lt_dlsym(hModule,
"CreateComponent");
2012-04-02 10:29:08 +02:00
#endif /* _WIN32 */
if (pCreateComponent == NULL)
2012-05-26 21:30:04 +02:00
throw runtime_error("Loadable module does not contain "
"CreateComponent function");
component = Component::Ptr(pCreateComponent());
2012-03-31 16:03:42 +02:00
component->SetConfig(componentConfig);
2012-04-18 15:22:25 +02:00
RegisterComponent(component);
return component;
}
2012-04-24 14:02:15 +02:00
/**
* Registers a component object and starts it.
*
* @param component The component.
*/
void Application::RegisterComponent(const Component::Ptr& component)
2012-04-18 15:22:25 +02:00
{
m_Components[component->GetName()] = component;
2012-03-31 16:03:42 +02:00
component->Start();
}
2012-04-24 14:02:15 +02:00
/**
* Unregisters a component object and stops it.
*
* @param component The component.
*/
void Application::UnregisterComponent(const Component::Ptr& component)
2012-03-31 16:03:42 +02:00
{
2012-04-18 15:22:25 +02:00
string name = component->GetName();
2012-03-31 16:03:42 +02:00
2012-06-15 19:32:41 +02:00
Log(LogInformation, "base", "Unloading component '" + name + "'");
2012-04-18 15:22:25 +02:00
map<string, Component::Ptr>::iterator i = m_Components.find(name);
2012-04-24 14:02:15 +02:00
if (i != m_Components.end())
2012-04-18 15:22:25 +02:00
m_Components.erase(i);
2012-04-24 14:02:15 +02:00
component->Stop();
2012-03-31 16:03:42 +02:00
}
2012-04-24 14:02:15 +02:00
/**
* Finds a loaded component by name.
*
* @param name The name of the component.
* @returns The component or a null pointer if the component could not be found.
*/
2012-05-18 22:53:35 +02:00
Component::Ptr Application::GetComponent(const string& name) const
{
2012-05-18 22:53:35 +02:00
map<string, Component::Ptr>::const_iterator i = m_Components.find(name);
2012-05-18 22:53:35 +02:00
if (i == m_Components.end())
2012-04-18 15:22:25 +02:00
return Component::Ptr();
2012-05-18 22:53:35 +02:00
return i->second;
}
2012-04-01 09:30:08 +02:00
2012-04-24 14:02:15 +02:00
/**
2012-05-18 22:53:35 +02:00
* Writes a message to the application's log.
2012-04-24 14:02:15 +02:00
*
2012-06-15 19:32:41 +02:00
* @param severity The message severity.
* @param facility The log facility.
* @param message The message.
2012-04-24 14:02:15 +02:00
*/
2012-06-17 16:37:36 +02:00
void Application::Log(LogSeverity severity, const string& facility, const string& message)
2012-04-01 09:30:08 +02:00
{
char timestamp[100];
2012-04-01 09:30:08 +02:00
2012-06-20 10:46:18 +02:00
// TODO: make this configurable
2012-06-24 02:56:48 +02:00
if (/*!IsDebugging() && */severity < LogInformation)
2012-06-20 10:46:18 +02:00
return;
2012-06-15 19:32:41 +02:00
string severityStr;
switch (severity) {
case LogDebug:
severityStr = "debug";
break;
case LogInformation:
severityStr = "info";
break;
case LogWarning:
severityStr = "warning";
break;
case LogCritical:
severityStr = "critical";
break;
default:
assert(!"Invalid severity specified.");
}
time_t now;
time(&now);
tm tmnow = *localtime(&now);
2012-04-01 09:30:08 +02:00
2012-06-15 19:32:41 +02:00
strftime(timestamp, sizeof(timestamp), "%Y/%m/%d %H:%M:%S", &tmnow);
2012-06-15 19:32:41 +02:00
cout << "[" << timestamp << "] "
<< severityStr << "/" << facility << ": "
<< message << endl;
}
2012-04-24 14:02:15 +02:00
/**
* Retrieves the directory the application's binary is contained in.
*
* @returns The directory.
*/
2012-04-22 16:45:31 +02:00
string Application::GetExeDirectory(void) const
2012-04-02 13:09:33 +02:00
{
static string result;
2012-04-02 13:09:33 +02:00
if (!result.empty())
return result;
2012-04-02 13:09:33 +02:00
string executablePath;
2012-04-02 13:09:33 +02:00
#ifndef _WIN32
string argv0 = m_Arguments[0];
2012-04-02 13:09:33 +02:00
char buffer[MAXPATHLEN];
if (getcwd(buffer, sizeof(buffer)) == NULL)
throw 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
if (argv0.find_first_of('/') == string::npos) {
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;
for (vector<string>::iterator it = paths.begin(); it != paths.end(); it++) {
string pathTest = *it + "/" + argv0;
2012-04-02 13:09:33 +02:00
if (access(pathTest.c_str(), X_OK) == 0) {
executablePath = pathTest;
foundPath = true;
2012-04-02 13:09:33 +02:00
break;
}
}
if (!foundPath) {
executablePath.clear();
2012-05-26 21:30:04 +02:00
throw runtime_error("Could not determine executable path.");
}
2012-04-02 13:09:33 +02:00
}
}
if (realpath(executablePath.c_str(), buffer) == NULL)
throw PosixException("realpath failed", errno);
2012-04-02 13:09:33 +02:00
executablePath = buffer;
2012-04-02 13:09:33 +02:00
#else /* _WIN32 */
char FullExePath[MAXPATHLEN];
if (!GetModuleFileName(NULL, FullExePath, sizeof(FullExePath)))
throw Win32Exception("GetModuleFileName() failed", GetLastError());
2012-04-02 13:09:33 +02:00
executablePath = FullExePath;
2012-04-02 13:09:33 +02:00
#endif /* _WIN32 */
result = Utility::DirName(executablePath);
return result;
2012-04-02 13:09:33 +02:00
}
2012-04-24 14:02:15 +02:00
/**
* Adds a directory to the component search path.
*
* @param componentDirectory The directory.
*/
2012-04-03 11:39:26 +02:00
void Application::AddComponentSearchDir(const string& componentDirectory)
2012-04-02 13:09:33 +02:00
{
#ifdef _WIN32
SetDllDirectory(componentDirectory.c_str());
#else /* _WIN32 */
lt_dladdsearchdir(componentDirectory.c_str());
#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-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->Shutdown();
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);
}
#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()->Shutdown();
SetConsoleCtrlHandler(NULL, FALSE);
return TRUE;
}
2012-04-22 16:45:31 +02:00
#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;
assert(!Application::m_Instance);
Application::m_Instance = GetSelf();
#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
SetConsoleCtrlHandler(&Application::CtrlHandler, TRUE);
#endif /* _WIN32 */
m_Arguments.clear();
for (int i = 0; i < argc; i++)
m_Arguments.push_back(string(argv[i]));
if (IsDebugging()) {
result = Main(m_Arguments);
Application::m_Instance.reset();
} else {
try {
result = Main(m_Arguments);
2012-05-25 16:56:47 +02:00
} catch (const std::exception& ex) {
Application::m_Instance.reset();
2012-06-15 19:32:41 +02:00
Application::Log(LogCritical, "base", "---");
Application::Log(LogCritical, "base", "Exception: " + Utility::GetTypeName(ex));
Application::Log(LogCritical, "base", "Message: " + string(ex.what()));
return EXIT_FAILURE;
}
}
return result;
2012-04-16 16:27:41 +02:00
}