2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-10-30 15:22:55 +01:00
|
|
|
|
|
|
|
#include "cli/variableutility.hpp"
|
|
|
|
#include "base/logger.hpp"
|
|
|
|
#include "base/application.hpp"
|
|
|
|
#include "base/utility.hpp"
|
|
|
|
#include "base/stdiostream.hpp"
|
|
|
|
#include "base/netstring.hpp"
|
|
|
|
#include "base/json.hpp"
|
|
|
|
#include "remote/jsonrpc.hpp"
|
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
Value VariableUtility::GetVariable(const String& name)
|
|
|
|
{
|
2018-08-09 15:37:23 +02:00
|
|
|
String varsfile = Configuration::VarsPath;
|
2014-10-30 15:22:55 +01:00
|
|
|
|
|
|
|
std::fstream fp;
|
|
|
|
fp.open(varsfile.CStr(), std::ios_base::in);
|
|
|
|
|
2014-11-08 21:17:16 +01:00
|
|
|
StdioStream::Ptr sfp = new StdioStream(&fp, false);
|
2014-10-30 15:22:55 +01:00
|
|
|
|
|
|
|
String message;
|
2015-02-14 16:34:36 +01:00
|
|
|
StreamReadContext src;
|
2015-02-15 14:42:53 +01:00
|
|
|
for (;;) {
|
|
|
|
StreamReadStatus srs = NetString::ReadStringFromStream(sfp, &message, src);
|
|
|
|
|
|
|
|
if (srs == StatusEof)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (srs != StatusNewItem)
|
|
|
|
continue;
|
2014-10-30 15:22:55 +01:00
|
|
|
|
|
|
|
Dictionary::Ptr variable = JsonDecode(message);
|
|
|
|
|
|
|
|
if (variable->Get("name") == name) {
|
|
|
|
return variable->Get("value");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Empty;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VariableUtility::PrintVariables(std::ostream& outfp)
|
|
|
|
{
|
2018-08-09 15:37:23 +02:00
|
|
|
String varsfile = Configuration::VarsPath;
|
2014-10-30 15:22:55 +01:00
|
|
|
|
|
|
|
std::fstream fp;
|
|
|
|
fp.open(varsfile.CStr(), std::ios_base::in);
|
|
|
|
|
2014-11-08 21:17:16 +01:00
|
|
|
StdioStream::Ptr sfp = new StdioStream(&fp, false);
|
2014-10-30 15:22:55 +01:00
|
|
|
unsigned long variables_count = 0;
|
|
|
|
|
|
|
|
String message;
|
2015-02-14 16:34:36 +01:00
|
|
|
StreamReadContext src;
|
2015-02-15 14:42:53 +01:00
|
|
|
for (;;) {
|
|
|
|
StreamReadStatus srs = NetString::ReadStringFromStream(sfp, &message, src);
|
|
|
|
|
|
|
|
if (srs == StatusEof)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (srs != StatusNewItem)
|
|
|
|
continue;
|
2014-10-30 15:22:55 +01:00
|
|
|
|
|
|
|
Dictionary::Ptr variable = JsonDecode(message);
|
|
|
|
outfp << variable->Get("name") << " = " << variable->Get("value") << "\n";
|
|
|
|
variables_count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
sfp->Close();
|
|
|
|
fp.close();
|
|
|
|
|
|
|
|
Log(LogNotice, "cli")
|
2017-12-19 15:50:05 +01:00
|
|
|
<< "Parsed " << variables_count << " variables.";
|
2014-10-30 15:22:55 +01:00
|
|
|
}
|