2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-06-25 03:21:25 -04:00
|
|
|
|
2022-08-01 11:44:05 -04:00
|
|
|
#include "base/atomic-file.hpp"
|
2014-12-14 05:33:45 -05:00
|
|
|
#include "base/scriptglobal.hpp"
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/singleton.hpp"
|
2014-10-20 15:14:00 -04:00
|
|
|
#include "base/logger.hpp"
|
|
|
|
|
#include "base/stdiostream.hpp"
|
|
|
|
|
#include "base/netstring.hpp"
|
2014-10-26 14:59:49 -04:00
|
|
|
#include "base/json.hpp"
|
2014-10-20 15:14:00 -04:00
|
|
|
#include "base/convert.hpp"
|
2014-12-14 05:33:45 -05:00
|
|
|
#include "base/objectlock.hpp"
|
2014-12-15 04:16:06 -05:00
|
|
|
#include "base/exception.hpp"
|
2018-08-07 07:55:41 -04:00
|
|
|
#include "base/namespace.hpp"
|
2019-04-01 12:54:13 -04:00
|
|
|
#include "base/utility.hpp"
|
2014-10-20 15:14:00 -04:00
|
|
|
#include <fstream>
|
2013-06-25 03:21:25 -04:00
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
2018-08-07 07:55:41 -04:00
|
|
|
Namespace::Ptr ScriptGlobal::m_Globals = new Namespace();
|
2013-12-04 04:41:26 -05:00
|
|
|
|
2014-12-14 05:33:45 -05:00
|
|
|
Value ScriptGlobal::Get(const String& name, const Value *defaultValue)
|
2013-12-04 04:41:26 -05:00
|
|
|
{
|
2016-08-16 16:03:30 -04:00
|
|
|
Value result;
|
|
|
|
|
|
|
|
|
|
if (!m_Globals->Get(name, &result)) {
|
2014-10-16 06:27:09 -04:00
|
|
|
if (defaultValue)
|
|
|
|
|
return *defaultValue;
|
|
|
|
|
|
2014-03-20 10:31:48 -04:00
|
|
|
BOOST_THROW_EXCEPTION(std::invalid_argument("Tried to access undefined script variable '" + name + "'"));
|
2014-10-16 06:27:09 -04:00
|
|
|
}
|
2013-12-04 04:41:26 -05:00
|
|
|
|
2016-08-16 16:03:30 -04:00
|
|
|
return result;
|
2013-12-04 04:41:26 -05:00
|
|
|
}
|
|
|
|
|
|
2023-02-08 05:50:40 -05:00
|
|
|
void ScriptGlobal::Set(const String& name, const Value& value)
|
2013-12-04 04:41:26 -05:00
|
|
|
{
|
2018-01-04 12:24:45 -05:00
|
|
|
std::vector<String> tokens = name.Split(".");
|
2016-08-09 04:40:29 -04:00
|
|
|
|
|
|
|
|
if (tokens.empty())
|
|
|
|
|
BOOST_THROW_EXCEPTION(std::invalid_argument("Name must not be empty"));
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
ObjectLock olock(m_Globals);
|
|
|
|
|
|
2018-08-07 07:55:41 -04:00
|
|
|
Namespace::Ptr parent = m_Globals;
|
2016-08-09 04:40:29 -04:00
|
|
|
|
|
|
|
|
for (std::vector<String>::size_type i = 0; i < tokens.size(); i++) {
|
|
|
|
|
const String& token = tokens[i];
|
|
|
|
|
|
|
|
|
|
if (i + 1 != tokens.size()) {
|
2016-08-16 16:03:30 -04:00
|
|
|
Value vparent;
|
|
|
|
|
|
|
|
|
|
if (!parent->Get(token, &vparent)) {
|
2018-08-07 07:55:41 -04:00
|
|
|
Namespace::Ptr dict = new Namespace();
|
2016-08-09 04:40:29 -04:00
|
|
|
parent->Set(token, dict);
|
|
|
|
|
parent = dict;
|
|
|
|
|
} else {
|
2016-08-16 16:03:30 -04:00
|
|
|
parent = vparent;
|
2016-08-09 04:40:29 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-10 09:55:10 -05:00
|
|
|
parent->Set(tokens[tokens.size() - 1], value);
|
2016-08-09 04:40:29 -04:00
|
|
|
}
|
2013-12-04 04:41:26 -05:00
|
|
|
}
|
|
|
|
|
|
2018-08-07 07:55:41 -04:00
|
|
|
void ScriptGlobal::SetConst(const String& name, const Value& value)
|
|
|
|
|
{
|
2023-01-03 06:02:51 -05:00
|
|
|
GetGlobals()->Set(name, value, true);
|
2018-08-07 07:55:41 -04:00
|
|
|
}
|
|
|
|
|
|
2014-12-15 06:57:40 -05:00
|
|
|
bool ScriptGlobal::Exists(const String& name)
|
|
|
|
|
{
|
|
|
|
|
return m_Globals->Contains(name);
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-07 07:55:41 -04:00
|
|
|
Namespace::Ptr ScriptGlobal::GetGlobals()
|
2014-03-30 09:04:53 -04:00
|
|
|
{
|
2014-12-14 05:33:45 -05:00
|
|
|
return m_Globals;
|
2014-03-30 09:04:53 -04:00
|
|
|
}
|
|
|
|
|
|
2014-12-14 05:33:45 -05:00
|
|
|
void ScriptGlobal::WriteToFile(const String& filename)
|
2014-10-20 15:14:00 -04:00
|
|
|
{
|
2014-12-14 05:33:45 -05:00
|
|
|
Log(LogInformation, "ScriptGlobal")
|
2014-10-20 15:14:00 -04:00
|
|
|
<< "Dumping variables to file '" << filename << "'";
|
|
|
|
|
|
2022-08-01 11:44:05 -04:00
|
|
|
AtomicFile fp (filename, 0600);
|
2014-11-08 15:17:16 -05:00
|
|
|
StdioStream::Ptr sfp = new StdioStream(&fp, false);
|
2014-10-20 15:14:00 -04:00
|
|
|
|
2014-12-14 05:33:45 -05:00
|
|
|
ObjectLock olock(m_Globals);
|
2018-08-07 07:55:41 -04:00
|
|
|
for (const Namespace::Pair& kv : m_Globals) {
|
2023-01-03 06:02:51 -05:00
|
|
|
Value value = kv.second.Val;
|
2014-10-20 15:14:00 -04:00
|
|
|
|
|
|
|
|
if (value.IsObject())
|
|
|
|
|
value = Convert::ToString(value);
|
|
|
|
|
|
2018-01-11 05:17:38 -05:00
|
|
|
Dictionary::Ptr persistentVariable = new Dictionary({
|
|
|
|
|
{ "name", kv.first },
|
|
|
|
|
{ "value", value }
|
|
|
|
|
});
|
2014-10-20 15:14:00 -04:00
|
|
|
|
2014-10-26 14:59:49 -04:00
|
|
|
String json = JsonEncode(persistentVariable);
|
2014-10-20 15:14:00 -04:00
|
|
|
|
|
|
|
|
NetString::WriteStringToStream(sfp, json);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sfp->Close();
|
2022-08-01 11:44:05 -04:00
|
|
|
fp.Commit();
|
2014-10-20 15:14:00 -04:00
|
|
|
}
|