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)
|
|
|
|
{
|
|
|
|
m_ObjectsPath = filename;
|
|
|
|
|
2018-01-04 09:07:03 +01:00
|
|
|
auto *fp = new std::fstream();
|
2017-08-22 10:26:23 +02:00
|
|
|
try {
|
|
|
|
m_ObjectsTempFile = Utility::CreateTempFile(filename + ".XXXXXX", 0600, *fp);
|
|
|
|
} 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
|
|
|
|
|
|
|
if (!*fp)
|
2016-02-22 16:47:41 +01:00
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Could not open '" + m_ObjectsTempFile + "' file"));
|
2014-11-06 19:35:47 +01:00
|
|
|
|
2016-08-20 23:46:44 +02:00
|
|
|
m_ObjectsFP = fp;
|
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
|
|
|
{
|
2016-08-20 23:46:44 +02:00
|
|
|
delete m_ObjectsFP;
|
2017-12-14 15:37:20 +01:00
|
|
|
m_ObjectsFP = nullptr;
|
2016-08-05 09:09:20 +02:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
_unlink(m_ObjectsTempFile.CStr());
|
|
|
|
#else /* _WIN32 */
|
|
|
|
unlink(m_ObjectsTempFile.CStr());
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void ConfigCompilerContext::FinishObjectsFile()
|
2014-11-06 19:35:47 +01:00
|
|
|
{
|
2016-08-20 23:46:44 +02:00
|
|
|
delete m_ObjectsFP;
|
2017-12-14 15:37:20 +01:00
|
|
|
m_ObjectsFP = nullptr;
|
2014-11-06 19:35:47 +01:00
|
|
|
|
2019-04-10 13:44:13 +02:00
|
|
|
Utility::RenameFile(m_ObjectsTempFile, m_ObjectsPath);
|
2014-11-06 19:35:47 +01:00
|
|
|
}
|
|
|
|
|