tdesktop/Telegram/SourceFiles/codegen/emoji/options.cpp

65 lines
1.8 KiB
C++

/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#include "codegen/emoji/options.h"
#include <ostream>
#include <QtCore/QCoreApplication>
#include "codegen/common/logging.h"
namespace codegen {
namespace emoji {
namespace {
constexpr int kErrorOutputPathExpected = 902;
constexpr int kErrorReplacesPathExpected = 903;
constexpr int kErrorOneReplacesPathExpected = 904;
} // namespace
using common::logError;
Options parseOptions() {
Options result;
auto args = QCoreApplication::instance()->arguments();
for (int i = 1, count = args.size(); i < count; ++i) { // skip first
auto &arg = args.at(i);
// Output path
if (arg == "-o") {
if (++i == count) {
logError(kErrorOutputPathExpected, "Command Line") << "output path expected after -o";
return Options();
} else {
result.outputPath = args.at(i);
}
} else if (arg.startsWith("-o")) {
result.outputPath = arg.mid(2);
#ifdef SUPPORT_IMAGE_GENERATION
} else if (arg == "--images") {
result.writeImages = true;
#endif // SUPPORT_IMAGE_GENERATION
} else if (result.replacesPath.isEmpty()) {
result.replacesPath = arg;
} else {
logError(kErrorOneReplacesPathExpected, "Command Line") << "only one replaces path expected";
return Options();
}
}
if (result.outputPath.isEmpty()) {
logError(kErrorOutputPathExpected, "Command Line") << "output path expected";
return Options();
} else if (result.replacesPath.isEmpty()) {
logError(kErrorReplacesPathExpected, "Command Line") << "replaces path expected";
return Options();
}
return result;
}
} // namespace emoji
} // namespace codegen