mirror of https://github.com/Icinga/icinga2.git
37 lines
759 B
C++
37 lines
759 B
C++
#include "i2-base.h"
|
|
|
|
using namespace icinga;
|
|
|
|
map<String, ScriptFunction::Ptr> ScriptFunction::m_Functions;
|
|
|
|
ScriptFunction::ScriptFunction(const Callback& function)
|
|
: m_Callback(function)
|
|
{ }
|
|
|
|
void ScriptFunction::Register(const String& name, const ScriptFunction::Ptr& function)
|
|
{
|
|
m_Functions[name] = function;
|
|
}
|
|
|
|
void ScriptFunction::Unregister(const String& name)
|
|
{
|
|
m_Functions.erase(name);
|
|
}
|
|
|
|
ScriptFunction::Ptr ScriptFunction::GetByName(const String& name)
|
|
{
|
|
map<String, ScriptFunction::Ptr>::iterator it;
|
|
|
|
it = m_Functions.find(name);
|
|
|
|
if (it == m_Functions.end())
|
|
return ScriptFunction::Ptr();
|
|
|
|
return it->second;
|
|
}
|
|
|
|
void ScriptFunction::Invoke(const ScriptTask::Ptr& task, const vector<Value>& arguments)
|
|
{
|
|
m_Callback(task, arguments);
|
|
}
|