mirror of https://gitee.com/bigwinds/arangodb
240 lines
7.5 KiB
C++
240 lines
7.5 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 "ApplicationFeatures/ConfigFeature.h"
|
|
|
|
#include <iostream>
|
|
|
|
#include "ApplicationFeatures/VersionFeature.h"
|
|
#include "Basics/ArangoGlobalContext.h"
|
|
#include "Basics/FileUtils.h"
|
|
#include "Basics/StringUtils.h"
|
|
#include "Basics/directories.h"
|
|
#include "Logger/Logger.h"
|
|
#include "ProgramOptions/IniFileParser.h"
|
|
#include "ProgramOptions/ProgramOptions.h"
|
|
#include "ProgramOptions/Section.h"
|
|
#include "ProgramOptions/Translator.h"
|
|
|
|
using namespace arangodb::basics;
|
|
using namespace arangodb::options;
|
|
|
|
namespace arangodb {
|
|
|
|
ConfigFeature::ConfigFeature(application_features::ApplicationServer& server,
|
|
std::string const& progname, std::string const& configFilename)
|
|
: ApplicationFeature(server, "Config"),
|
|
_file(configFilename),
|
|
_checkConfiguration(false),
|
|
_progname(progname) {
|
|
setOptional(false);
|
|
startsAfter("Logger");
|
|
startsAfter("ShellColors");
|
|
}
|
|
|
|
void ConfigFeature::collectOptions(std::shared_ptr<ProgramOptions> options) {
|
|
options->addOption("--configuration,-c", "the configuration file or 'none'",
|
|
new StringParameter(&_file));
|
|
|
|
// add --config as an alias for --configuration. both point to the same
|
|
// variable!
|
|
options->addOption("--config", "the configuration file or 'none'",
|
|
new StringParameter(&_file),
|
|
arangodb::options::makeFlags(arangodb::options::Flags::Hidden));
|
|
|
|
options->addOption("--define,-D",
|
|
"define key=value for a @key@ entry in config file",
|
|
new VectorParameter<StringParameter>(&_defines),
|
|
arangodb::options::makeFlags(arangodb::options::Flags::Hidden));
|
|
|
|
options->addOption("--check-configuration", "check the configuration and exit",
|
|
new BooleanParameter(&_checkConfiguration),
|
|
arangodb::options::makeFlags(arangodb::options::Flags::Hidden,
|
|
arangodb::options::Flags::Command));
|
|
}
|
|
|
|
void ConfigFeature::loadOptions(std::shared_ptr<ProgramOptions> options, char const* binaryPath) {
|
|
for (auto const& def : _defines) {
|
|
arangodb::options::DefineEnvironment(def);
|
|
}
|
|
|
|
loadConfigFile(options, _progname, binaryPath);
|
|
|
|
if (_checkConfiguration) {
|
|
exit(EXIT_SUCCESS);
|
|
}
|
|
}
|
|
|
|
void ConfigFeature::loadConfigFile(std::shared_ptr<ProgramOptions> options,
|
|
std::string const& progname, char const* binaryPath) {
|
|
if (StringUtils::tolower(_file) == "none") {
|
|
LOG_TOPIC("6cb22", DEBUG, Logger::CONFIG) << "using no config file at all";
|
|
return;
|
|
}
|
|
|
|
bool fatal = true;
|
|
|
|
auto version = dynamic_cast<VersionFeature*>(
|
|
application_features::ApplicationServer::lookupFeature("Version"));
|
|
|
|
if (version != nullptr && version->printVersion()) {
|
|
fatal = false;
|
|
}
|
|
|
|
// always prefer an explicitly given config file
|
|
if (!_file.empty()) {
|
|
if (!FileUtils::exists(_file)) {
|
|
LOG_TOPIC("f21f9", FATAL, Logger::CONFIG) << "cannot read config file '" << _file << "'";
|
|
FATAL_ERROR_EXIT();
|
|
}
|
|
|
|
auto local = _file + ".local";
|
|
|
|
IniFileParser parser(options.get());
|
|
|
|
if (FileUtils::exists(local)) {
|
|
LOG_TOPIC("9b20a", DEBUG, Logger::CONFIG) << "loading override '" << local << "'";
|
|
|
|
if (!parser.parse(local, true)) {
|
|
FATAL_ERROR_EXIT();
|
|
}
|
|
}
|
|
|
|
LOG_TOPIC("637c7", DEBUG, Logger::CONFIG) << "using user supplied config file '" << _file << "'";
|
|
|
|
if (!parser.parse(_file, true)) {
|
|
FATAL_ERROR_EXIT();
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
// clang-format off
|
|
//
|
|
// check the following location in this order:
|
|
//
|
|
// ./etc/relative/<PRGNAME>.conf
|
|
// <PRGNAME>.conf
|
|
// ${HOME}/.arangodb/<PRGNAME>.conf
|
|
// /etc/arangodb/<PRGNAME>.conf
|
|
//
|
|
// clang-format on
|
|
|
|
auto context = ArangoGlobalContext::CONTEXT;
|
|
std::string basename = progname;
|
|
bool checkArangoImp = (progname == "arangoimport");
|
|
|
|
if (!StringUtils::isSuffix(basename, ".conf")) {
|
|
basename += ".conf";
|
|
}
|
|
|
|
std::vector<std::string> locations;
|
|
|
|
std::string current = FileUtils::currentDirectory().result();
|
|
// ./etc/relative/ is always first choice, if it exists
|
|
locations.emplace_back(FileUtils::buildFilename(current, "etc", "relative"));
|
|
|
|
if (context != nullptr) {
|
|
auto root = context->runRoot();
|
|
// will resolve to ./build/etc/arangodb3/ in maintainer builds
|
|
auto location = FileUtils::buildFilename(root, _SYSCONFDIR_);
|
|
|
|
LOG_TOPIC("f39d1", TRACE, Logger::CONFIG) << "checking root location '" << root << "'";
|
|
|
|
locations.emplace_back(location);
|
|
}
|
|
|
|
// ./
|
|
locations.emplace_back(current);
|
|
|
|
// ~/.arangodb/
|
|
locations.emplace_back(
|
|
FileUtils::buildFilename(FileUtils::homeDirectory(), ".arangodb"));
|
|
locations.emplace_back(FileUtils::configDirectory(binaryPath));
|
|
|
|
std::string filename;
|
|
|
|
for (auto const& location : locations) {
|
|
auto name = FileUtils::buildFilename(location, basename);
|
|
LOG_TOPIC("393e7", TRACE, Logger::CONFIG) << "checking config file '" << name << "'";
|
|
|
|
if (FileUtils::exists(name)) {
|
|
LOG_TOPIC("e6bd8", DEBUG, Logger::CONFIG) << "found config file '" << name << "'";
|
|
filename = name;
|
|
break;
|
|
} else if (checkArangoImp) {
|
|
name = FileUtils::buildFilename(location, "arangoimp.conf");
|
|
LOG_TOPIC("b629e", TRACE, Logger::CONFIG) << "checking config file '" << name << "'";
|
|
if (FileUtils::exists(name)) {
|
|
LOG_TOPIC("fc54e", DEBUG, Logger::CONFIG) << "found config file '" << name << "'";
|
|
filename = name;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (filename.empty()) {
|
|
LOG_TOPIC("f4964", DEBUG, Logger::CONFIG) << "cannot find any config file";
|
|
}
|
|
|
|
IniFileParser parser(options.get());
|
|
std::string local = filename + ".local";
|
|
|
|
LOG_TOPIC("f6420", TRACE, Logger::CONFIG) << "checking override '" << local << "'";
|
|
|
|
if (FileUtils::exists(local)) {
|
|
LOG_TOPIC("3d2d0", DEBUG, Logger::CONFIG) << "loading override '" << local << "'";
|
|
|
|
if (!parser.parse(local, true)) {
|
|
FATAL_ERROR_EXIT();
|
|
}
|
|
} else {
|
|
LOG_TOPIC("d601e", TRACE, Logger::CONFIG) << "no override file found";
|
|
}
|
|
|
|
LOG_TOPIC("02398", DEBUG, Logger::CONFIG) << "loading '" << filename << "'";
|
|
|
|
if (filename.empty()) {
|
|
if (fatal) {
|
|
size_t i = 0;
|
|
std::string locationMsg = "(tried locations: ";
|
|
for (auto const& it : locations) {
|
|
if (i++ > 0) {
|
|
locationMsg += ", ";
|
|
}
|
|
locationMsg += "'" + FileUtils::buildFilename(it, basename) + "'";
|
|
}
|
|
locationMsg += ")";
|
|
options->failNotice("cannot find configuration file\n\n" + locationMsg);
|
|
exit(EXIT_FAILURE);
|
|
} else {
|
|
return;
|
|
}
|
|
}
|
|
|
|
if (!parser.parse(filename, true)) {
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
}
|
|
|
|
} // namespace arangodb
|