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