2012-04-23 13:45:41 +02:00
|
|
|
#include "i2-demo.h"
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
string DemoComponent::GetName(void) const
|
|
|
|
{
|
|
|
|
return "democomponent";
|
|
|
|
}
|
|
|
|
|
|
|
|
void DemoComponent::Start(void)
|
|
|
|
{
|
|
|
|
m_DemoEndpoint = make_shared<VirtualEndpoint>();
|
2012-04-23 14:06:13 +02:00
|
|
|
m_DemoEndpoint->RegisterMethodHandler("demo::HelloWorld",
|
2012-04-24 07:16:34 +02:00
|
|
|
bind_weak(&DemoComponent::HelloWorldRequestHandler, shared_from_this()));
|
2012-04-23 13:45:41 +02:00
|
|
|
m_DemoEndpoint->RegisterMethodSource("demo::HelloWorld");
|
|
|
|
|
|
|
|
EndpointManager::Ptr endpointManager = GetIcingaApplication()->GetEndpointManager();
|
|
|
|
endpointManager->RegisterEndpoint(m_DemoEndpoint);
|
|
|
|
|
|
|
|
m_DemoTimer = make_shared<Timer>();
|
2012-04-24 07:16:34 +02:00
|
|
|
m_DemoTimer->SetInterval(5);
|
2012-04-23 13:45:41 +02:00
|
|
|
m_DemoTimer->OnTimerExpired += bind_weak(&DemoComponent::DemoTimerHandler, shared_from_this());
|
|
|
|
m_DemoTimer->Start();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DemoComponent::Stop(void)
|
|
|
|
{
|
2012-04-23 14:01:31 +02:00
|
|
|
IcingaApplication::Ptr app = GetIcingaApplication();
|
|
|
|
|
|
|
|
if (app) {
|
|
|
|
EndpointManager::Ptr endpointManager = app->GetEndpointManager();
|
|
|
|
endpointManager->UnregisterEndpoint(m_DemoEndpoint);
|
|
|
|
}
|
2012-04-23 13:45:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int DemoComponent::DemoTimerHandler(const TimerEventArgs& tea)
|
|
|
|
{
|
2012-04-26 16:45:00 +02:00
|
|
|
Application::Log("Sending multicast 'hello world' message.");
|
2012-04-23 13:45:41 +02:00
|
|
|
|
|
|
|
JsonRpcRequest request;
|
2012-04-23 14:01:31 +02:00
|
|
|
request.SetMethod("demo::HelloWorld");
|
2012-04-23 13:45:41 +02:00
|
|
|
|
|
|
|
EndpointManager::Ptr endpointManager = GetIcingaApplication()->GetEndpointManager();
|
2012-04-23 14:01:31 +02:00
|
|
|
endpointManager->SendMulticastRequest(m_DemoEndpoint, request);
|
2012-04-23 13:45:41 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-24 07:16:34 +02:00
|
|
|
int DemoComponent::HelloWorldRequestHandler(const NewRequestEventArgs& nrea)
|
2012-04-23 13:45:41 +02:00
|
|
|
{
|
2012-04-27 11:57:14 +02:00
|
|
|
Application::Log("Got 'hello world' from address=" + nrea.Sender->GetAddress() + ", identity=" + nrea.Sender->GetIdentity());
|
2012-04-23 13:45:41 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
EXPORT_COMPONENT(DemoComponent);
|