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