icinga2/lib/cli/consolecommand.cpp

162 lines
4.9 KiB
C++
Raw Normal View History

2014-11-23 12:35:13 +01:00
/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software Foundation *
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
#include "cli/consolecommand.hpp"
2014-11-23 12:35:13 +01:00
#include "config/configcompiler.hpp"
#include "base/json.hpp"
#include "base/console.hpp"
#include "base/application.hpp"
#include "base/unixsocket.hpp"
#include "base/utility.hpp"
#include "base/networkstream.hpp"
2014-11-23 12:35:13 +01:00
#include <iostream>
2014-11-23 12:35:13 +01:00
using namespace icinga;
namespace po = boost::program_options;
REGISTER_CLICOMMAND("console", ConsoleCommand);
2014-11-23 12:35:13 +01:00
String ConsoleCommand::GetDescription(void) const
2014-11-23 12:35:13 +01:00
{
return "Interprets Icinga script expressions.";
}
String ConsoleCommand::GetShortDescription(void) const
2014-11-23 12:35:13 +01:00
{
return "Icinga console";
2014-11-23 12:35:13 +01:00
}
ImpersonationLevel ConsoleCommand::GetImpersonationLevel(void) const
{
return ImpersonateNone;
}
void ConsoleCommand::InitParameters(boost::program_options::options_description& visibleDesc,
2014-11-23 12:35:13 +01:00
boost::program_options::options_description& hiddenDesc) const
{
visibleDesc.add_options()
("connect,c", po::value<std::string>(), "connect to an Icinga 2 instance")
;
2014-11-23 12:35:13 +01:00
}
/**
* The entry point for the "console" CLI command.
2014-11-23 12:35:13 +01:00
*
* @returns An exit status.
*/
int ConsoleCommand::Run(const po::variables_map& vm, const std::vector<std::string>& ap) const
2014-11-23 12:35:13 +01:00
{
ScriptFrame frame;
std::map<String, String> lines;
int next_line = 1;
2014-11-23 12:35:13 +01:00
String addr, session;
if (vm.count("connect")) {
addr = vm["connect"].as<std::string>();
session = Utility::NewUniqueID();
}
std::cout << "Icinga (version: " << Application::GetVersion() << ")\n";
2014-11-23 12:35:13 +01:00
while (std::cin.good()) {
String fileName = "<" + Convert::ToString(next_line) + ">";
next_line++;
std::cout << ConsoleColorTag(Console_ForegroundCyan)
<< fileName
<< ConsoleColorTag(Console_ForegroundRed)
<< " => "
<< ConsoleColorTag(Console_Normal);
2014-11-23 12:35:13 +01:00
std::string line;
std::getline(std::cin, line);
if (addr.IsEmpty()) {
Expression *expr;
try {
lines[fileName] = line;
2014-11-23 12:35:13 +01:00
expr = ConfigCompiler::CompileText(fileName, line);
if (expr) {
Value result = expr->Evaluate(frame);
std::cout << ConsoleColorTag(Console_ForegroundCyan);
if (!result.IsObject() || result.IsObjectType<Array>() || result.IsObjectType<Dictionary>())
std::cout << JsonEncode(result);
else
std::cout << result;
std::cout << ConsoleColorTag(Console_Normal) << "\n";
}
} catch (const ScriptError& ex) {
DebugInfo di = ex.GetDebugInfo();
std::cout << di.Path << ": " << lines[di.Path] << "\n";
std::cout << String(di.Path.GetLength() + 2, ' ');
std::cout << String(di.FirstColumn, ' ') << String(di.LastColumn - di.FirstColumn + 1, '^') << "\n";
std::cout << ex.what() << "\n";
} catch (const std::exception& ex) {
std::cout << "Error: " << DiagnosticInformation(ex) << "\n";
2014-11-23 12:35:13 +01:00
}
delete expr;
} else {
Socket::Ptr socket;
2014-12-16 21:25:58 +01:00
#ifndef _WIN32
if (addr.FindFirstOf("/") != String::NPos) {
UnixSocket::Ptr usocket = new UnixSocket();
usocket->Connect(addr);
socket = usocket;
} else {
2014-12-16 21:25:58 +01:00
#endif /* _WIN32 */
Log(LogCritical, "ConsoleCommand", "Sorry, TCP sockets aren't supported yet.");
return 1;
2014-12-16 21:25:58 +01:00
#ifndef _WIN32
2014-11-23 12:35:13 +01:00
}
2014-12-16 21:25:58 +01:00
#endif /* _WIN32 */
String query = "SCRIPT " + session + "\n" + line + "\n\n";
NetworkStream::Ptr ns = new NetworkStream(socket);
ns->Write(query.CStr(), query.GetLength());
2014-11-23 12:35:13 +01:00
String result;
char buf[1024];
while (!ns->IsEof()) {
size_t rc = ns->Read(buf, sizeof(buf));
result += String(buf, buf + rc);
}
if (result.GetLength() < 16) {
Log(LogCritical, "ConsoleCommand", "Received invalid response from Livestatus.");
continue;
}
std::cout << result.SubStr(16) << "\n";
}
2014-11-23 12:35:13 +01:00
}
return 0;
2014-11-23 12:35:13 +01:00
}