mirror of https://github.com/Icinga/icinga2.git
111 lines
3.6 KiB
C++
111 lines
3.6 KiB
C++
/******************************************************************************
|
|
* 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/replcommand.hpp"
|
|
#include "config/configcompiler.hpp"
|
|
#include "config/configcompilercontext.hpp"
|
|
#include "base/json.hpp"
|
|
#include "base/console.hpp"
|
|
#include <iostream>
|
|
|
|
using namespace icinga;
|
|
namespace po = boost::program_options;
|
|
|
|
REGISTER_CLICOMMAND("repl", ReplCommand);
|
|
|
|
String ReplCommand::GetDescription(void) const
|
|
{
|
|
return "Interprets Icinga script expressions.";
|
|
}
|
|
|
|
String ReplCommand::GetShortDescription(void) const
|
|
{
|
|
return "Icinga REPL console";
|
|
}
|
|
|
|
bool ReplCommand::IsHidden(void) const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void ReplCommand::InitParameters(boost::program_options::options_description& visibleDesc,
|
|
boost::program_options::options_description& hiddenDesc) const
|
|
{
|
|
}
|
|
|
|
/**
|
|
* The entry point for the "repl" CLI command.
|
|
*
|
|
* @returns An exit status.
|
|
*/
|
|
int ReplCommand::Run(const po::variables_map& vm, const std::vector<std::string>& ap) const
|
|
{
|
|
VMFrame frame;
|
|
|
|
while (std::cin.good()) {
|
|
std::cout << ConsoleColorTag(Console_ForegroundRed)
|
|
<< "=> "
|
|
<< ConsoleColorTag(Console_Normal);
|
|
|
|
std::string line;
|
|
std::getline(std::cin, line);
|
|
|
|
Expression *expr;
|
|
|
|
try {
|
|
ConfigCompilerContext::GetInstance()->Reset();
|
|
|
|
expr = ConfigCompiler::CompileText("<console>", line);
|
|
|
|
bool has_errors = false;
|
|
|
|
BOOST_FOREACH(const ConfigCompilerMessage& message, ConfigCompilerContext::GetInstance()->GetMessages()) {
|
|
if (message.Error)
|
|
has_errors = true;
|
|
|
|
std::cout << (message.Error ? "Error" : "Warning") << ": " << message.Text << "\n";
|
|
}
|
|
|
|
if (expr && !has_errors) {
|
|
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 << String(3 + di.FirstColumn, ' ');
|
|
std::cout << String(di.LastColumn - di.FirstColumn + 1, '^');
|
|
std::cout << "\n";
|
|
|
|
std::cout << ex.what() << "\n";
|
|
} catch (const std::exception& ex) {
|
|
std::cout << "Error: " << DiagnosticInformation(ex) << "\n";
|
|
}
|
|
|
|
delete expr;
|
|
}
|
|
|
|
return 0;
|
|
}
|