2012-04-23 16:49:02 +02:00
|
|
|
#include "i2-icinga.h"
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
string DiscoveryComponent::GetName(void) const
|
|
|
|
{
|
|
|
|
return "discoverycomponent";
|
|
|
|
}
|
|
|
|
|
|
|
|
void DiscoveryComponent::Start(void)
|
|
|
|
{
|
|
|
|
m_DiscoveryEndpoint = make_shared<VirtualEndpoint>();
|
|
|
|
m_DiscoveryEndpoint->RegisterMethodSource("discovery::PeerAvailable");
|
|
|
|
m_DiscoveryEndpoint->RegisterMethodHandler("auth::Welcome",
|
|
|
|
bind_weak(&DiscoveryComponent::WelcomeMessageHandler, shared_from_this()));
|
|
|
|
m_DiscoveryEndpoint->RegisterMethodHandler("discovery::GetPeers",
|
|
|
|
bind_weak(&DiscoveryComponent::GetPeersMessageHandler, shared_from_this()));
|
|
|
|
|
2012-04-24 07:16:34 +02:00
|
|
|
GetEndpointManager()->RegisterEndpoint(m_DiscoveryEndpoint);
|
2012-04-23 16:49:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void DiscoveryComponent::Stop(void)
|
|
|
|
{
|
2012-04-24 07:16:34 +02:00
|
|
|
EndpointManager::Ptr mgr = GetEndpointManager();
|
2012-04-23 16:49:02 +02:00
|
|
|
|
2012-04-24 07:16:34 +02:00
|
|
|
if (mgr)
|
2012-04-23 16:49:02 +02:00
|
|
|
mgr->UnregisterEndpoint(m_DiscoveryEndpoint);
|
|
|
|
}
|
|
|
|
|
|
|
|
int DiscoveryComponent::NewEndpointHandler(const NewEndpointEventArgs& neea)
|
|
|
|
{
|
|
|
|
neea.Endpoint->OnIdentityChanged += bind_weak(&DiscoveryComponent::IdentityChangedHandler, shared_from_this());
|
|
|
|
|
|
|
|
/* TODO: register handler for new sink/source */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int DiscoveryComponent::IdentityChangedHandler(const EventArgs& neea)
|
|
|
|
{
|
|
|
|
/* TODO: send information about this client to all other clients */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int DiscoveryComponent::WelcomeMessageHandler(const NewRequestEventArgs& nrea)
|
|
|
|
{
|
|
|
|
JsonRpcRequest request;
|
|
|
|
request.SetMethod("discovery::GetPeers");
|
|
|
|
|
2012-04-24 07:16:34 +02:00
|
|
|
GetEndpointManager()->SendUnicastRequest(m_DiscoveryEndpoint, nrea.Sender, request);
|
2012-04-23 16:49:02 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int DiscoveryComponent::GetPeersMessageHandler(const NewRequestEventArgs& nrea)
|
|
|
|
{
|
|
|
|
/* TODO: send information about all available clients to this client */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|