2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
|
|
|
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
2012-05-11 13:33:57 +02:00
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
2012-05-10 12:06:41 +02:00
|
|
|
******************************************************************************/
|
|
|
|
|
2012-04-23 13:45:41 +02:00
|
|
|
#include "i2-demo.h"
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2012-05-08 15:14:20 +02:00
|
|
|
/**
|
|
|
|
* Starts the component.
|
|
|
|
*/
|
2012-04-23 13:45:41 +02:00
|
|
|
void DemoComponent::Start(void)
|
|
|
|
{
|
2013-01-18 09:36:28 +01:00
|
|
|
m_Endpoint = Endpoint::MakeEndpoint("demo", false);
|
2012-07-02 11:07:54 +02:00
|
|
|
m_Endpoint->RegisterTopicHandler("demo::HelloWorld",
|
2012-09-21 09:43:06 +02:00
|
|
|
boost::bind(&DemoComponent::HelloWorldRequestHandler, this, _2,
|
|
|
|
_3));
|
2012-04-23 13:45:41 +02:00
|
|
|
|
2012-06-15 19:32:41 +02:00
|
|
|
m_DemoTimer = boost::make_shared<Timer>();
|
2012-04-24 07:16:34 +02:00
|
|
|
m_DemoTimer->SetInterval(5);
|
2012-06-15 19:32:41 +02:00
|
|
|
m_DemoTimer->OnTimerExpired.connect(boost::bind(&DemoComponent::DemoTimerHandler, this));
|
2012-04-23 13:45:41 +02:00
|
|
|
m_DemoTimer->Start();
|
|
|
|
}
|
|
|
|
|
2012-05-08 15:14:20 +02:00
|
|
|
/**
|
|
|
|
* Stops the component.
|
|
|
|
*/
|
2012-04-23 13:45:41 +02:00
|
|
|
void DemoComponent::Stop(void)
|
|
|
|
{
|
2012-09-03 10:28:14 +02:00
|
|
|
m_Endpoint->Unregister();
|
2012-04-23 13:45:41 +02:00
|
|
|
}
|
|
|
|
|
2012-05-08 15:14:20 +02:00
|
|
|
/**
|
|
|
|
* Periodically sends a demo::HelloWorld message.
|
|
|
|
*
|
2012-05-10 13:46:04 +02:00
|
|
|
* @param - Event arguments for the timer.
|
2012-05-08 15:14:20 +02:00
|
|
|
*/
|
2012-06-15 19:32:41 +02:00
|
|
|
void DemoComponent::DemoTimerHandler(void)
|
2012-04-23 13:45:41 +02:00
|
|
|
{
|
2012-09-21 09:43:06 +02:00
|
|
|
Logger::Write(LogInformation, "demo", "Sending multicast 'hello"
|
|
|
|
" world' message.");
|
2012-04-23 13:45:41 +02:00
|
|
|
|
2012-05-21 12:53:38 +02:00
|
|
|
RequestMessage request;
|
2012-04-23 14:01:31 +02:00
|
|
|
request.SetMethod("demo::HelloWorld");
|
2012-04-23 13:45:41 +02:00
|
|
|
|
2012-09-21 09:43:06 +02:00
|
|
|
EndpointManager::GetInstance()->SendMulticastMessage(m_Endpoint,
|
|
|
|
request);
|
2012-04-23 13:45:41 +02:00
|
|
|
}
|
|
|
|
|
2012-05-08 15:14:20 +02:00
|
|
|
/**
|
|
|
|
* Processes demo::HelloWorld messages.
|
|
|
|
*/
|
2012-09-21 09:43:06 +02:00
|
|
|
void DemoComponent::HelloWorldRequestHandler(const Endpoint::Ptr& sender,
|
2013-02-02 22:13:11 +01:00
|
|
|
const RequestMessage&)
|
2012-04-23 13:45:41 +02:00
|
|
|
{
|
2012-11-22 12:04:32 +01:00
|
|
|
Logger::Write(LogInformation, "demo", "Got 'hello world' from identity=" +
|
2013-01-22 10:14:52 +01:00
|
|
|
(sender ? sender->GetName() : "(anonymous)"));
|
2012-04-23 13:45:41 +02:00
|
|
|
}
|
|
|
|
|
2012-05-12 16:12:26 +02:00
|
|
|
EXPORT_COMPONENT(demo, DemoComponent);
|