1
0
Fork 0
arangodb/arangosh/Shell/ShellFeature.cpp

177 lines
5.1 KiB
C++

////////////////////////////////////////////////////////////////////////////////
/// DISCLAIMER
///
/// Copyright 2016 ArangoDB GmbH, Cologne, Germany
///
/// Licensed under the Apache License, Version 2.0 (the "License");
/// you may not use this file except in compliance with the License.
/// You may obtain a copy of the License at
///
/// http://www.apache.org/licenses/LICENSE-2.0
///
/// Unless required by applicable law or agreed to in writing, software
/// distributed under the License is distributed on an "AS IS" BASIS,
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/// See the License for the specific language governing permissions and
/// limitations under the License.
///
/// Copyright holder is ArangoDB GmbH, Cologne, Germany
///
/// @author Dr. Frank Celler
////////////////////////////////////////////////////////////////////////////////
#include "ShellFeature.h"
#include "ApplicationFeatures/ApplicationServer.h"
#include "Logger/Logger.h"
#include "ProgramOptions/ProgramOptions.h"
#include "Shell/ClientFeature.h"
#include "Shell/V8ShellFeature.h"
using namespace arangodb::basics;
using namespace arangodb::options;
namespace arangodb {
ShellFeature::ShellFeature(application_features::ApplicationServer& server, int* result)
: ApplicationFeature(server, "Shell"),
_jslint(),
_result(result),
_runMode(RunMode::INTERACTIVE),
_unitTestFilter("") {
requiresElevatedPrivileges(false);
setOptional(false);
startsAfter("V8ShellPhase");
}
void ShellFeature::collectOptions(std::shared_ptr<options::ProgramOptions> options) {
options->addOption("--jslint", "do not start as shell, run jslint instead",
new VectorParameter<StringParameter>(&_jslint));
options->addSection("javascript", "Configure the Javascript engine");
options->addOption("--javascript.execute", "execute Javascript code from file",
new VectorParameter<StringParameter>(&_executeScripts));
options->addOption("--javascript.execute-string",
"execute Javascript code from string",
new VectorParameter<StringParameter>(&_executeStrings));
options->addOption("--javascript.check-syntax",
"syntax check code Javascript code from file",
new VectorParameter<StringParameter>(&_checkSyntaxFiles));
options->addOption("--javascript.unit-tests",
"do not start as shell, run unit tests instead",
new VectorParameter<StringParameter>(&_unitTests));
options->addOption("--javascript.unit-test-filter",
"filter testcases in suite", new StringParameter(&_unitTestFilter));
}
void ShellFeature::validateOptions(std::shared_ptr<options::ProgramOptions> options) {
_positionals = options->processingResult()._positionals;
ClientFeature* client =
dynamic_cast<ClientFeature*>(server()->feature("Client"));
ConsoleFeature* console =
dynamic_cast<ConsoleFeature*>(server()->feature("Console"));
if (client->endpoint() == "none") {
client->disable();
}
if (!_jslint.empty()) {
client->disable();
}
size_t n = 0;
_runMode = RunMode::INTERACTIVE;
if (!_executeScripts.empty()) {
console->setQuiet(true);
_runMode = RunMode::EXECUTE_SCRIPT;
++n;
}
if (!_executeStrings.empty()) {
console->setQuiet(true);
_runMode = RunMode::EXECUTE_STRING;
++n;
}
if (!_checkSyntaxFiles.empty()) {
console->setQuiet(true);
_runMode = RunMode::CHECK_SYNTAX;
++n;
}
if (!_unitTests.empty()) {
console->setQuiet(true);
_runMode = RunMode::UNIT_TESTS;
++n;
}
if (!_jslint.empty()) {
console->setQuiet(true);
_runMode = RunMode::JSLINT;
++n;
}
if (1 < n) {
LOG_TOPIC("80a8c", ERR, arangodb::Logger::FIXME)
<< "you cannot specify more than one type ("
<< "jslint, execute, execute-string, check-syntax, unit-tests)";
}
}
void ShellFeature::start() {
*_result = EXIT_FAILURE;
V8ShellFeature* shell =
application_features::ApplicationServer::getFeature<V8ShellFeature>(
"V8Shell");
bool ok = false;
try {
switch (_runMode) {
case RunMode::INTERACTIVE:
ok = (shell->runShell(_positionals) == TRI_ERROR_NO_ERROR);
break;
case RunMode::EXECUTE_SCRIPT:
ok = shell->runScript(_executeScripts, _positionals, true);
break;
case RunMode::EXECUTE_STRING:
ok = shell->runString(_executeStrings, _positionals);
break;
case RunMode::CHECK_SYNTAX:
ok = shell->runScript(_checkSyntaxFiles, _positionals, false);
break;
case RunMode::UNIT_TESTS:
ok = shell->runUnitTests(_unitTests, _positionals, _unitTestFilter);
break;
case RunMode::JSLINT:
ok = shell->jslint(_jslint);
break;
}
} catch (std::exception const& ex) {
LOG_TOPIC("98f7d", ERR, arangodb::Logger::FIXME) << "caught exception: " << ex.what();
ok = false;
} catch (...) {
LOG_TOPIC("4a477", ERR, arangodb::Logger::FIXME) << "caught unknown exception";
ok = false;
}
*_result = ok ? EXIT_SUCCESS : EXIT_FAILURE;
}
} // namespace arangodb