mpd/test/read_conf.cxx

42 lines
1015 B
C++
Raw Permalink Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
2009-04-10 09:14:12 +02:00
2018-07-17 21:55:15 +02:00
#include "config/Data.hxx"
#include "config/Param.hxx"
#include "config/File.hxx"
#include "lib/fmt/RuntimeError.hxx"
#include "fs/Path.hxx"
#include "fs/NarrowPath.hxx"
2018-07-17 21:56:43 +02:00
#include "util/PrintException.hxx"
2009-04-10 09:14:12 +02:00
2014-01-07 23:57:39 +01:00
#include <stdio.h>
#include <stdlib.h>
2009-04-10 09:14:12 +02:00
int main(int argc, char **argv)
try {
2009-04-10 09:14:12 +02:00
if (argc != 3) {
fprintf(stderr, "Usage: read_conf FILE SETTING\n");
return EXIT_FAILURE;
2009-04-10 09:14:12 +02:00
}
const FromNarrowPath config_path = argv[1];
const char *name = argv[2];
2009-04-10 09:14:12 +02:00
const auto option = ParseConfigOptionName(name);
if (option == ConfigOption::MAX)
throw FmtRuntimeError("Unknown setting: {}", name);
2018-07-17 21:55:15 +02:00
ConfigData config;
ReadConfigFile(config, config_path);
2018-07-17 21:55:15 +02:00
const auto *param = config.GetParam(option);
if (param == nullptr)
throw FmtRuntimeError("No such setting: {}", name);
2009-04-10 09:14:12 +02:00
2018-07-17 21:55:15 +02:00
printf("%s\n", param->value.c_str());
return EXIT_SUCCESS;
2018-07-17 21:56:43 +02:00
} catch (...) {
PrintException(std::current_exception());
return EXIT_FAILURE;
2018-07-17 21:56:43 +02:00
}