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