mirror of https://github.com/Icinga/icinga2.git
179 lines
5.4 KiB
C++
179 lines
5.4 KiB
C++
#include <cstdio>
|
|
#include <iostream>
|
|
#include "i2-icinga.h"
|
|
|
|
#ifndef _WIN32
|
|
# include "icinga-version.h"
|
|
# define ICINGA_VERSION GIT_MESSAGE
|
|
#endif /* _WIN32 */
|
|
|
|
using namespace icinga;
|
|
|
|
int IcingaApplication::Main(const vector<string>& args)
|
|
{
|
|
#ifdef _WIN32
|
|
Application::Log("Icinga component loader");
|
|
#else /* _WIN32 */
|
|
Application::Log("Icinga component loader (version: " ICINGA_VERSION ")");
|
|
#endif /* _WIN32 */
|
|
|
|
if (args.size() < 2) {
|
|
PrintUsage(args[0]);
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
shared_ptr<SSL_CTX> sslContext = Utility::MakeSSLContext("icinga-c1.crt", "icinga-c1.key", "ca.crt");
|
|
|
|
m_EndpointManager = make_shared<EndpointManager>(sslContext);
|
|
|
|
string componentDirectory = GetExeDirectory() + "/../lib/icinga";
|
|
AddComponentSearchDir(componentDirectory);
|
|
|
|
ConfigCollection::Ptr componentCollection = GetConfigHive()->GetCollection("component");
|
|
|
|
function<int (const EventArgs&)> NewComponentHandler = bind_weak(&IcingaApplication::NewComponentHandler, shared_from_this());
|
|
componentCollection->OnObjectCreated += NewComponentHandler;
|
|
componentCollection->ForEachObject(NewComponentHandler);
|
|
|
|
componentCollection->OnObjectRemoved += bind_weak(&IcingaApplication::DeletedComponentHandler, shared_from_this());
|
|
|
|
ConfigCollection::Ptr listenerCollection = GetConfigHive()->GetCollection("rpclistener");
|
|
|
|
function<int (const EventArgs&)> NewRpcListenerHandler = bind_weak(&IcingaApplication::NewRpcListenerHandler, shared_from_this());
|
|
listenerCollection->OnObjectCreated += NewRpcListenerHandler;
|
|
listenerCollection->ForEachObject(NewRpcListenerHandler);
|
|
|
|
listenerCollection->OnObjectRemoved += bind_weak(&IcingaApplication::DeletedRpcListenerHandler, shared_from_this());
|
|
|
|
ConfigCollection::Ptr connectionCollection = GetConfigHive()->GetCollection("rpcconnection");
|
|
|
|
function<int (const EventArgs&)> NewRpcConnectionHandler = bind_weak(&IcingaApplication::NewRpcConnectionHandler, shared_from_this());
|
|
connectionCollection->OnObjectCreated += NewRpcConnectionHandler;
|
|
connectionCollection->ForEachObject(NewRpcConnectionHandler);
|
|
|
|
connectionCollection->OnObjectRemoved += bind_weak(&IcingaApplication::DeletedRpcConnectionHandler, shared_from_this());
|
|
|
|
SubscriptionComponent::Ptr subscriptionComponent = make_shared<SubscriptionComponent>();
|
|
RegisterComponent(subscriptionComponent);
|
|
|
|
DiscoveryComponent::Ptr discoveryComponent = make_shared<DiscoveryComponent>();
|
|
RegisterComponent(discoveryComponent);
|
|
|
|
ConfigObject::Ptr fileComponentConfig = make_shared<ConfigObject>("component", "configfile");
|
|
fileComponentConfig->SetPropertyString("configFilename", args[1]);
|
|
fileComponentConfig->SetPropertyInteger("replicate", 0);
|
|
GetConfigHive()->AddObject(fileComponentConfig);
|
|
|
|
ConfigCollection::Ptr collection = GetConfigHive()->GetCollection("rpclistener");
|
|
|
|
RunEventLoop();
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
void IcingaApplication::PrintUsage(const string& programPath)
|
|
{
|
|
cout << "Syntax: " << programPath << " <config-file>" << endl;
|
|
}
|
|
|
|
EndpointManager::Ptr IcingaApplication::GetEndpointManager(void)
|
|
{
|
|
return m_EndpointManager;
|
|
}
|
|
|
|
int IcingaApplication::NewComponentHandler(const EventArgs& ea)
|
|
{
|
|
string path;
|
|
ConfigObject::Ptr object = static_pointer_cast<ConfigObject>(ea.Source);
|
|
|
|
/* don't allow replicated config objects */
|
|
if (object->GetReplicated())
|
|
return 0;
|
|
|
|
if (!object->GetPropertyString("path", &path)) {
|
|
#ifdef _WIN32
|
|
path = object->GetName() + ".dll";
|
|
#else /* _WIN32 */
|
|
path = object->GetName() + ".la";
|
|
#endif /* _WIN32 */
|
|
}
|
|
|
|
LoadComponent(path, object);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int IcingaApplication::DeletedComponentHandler(const EventArgs& ea)
|
|
{
|
|
ConfigObject::Ptr object = static_pointer_cast<ConfigObject>(ea.Source);
|
|
|
|
Component::Ptr component = GetComponent(object->GetName());
|
|
UnregisterComponent(component);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int IcingaApplication::NewRpcListenerHandler(const EventArgs& ea)
|
|
{
|
|
ConfigObject::Ptr object = static_pointer_cast<ConfigObject>(ea.Source);
|
|
long portValue;
|
|
unsigned short port;
|
|
|
|
/* don't allow replicated config objects */
|
|
if (object->GetReplicated())
|
|
return 0;
|
|
|
|
if (!object->GetPropertyInteger("port", &portValue))
|
|
throw InvalidArgumentException("Parameter 'port' is required for 'rpclistener' objects.");
|
|
|
|
if (portValue < 0 || portValue > USHRT_MAX)
|
|
throw InvalidArgumentException("Parameter 'port' contains an invalid value.");
|
|
|
|
port = (unsigned short)portValue;
|
|
|
|
GetEndpointManager()->AddListener(port);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int IcingaApplication::DeletedRpcListenerHandler(const EventArgs& ea)
|
|
{
|
|
throw Exception("Unsupported operation.");
|
|
|
|
return 0;
|
|
}
|
|
|
|
int IcingaApplication::NewRpcConnectionHandler(const EventArgs& ea)
|
|
{
|
|
ConfigObject::Ptr object = static_pointer_cast<ConfigObject>(ea.Source);
|
|
string hostname;
|
|
long portValue;
|
|
unsigned short port;
|
|
|
|
/* don't allow replicated config objects */
|
|
if (object->GetReplicated())
|
|
return 0;
|
|
|
|
if (!object->GetPropertyString("hostname", &hostname))
|
|
throw InvalidArgumentException("Parameter 'hostname' is required for 'rpcconnection' objects.");
|
|
|
|
if (!object->GetPropertyInteger("port", &portValue))
|
|
throw InvalidArgumentException("Parameter 'port' is required for 'rpcconnection' objects.");
|
|
|
|
if (portValue < 0 || portValue > USHRT_MAX)
|
|
throw InvalidArgumentException("Parameter 'port' contains an invalid value.");
|
|
|
|
port = (unsigned short)portValue;
|
|
|
|
GetEndpointManager()->AddConnection(hostname, port);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int IcingaApplication::DeletedRpcConnectionHandler(const EventArgs& ea)
|
|
{
|
|
throw Exception("Unsupported operation.");
|
|
|
|
return 0;
|
|
}
|