icinga2/icinga/icingaapplication.cpp

182 lines
5.5 KiB
C++
Raw Normal View History

2012-03-31 16:29:53 +02:00
#include <cstdio>
#include <iostream>
#include "i2-icinga.h"
#ifndef _WIN32
# include "icinga-version.h"
# define ICINGA_VERSION GIT_MESSAGE
#endif /* _WIN32 */
2012-03-31 16:29:53 +02:00
using namespace icinga;
IcingaApplication::IcingaApplication(void)
{
m_EndpointManager = make_shared<EndpointManager>();
2012-03-31 16:29:53 +02:00
}
int IcingaApplication::Main(const vector<string>& args)
{
#ifdef _WIN32
cout << "Icinga component loader" << endl;
#else /* _WIN32 */
cout << "Icinga component loader (version: " << ICINGA_VERSION << ")" << endl;
#endif /* _WIN32 */
2012-04-02 13:09:33 +02:00
if (args.size() < 2) {
PrintUsage(args[0]);
return EXIT_FAILURE;
}
string componentDirectory = GetExeDirectory() + "/../lib/icinga";
2012-04-02 13:09:33 +02:00
AddComponentSearchDir(componentDirectory);
ConfigCollection::Ptr componentCollection = GetConfigHive()->GetCollection("component");
2012-04-18 15:22:25 +02:00
function<int (const ConfigObjectEventArgs&)> 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");
2012-04-18 15:22:25 +02:00
function<int (const ConfigObjectEventArgs&)> 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");
2012-04-18 15:22:25 +02:00
function<int (const ConfigObjectEventArgs&)> 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 subscriptionsComponent = make_shared<SubscriptionComponent>();
RegisterComponent(subscriptionsComponent);
2012-04-13 13:24:32 +02:00
ConfigObject::Ptr fileComponentConfig = make_shared<ConfigObject>("component", "configfile");
fileComponentConfig->SetProperty("configFilename", args[1]);
fileComponentConfig->SetPropertyInteger("replicate", 0);
2012-03-31 16:29:53 +02:00
GetConfigHive()->AddObject(fileComponentConfig);
ConfigCollection::Ptr collection = GetConfigHive()->GetCollection("rpclistener");
2012-04-18 15:22:25 +02:00
m_TestEndpoint = make_shared<VirtualEndpoint>();
m_EndpointManager->RegisterEndpoint(m_TestEndpoint);
m_TestEndpoint->RegisterMethodSink("test");
m_TestEndpoint->RegisterMethodSource("test");
m_TestTimer = make_shared<Timer>();
2012-04-19 09:18:54 +02:00
m_TestTimer->SetInterval(1);
2012-04-18 15:22:25 +02:00
m_TestTimer->OnTimerExpired += bind_weak(&IcingaApplication::TestTimerHandler, shared_from_this());
m_TestTimer->Start();
2012-03-31 16:29:53 +02:00
RunEventLoop();
2012-04-02 13:09:33 +02:00
return EXIT_SUCCESS;
}
2012-04-18 15:22:25 +02:00
int IcingaApplication::TestTimerHandler(const TimerEventArgs& tea)
{
cout << "Problem?" << endl;
JsonRpcRequest request;
request.SetVersion("2.0");
request.SetMethod("test");
2012-04-19 08:51:38 +02:00
for (int i = 0; i < 5; i++)
2012-04-19 08:51:38 +02:00
m_EndpointManager->SendMulticastRequest(m_TestEndpoint, request);
2012-04-18 15:22:25 +02:00
return 0;
}
2012-04-02 13:09:33 +02:00
void IcingaApplication::PrintUsage(const string& programPath)
{
cout << "Syntax: " << programPath << " <config-file>" << endl;
2012-03-31 16:29:53 +02:00
}
EndpointManager::Ptr IcingaApplication::GetEndpointManager(void)
2012-03-31 16:29:53 +02:00
{
return m_EndpointManager;
2012-03-31 16:29:53 +02:00
}
2012-04-18 15:22:25 +02:00
int IcingaApplication::NewComponentHandler(const ConfigObjectEventArgs& ea)
{
string path;
2012-04-18 15:22:25 +02:00
ConfigObject::Ptr object = static_pointer_cast<ConfigObject>(ea.Source);
2012-04-01 19:32:41 +02:00
if (!object->GetProperty("path", &path)) {
#ifdef _WIN32
path = object->GetName() + ".dll";
#else /* _WIN32 */
2012-04-13 11:32:19 +02:00
path = object->GetName() + ".la";
#endif /* _WIN32 */
// TODO: try to figure out where the component is located */
}
LoadComponent(path, object);
return 0;
}
2012-04-18 15:22:25 +02:00
int IcingaApplication::DeletedComponentHandler(const ConfigObjectEventArgs& ea)
{
2012-04-18 15:22:25 +02:00
ConfigObject::Ptr object = static_pointer_cast<ConfigObject>(ea.Source);
Component::Ptr component = GetComponent(object->GetName());
UnregisterComponent(component);
return 0;
}
2012-04-18 15:22:25 +02:00
int IcingaApplication::NewRpcListenerHandler(const ConfigObjectEventArgs& ea)
{
2012-04-18 15:22:25 +02:00
ConfigObject::Ptr object = static_pointer_cast<ConfigObject>(ea.Source);
int port;
if (!object->GetPropertyInteger("port", &port))
throw Exception("Parameter 'port' is required for 'rpclistener' objects.");
Log("Creating JSON-RPC listener on port %d", port);
GetEndpointManager()->AddListener(port);
return 0;
}
2012-04-18 15:22:25 +02:00
int IcingaApplication::DeletedRpcListenerHandler(const ConfigObjectEventArgs& ea)
{
throw Exception("Unsupported operation.");
return 0;
}
2012-04-18 15:22:25 +02:00
int IcingaApplication::NewRpcConnectionHandler(const ConfigObjectEventArgs& ea)
{
2012-04-18 15:22:25 +02:00
ConfigObject::Ptr object = static_pointer_cast<ConfigObject>(ea.Source);
string hostname;
int port;
if (!object->GetProperty("hostname", &hostname))
throw Exception("Parameter 'hostname' is required for 'rpcconnection' objects.");
if (!object->GetPropertyInteger("port", &port))
throw Exception("Parameter 'port' is required for 'rpcconnection' objects.");
Log("Creating JSON-RPC connection to %s:%d", hostname.c_str(), port);
GetEndpointManager()->AddConnection(hostname, port);
return 0;
}
2012-04-18 15:22:25 +02:00
int IcingaApplication::DeletedRpcConnectionHandler(const ConfigObjectEventArgs& ea)
{
throw Exception("Unsupported operation.");
return 0;
}