icinga2/lib/remote/apifunction.hpp

60 lines
1.3 KiB
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2013-09-17 13:18:26 +02:00
#ifndef APIFUNCTION_H
#define APIFUNCTION_H
2013-09-17 13:18:26 +02:00
2014-05-25 16:23:35 +02:00
#include "remote/i2-remote.hpp"
#include "remote/messageorigin.hpp"
#include "base/registry.hpp"
#include "base/value.hpp"
#include "base/dictionary.hpp"
#include <vector>
2013-09-17 13:18:26 +02:00
namespace icinga
{
/**
* A function available over the internal cluster API.
2013-09-17 13:18:26 +02:00
*
* @ingroup base
2013-09-17 13:18:26 +02:00
*/
2018-01-04 06:11:04 +01:00
class ApiFunction final : public Object
2013-09-17 13:18:26 +02:00
{
public:
2014-11-07 12:32:25 +01:00
DECLARE_PTR_TYPEDEFS(ApiFunction);
2013-09-17 13:18:26 +02:00
typedef std::function<Value(const MessageOrigin::Ptr& origin, const Dictionary::Ptr&)> Callback;
ApiFunction(Callback function);
Value Invoke(const MessageOrigin::Ptr& origin, const Dictionary::Ptr& arguments);
static ApiFunction::Ptr GetByName(const String& name);
static void Register(const String& name, const ApiFunction::Ptr& function);
static void Unregister(const String& name);
private:
Callback m_Callback;
2013-09-17 13:18:26 +02:00
};
/**
* A registry for API functions.
*
* @ingroup base
*/
2017-12-31 07:22:16 +01:00
class ApiFunctionRegistry : public Registry<ApiFunctionRegistry, ApiFunction::Ptr>
{
public:
static ApiFunctionRegistry *GetInstance();
};
#define REGISTER_APIFUNCTION(name, ns, callback) \
INITIALIZE_ONCE([]() { \
ApiFunction::Ptr func = new ApiFunction(callback); \
ApiFunctionRegistry::GetInstance()->Register(#ns "::" #name, func); \
})
2013-09-17 13:18:26 +02:00
}
#endif /* APIFUNCTION_H */