2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-02-05 13:06:42 +01:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "config/configcompilercontext.hpp"
|
|
|
|
#include "base/singleton.hpp"
|
2014-11-06 19:35:47 +01:00
|
|
|
#include "base/json.hpp"
|
|
|
|
#include "base/netstring.hpp"
|
2014-12-15 10:16:06 +01:00
|
|
|
#include "base/exception.hpp"
|
2017-08-22 10:26:23 +02:00
|
|
|
#include "base/application.hpp"
|
2019-04-01 18:54:13 +02:00
|
|
|
#include "base/utility.hpp"
|
2013-02-05 13:06:42 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
ConfigCompilerContext *ConfigCompilerContext::GetInstance()
|
2013-02-05 13:06:42 +01:00
|
|
|
{
|
2013-08-20 11:06:04 +02:00
|
|
|
return Singleton<ConfigCompilerContext>::GetInstance();
|
2013-11-03 10:41:30 +01:00
|
|
|
}
|
|
|
|
|
2014-11-06 19:35:47 +01:00
|
|
|
void ConfigCompilerContext::OpenObjectsFile(const String& filename)
|
|
|
|
{
|
2017-08-22 10:26:23 +02:00
|
|
|
try {
|
2022-08-01 17:44:05 +02:00
|
|
|
m_ObjectsFP = std::make_unique<AtomicFile>(filename, 0600);
|
2017-08-22 10:26:23 +02:00
|
|
|
} catch (const std::exception& ex) {
|
|
|
|
Log(LogCritical, "cli", "Could not create temporary objects file: " + DiagnosticInformation(ex, false));
|
|
|
|
Application::Exit(1);
|
|
|
|
}
|
2014-11-06 19:35:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigCompilerContext::WriteObject(const Dictionary::Ptr& object)
|
|
|
|
{
|
|
|
|
if (!m_ObjectsFP)
|
|
|
|
return;
|
|
|
|
|
|
|
|
String json = JsonEncode(object);
|
|
|
|
|
|
|
|
{
|
2021-02-02 10:16:04 +01:00
|
|
|
std::unique_lock<std::mutex> lock(m_Mutex);
|
2016-08-20 23:46:44 +02:00
|
|
|
NetString::WriteStringToStream(*m_ObjectsFP, json);
|
2014-11-06 19:35:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void ConfigCompilerContext::CancelObjectsFile()
|
2016-08-05 09:09:20 +02:00
|
|
|
{
|
2022-11-21 12:37:07 +01:00
|
|
|
if (!m_ObjectsFP)
|
|
|
|
return;
|
|
|
|
|
2022-08-01 17:44:05 +02:00
|
|
|
m_ObjectsFP.reset(nullptr);
|
2016-08-05 09:09:20 +02:00
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void ConfigCompilerContext::FinishObjectsFile()
|
2014-11-06 19:35:47 +01:00
|
|
|
{
|
2022-11-21 12:37:07 +01:00
|
|
|
if (!m_ObjectsFP)
|
|
|
|
return;
|
|
|
|
|
2022-08-01 17:44:05 +02:00
|
|
|
m_ObjectsFP->Commit();
|
|
|
|
m_ObjectsFP.reset(nullptr);
|
2014-11-06 19:35:47 +01:00
|
|
|
}
|