2012-03-28 13:24:49 +02:00
|
|
|
#include "i2-base.h"
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
Application::RefType Application::Instance;
|
|
|
|
|
|
|
|
Application::Application(void)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
WSADATA wsaData;
|
|
|
|
WSAStartup(MAKEWORD(1, 1), &wsaData);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
m_ShuttingDown = false;
|
2012-03-31 15:18:09 +02:00
|
|
|
m_ConfigHive = new_object<ConfigHive>();
|
2012-03-28 13:24:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Application::~Application(void)
|
|
|
|
{
|
|
|
|
Timer::StopAllTimers();
|
|
|
|
Socket::CloseAllSockets();
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
WSACleanup();
|
|
|
|
#endif
|
2012-03-31 15:18:09 +02:00
|
|
|
|
|
|
|
for (map<string, Component::RefType>::iterator i = m_Components.begin(); i != m_Components.end(); i++) {
|
|
|
|
i->second->Stop();
|
|
|
|
}
|
2012-03-28 13:24:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Application::RunEventLoop(void)
|
|
|
|
{
|
|
|
|
while (!m_ShuttingDown) {
|
|
|
|
fd_set readfds, writefds, exceptfds;
|
|
|
|
int nfds = -1;
|
|
|
|
|
|
|
|
FD_ZERO(&readfds);
|
|
|
|
FD_ZERO(&writefds);
|
|
|
|
FD_ZERO(&exceptfds);
|
|
|
|
|
|
|
|
for (list<Socket::WeakRefType>::iterator i = Socket::Sockets.begin(); i != Socket::Sockets.end(); i++) {
|
|
|
|
Socket::RefType socket = i->lock();
|
|
|
|
|
|
|
|
if (socket == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
int fd = socket->GetFD();
|
|
|
|
|
|
|
|
if (socket->WantsToWrite())
|
|
|
|
FD_SET(fd, &writefds);
|
|
|
|
|
2012-03-29 20:03:29 +02:00
|
|
|
if (socket->WantsToRead())
|
|
|
|
FD_SET(fd, &readfds);
|
|
|
|
|
2012-03-28 13:24:49 +02:00
|
|
|
FD_SET(fd, &exceptfds);
|
|
|
|
|
|
|
|
if (fd > nfds)
|
|
|
|
nfds = fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
long sleep;
|
|
|
|
|
|
|
|
do {
|
|
|
|
Timer::CallExpiredTimers();
|
|
|
|
sleep = (long)(Timer::GetNextCall() - time(NULL));
|
|
|
|
} while (sleep <= 0);
|
|
|
|
|
|
|
|
if (m_ShuttingDown)
|
|
|
|
break;
|
|
|
|
|
|
|
|
timeval tv;
|
|
|
|
tv.tv_sec = sleep;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
|
|
|
|
int ready;
|
|
|
|
|
|
|
|
if (nfds == -1) {
|
|
|
|
Sleep(tv.tv_sec * 1000 + tv.tv_usec);
|
|
|
|
ready = 0;
|
|
|
|
} else
|
|
|
|
ready = select(nfds + 1, &readfds, &writefds, &exceptfds, &tv);
|
|
|
|
|
|
|
|
if (ready < 0)
|
|
|
|
break;
|
|
|
|
else if (ready == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
EventArgs::RefType ea = new_object<EventArgs>();
|
|
|
|
ea->Source = shared_from_this();
|
|
|
|
|
|
|
|
list<Socket::WeakRefType>::iterator prev, i;
|
|
|
|
for (i = Socket::Sockets.begin(); i != Socket::Sockets.end(); ) {
|
|
|
|
prev = i;
|
|
|
|
i++;
|
|
|
|
|
|
|
|
Socket::RefType socket = prev->lock();
|
|
|
|
|
|
|
|
if (socket == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
int fd = socket->GetFD();
|
|
|
|
|
|
|
|
if (FD_ISSET(fd, &writefds))
|
|
|
|
socket->OnWritable(ea);
|
|
|
|
|
2012-03-29 20:03:29 +02:00
|
|
|
if (FD_ISSET(fd, &readfds))
|
|
|
|
socket->OnReadable(ea);
|
|
|
|
|
2012-03-28 13:24:49 +02:00
|
|
|
if (FD_ISSET(fd, &exceptfds))
|
|
|
|
socket->OnException(ea);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-30 10:24:42 +02:00
|
|
|
bool Application::Daemonize(void) {
|
|
|
|
#ifndef _WIN32
|
|
|
|
pid_t pid;
|
|
|
|
pid_t sid;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
pid = fork();
|
|
|
|
if (pid == -1) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pid) {
|
|
|
|
fprintf(stdout, "DONE\n");
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
fd = open("/dev/null", O_RDWR);
|
|
|
|
if (fd) {
|
|
|
|
if (fd != 0) {
|
|
|
|
dup2(fd, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fd != 1) {
|
|
|
|
dup2(fd, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fd != 2) {
|
|
|
|
dup2(fd, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fd > 2) {
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sid = setsid();
|
|
|
|
if (sid == -1) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-03-28 13:24:49 +02:00
|
|
|
void Application::Shutdown(void)
|
|
|
|
{
|
|
|
|
m_ShuttingDown = true;
|
|
|
|
}
|
2012-03-31 15:18:09 +02:00
|
|
|
|
|
|
|
ConfigHive::RefType Application::GetConfigHive(void)
|
|
|
|
{
|
|
|
|
return m_ConfigHive;
|
|
|
|
}
|
|
|
|
|
|
|
|
Component::RefType Application::LoadComponent(string name)
|
|
|
|
{
|
|
|
|
Component::RefType component;
|
|
|
|
Component *(*pCreateComponent)();
|
|
|
|
|
|
|
|
ConfigObject::RefType componentConfig = m_ConfigHive->GetObject("component", name);
|
|
|
|
|
|
|
|
if (componentConfig.get() == NULL) {
|
|
|
|
componentConfig = new_object<ConfigObject>();
|
|
|
|
componentConfig->SetName(name);
|
|
|
|
componentConfig->SetType("component");
|
|
|
|
m_ConfigHive->AddObject(componentConfig);
|
|
|
|
}
|
|
|
|
|
|
|
|
string path = componentConfig->GetProperty("path", name);
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
HMODULE hModule = LoadLibrary(path.c_str());
|
|
|
|
|
|
|
|
if (hModule == INVALID_HANDLE_VALUE)
|
|
|
|
throw exception(/*"Could not load module"*/);
|
|
|
|
|
|
|
|
pCreateComponent = (Component *(*)())GetProcAddress(hModule, "CreateComponent");
|
|
|
|
|
|
|
|
if (pCreateComponent == NULL)
|
|
|
|
throw exception(/*"Module does not contain CreateComponent function"*/);
|
|
|
|
|
|
|
|
#else /* _WIN32 */
|
|
|
|
// TODO: implement
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
|
|
|
component = Component::RefType(pCreateComponent());
|
|
|
|
component->SetApplication(static_pointer_cast<Application>(shared_from_this()));
|
|
|
|
m_Components[component->GetName()] = component;
|
|
|
|
|
|
|
|
component->Start(componentConfig);
|
|
|
|
|
|
|
|
return component;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Application::UnloadComponent(string name)
|
|
|
|
{
|
|
|
|
map<string, Component::RefType>::iterator ci = m_Components.find(name);
|
|
|
|
|
|
|
|
if (ci == m_Components.end())
|
|
|
|
return;
|
|
|
|
|
|
|
|
Component::RefType component = ci->second;
|
|
|
|
component->Stop();
|
|
|
|
m_Components.erase(ci);
|
|
|
|
|
|
|
|
// TODO: unload DLL
|
|
|
|
}
|