2015-07-30 17:50:17 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2016-01-12 08:29:59 +01:00
|
|
|
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
|
2015-07-30 17:50:17 +02:00
|
|
|
* *
|
|
|
|
* 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 *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef APIACTION_H
|
|
|
|
#define APIACTION_H
|
|
|
|
|
|
|
|
#include "remote/i2-remote.hpp"
|
|
|
|
#include "base/registry.hpp"
|
|
|
|
#include "base/value.hpp"
|
|
|
|
#include "base/dictionary.hpp"
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configobject.hpp"
|
2015-07-30 17:50:17 +02:00
|
|
|
#include <vector>
|
|
|
|
#include <boost/function.hpp>
|
|
|
|
#include <boost/algorithm/string/replace.hpp>
|
|
|
|
#include <boost/algorithm/string/classification.hpp>
|
|
|
|
#include <boost/algorithm/string/split.hpp>
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An API action.
|
|
|
|
*
|
|
|
|
* @ingroup remote
|
|
|
|
*/
|
|
|
|
class I2_REMOTE_API ApiAction : public Object
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DECLARE_PTR_TYPEDEFS(ApiAction);
|
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
typedef boost::function<Value(const ConfigObject::Ptr& target, const Dictionary::Ptr& params)> Callback;
|
2015-07-30 17:50:17 +02:00
|
|
|
|
|
|
|
ApiAction(const std::vector<String>& registerTypes, const Callback& function);
|
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
Value Invoke(const ConfigObject::Ptr& target, const Dictionary::Ptr& params);
|
2015-07-30 17:50:17 +02:00
|
|
|
|
|
|
|
const std::vector<String>& GetTypes(void) const;
|
|
|
|
|
|
|
|
static ApiAction::Ptr GetByName(const String& name);
|
|
|
|
static void Register(const String& name, const ApiAction::Ptr& action);
|
|
|
|
static void Unregister(const String& name);
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<String> m_Types;
|
|
|
|
Callback m_Callback;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A registry for API actions.
|
|
|
|
*
|
|
|
|
* @ingroup remote
|
|
|
|
*/
|
|
|
|
class I2_REMOTE_API ApiActionRegistry : public Registry<ApiActionRegistry, ApiAction::Ptr>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static ApiActionRegistry *GetInstance(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
#define REGISTER_APIACTION(name, types, callback) \
|
|
|
|
namespace { namespace UNIQUE_NAME(apia) { namespace apia ## name { \
|
|
|
|
void RegisterAction(void) \
|
|
|
|
{ \
|
|
|
|
String registerName = #name; \
|
|
|
|
boost::algorithm::replace_all(registerName, "_", "-"); \
|
|
|
|
std::vector<String> registerTypes; \
|
|
|
|
String typeNames = types; \
|
2015-08-24 08:01:33 +02:00
|
|
|
if (!typeNames.IsEmpty()) \
|
|
|
|
boost::algorithm::split(registerTypes, typeNames, boost::is_any_of(";")); \
|
2015-07-30 17:50:17 +02:00
|
|
|
ApiAction::Ptr action = new ApiAction(registerTypes, callback); \
|
|
|
|
ApiActionRegistry::GetInstance()->Register(registerName, action); \
|
|
|
|
} \
|
|
|
|
INITIALIZE_ONCE(RegisterAction); \
|
|
|
|
} } }
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* APIACTION_H */
|