2018-12-31 20:04:05 +01:00
|
|
|
//
|
2020-01-01 02:23:48 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
|
|
|
#include "td/utils/Slice.h"
|
|
|
|
#include "td/utils/Status.h"
|
|
|
|
#include "td/utils/StringBuilder.h"
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
namespace td {
|
2018-02-12 09:40:52 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
class OptionsParser {
|
|
|
|
class Option {
|
|
|
|
public:
|
2020-01-19 01:02:56 +01:00
|
|
|
enum class Type { NoArg, Arg, OptionalArg };
|
2018-12-31 20:04:05 +01:00
|
|
|
Type type;
|
|
|
|
char short_key;
|
|
|
|
std::string long_key;
|
|
|
|
std::string description;
|
|
|
|
std::function<Status(Slice)> arg_callback;
|
|
|
|
};
|
|
|
|
|
2018-10-26 16:11:20 +02:00
|
|
|
public:
|
2019-07-06 13:29:15 +02:00
|
|
|
void set_description(std::string description);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void add_option(Option::Type type, char short_key, Slice long_key, Slice description,
|
2019-07-06 13:29:15 +02:00
|
|
|
std::function<Status(Slice)> callback);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-07-06 13:29:15 +02:00
|
|
|
void add_option(char short_key, Slice long_key, Slice description, std::function<Status(Slice)> callback);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-07-06 13:29:15 +02:00
|
|
|
void add_option(char short_key, Slice long_key, Slice description, std::function<Status(void)> callback);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-07-06 13:29:15 +02:00
|
|
|
Result<int> run(int argc, char *argv[]) TD_WARN_UNUSED_RESULT;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-07-06 13:29:15 +02:00
|
|
|
friend StringBuilder &operator<<(StringBuilder &sb, const OptionsParser &o);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<Option> options_;
|
|
|
|
std::string description_;
|
|
|
|
};
|
2018-02-12 09:40:52 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
} // namespace td
|