CLI11
C++11 Command Line Interface Parser
Loading...
Searching...
No Matches
FormatterFwd.hpp
1// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner
2// under NSF AWARD 1414736 and by the respective contributors.
3// All rights reserved.
4//
5// SPDX-License-Identifier: BSD-3-Clause
6
7#pragma once
8
9// IWYU pragma: private, include "CLI/CLI.hpp"
10
11// [CLI11:public_includes:set]
12#include <functional>
13#include <map>
14#include <string>
15#include <utility>
16#include <vector>
17// [CLI11:public_includes:end]
18
19#include "StringTools.hpp"
20
21namespace CLI {
22// [CLI11:formatter_fwd_hpp:verbatim]
23
24class Option;
25class App;
26
31
32enum class AppFormatMode : std::uint8_t {
33 Normal,
34 All,
35 Sub,
36};
37
43 protected:
46
48 std::size_t column_width_{30};
49
52
54 std::size_t right_column_width_{65};
55
58
60 std::size_t footer_paragraph_width_{80};
61
64 bool enable_footer_formatting_{true};
65
68 bool enable_option_type_names_{true};
69 bool enable_default_flag_values_{true};
72 std::map<std::string, std::string> labels_{};
73
77
78 public:
79 FormatterBase() = default;
80 FormatterBase(const FormatterBase &) = default;
81 FormatterBase(FormatterBase &&) = default;
82 FormatterBase &operator=(const FormatterBase &) = default;
83 FormatterBase &operator=(FormatterBase &&) = default;
84
86 virtual ~FormatterBase() noexcept {} // NOLINT(modernize-use-equals-default)
87
89 virtual std::string make_help(const App *, std::string, AppFormatMode) const = 0;
90
94
96 void label(std::string key, std::string val) { labels_[key] = val; }
97
99 void column_width(std::size_t val) { column_width_ = val; }
100
103 void long_option_alignment_ratio(float ratio) {
105 (ratio >= 0.0f) ? ((ratio <= 1.0f) ? ratio : 1.0f / ratio) : ((ratio < -1.0f) ? 1.0f / (-ratio) : -ratio);
106 }
107
109 void right_column_width(std::size_t val) { right_column_width_ = val; }
110
113
115 void footer_paragraph_width(std::size_t val) { footer_paragraph_width_ = val; }
119 void enable_footer_formatting(bool value = true) { enable_footer_formatting_ = value; }
120
122 void enable_option_defaults(bool value = true) { enable_option_defaults_ = value; }
124 void enable_option_type_names(bool value = true) { enable_option_type_names_ = value; }
126 void enable_default_flag_values(bool value = true) { enable_default_flag_values_ = value; }
130
132 CLI11_NODISCARD std::string get_label(std::string key) const {
133 if(labels_.find(key) == labels_.end())
134 return key;
135 return labels_.at(key);
136 }
137
139 CLI11_NODISCARD std::size_t get_column_width() const { return column_width_; }
140
142 CLI11_NODISCARD std::size_t get_right_column_width() const { return right_column_width_; }
143
145 CLI11_NODISCARD std::size_t get_description_paragraph_width() const { return description_paragraph_width_; }
146
148 CLI11_NODISCARD std::size_t get_footer_paragraph_width() const { return footer_paragraph_width_; }
149
152 CLI11_NODISCARD float get_long_option_alignment_ratio() const { return long_option_alignment_ratio_; }
153
156
158 CLI11_NODISCARD bool is_footer_paragraph_formatting_enabled() const { return enable_footer_formatting_; }
159
161 CLI11_NODISCARD bool is_option_defaults_enabled() const { return enable_option_defaults_; }
162
164 CLI11_NODISCARD bool is_option_type_names_enabled() const { return enable_option_type_names_; }
165
167 CLI11_NODISCARD bool is_default_flag_values_enabled() const { return enable_default_flag_values_; }
168
170};
171
173class FormatterLambda final : public FormatterBase {
174 using funct_t = std::function<std::string(const App *, std::string, AppFormatMode)>;
175
177 funct_t lambda_;
178
179 public:
181 explicit FormatterLambda(funct_t funct) : lambda_(std::move(funct)) {}
182
184 ~FormatterLambda() noexcept override {} // NOLINT(modernize-use-equals-default)
185
187 std::string make_help(const App *app, std::string name, AppFormatMode mode) const override {
188 return lambda_(app, name, mode);
189 }
190};
191
194class Formatter : public FormatterBase {
195 public:
196 Formatter() = default;
197 Formatter(const Formatter &) = default;
198 Formatter(Formatter &&) = default;
199 Formatter &operator=(const Formatter &) = default;
200 Formatter &operator=(Formatter &&) = default;
201
204
207 CLI11_NODISCARD virtual std::string
208 make_group(std::string group, bool is_positional, std::vector<const Option *> opts) const;
209
211 virtual std::string make_positionals(const App *app) const;
212
214 std::string make_groups(const App *app, AppFormatMode mode) const;
215
217 virtual std::string make_subcommands(const App *app, AppFormatMode mode) const;
218
220 virtual std::string make_subcommand(const App *sub) const;
221
223 virtual std::string make_expanded(const App *sub, AppFormatMode mode) const;
224
226 virtual std::string make_footer(const App *app) const;
227
229 virtual std::string make_description(const App *app) const;
230
232 virtual std::string make_usage(const App *app, std::string name) const;
233
235 std::string make_help(const App *app, std::string, AppFormatMode mode) const override;
236
240
242 virtual std::string make_option(const Option *, bool) const;
243
245 virtual std::string make_option_name(const Option *, bool) const;
246
248 virtual std::string make_option_opts(const Option *) const;
249
251 virtual std::string make_option_desc(const Option *) const;
252
254 virtual std::string make_option_usage(const Option *opt) const;
255
257};
258
259// [CLI11:formatter_fwd_hpp:end]
260} // namespace CLI
Creates a command line program, with very few defaults.
Definition App.hpp:98
Definition FormatterFwd.hpp:42
void footer_paragraph_width(std::size_t val)
Set the footer paragraph width.
Definition FormatterFwd.hpp:115
std::size_t column_width_
The width of the left column (options/flags/subcommands)
Definition FormatterFwd.hpp:48
void right_column_width(std::size_t val)
Set the right column width (description of options/flags/subcommands)
Definition FormatterFwd.hpp:109
std::map< std::string, std::string > labels_
The required help printout labels (user changeable) Values are Needs, Excludes, etc.
Definition FormatterFwd.hpp:72
std::size_t footer_paragraph_width_
The width of the footer paragraph.
Definition FormatterFwd.hpp:60
CLI11_NODISCARD std::size_t get_column_width() const
Get the current left column width (options/flags/subcommands)
Definition FormatterFwd.hpp:139
CLI11_NODISCARD float get_long_option_alignment_ratio() const
Get the current alignment ratio for long options within the left column.
Definition FormatterFwd.hpp:152
bool enable_option_defaults_
options controlling formatting of options
Definition FormatterFwd.hpp:67
void enable_default_flag_values(bool value=true)
enable default flag values to be printed
Definition FormatterFwd.hpp:126
CLI11_NODISCARD bool is_option_defaults_enabled() const
Get the current status of whether option defaults are printed.
Definition FormatterFwd.hpp:161
CLI11_NODISCARD std::size_t get_footer_paragraph_width() const
Get the current footer paragraph width.
Definition FormatterFwd.hpp:148
void long_option_alignment_ratio(float ratio)
Definition FormatterFwd.hpp:103
CLI11_NODISCARD std::string get_label(std::string key) const
Get the current value of a name (REQUIRED, etc.)
Definition FormatterFwd.hpp:132
CLI11_NODISCARD std::size_t get_description_paragraph_width() const
Get the current description paragraph width at the top of help.
Definition FormatterFwd.hpp:145
void enable_option_defaults(bool value=true)
enable option defaults to be printed
Definition FormatterFwd.hpp:122
void enable_description_formatting(bool value=true)
enable formatting for description paragraph
Definition FormatterFwd.hpp:117
void label(std::string key, std::string val)
Set the "REQUIRED" or other labels.
Definition FormatterFwd.hpp:96
bool enable_description_formatting_
options controlling formatting for footer and descriptions
Definition FormatterFwd.hpp:63
void enable_footer_formatting(bool value=true)
disable formatting for footer paragraph
Definition FormatterFwd.hpp:119
CLI11_NODISCARD bool is_default_flag_values_enabled() const
Get the current status of whether default flag values are printed.
Definition FormatterFwd.hpp:167
CLI11_NODISCARD bool is_description_paragraph_formatting_enabled() const
Get the current status of description paragraph formatting.
Definition FormatterFwd.hpp:155
CLI11_NODISCARD std::size_t get_right_column_width() const
Get the current right column width (description of options/flags/subcommands)
Definition FormatterFwd.hpp:142
virtual ~FormatterBase() noexcept
Adding a destructor in this form to work around bug in GCC 4.7.
Definition FormatterFwd.hpp:86
virtual std::string make_help(const App *, std::string, AppFormatMode) const =0
This is the key method that puts together help.
void column_width(std::size_t val)
Set the left column width (options/flags/subcommands)
Definition FormatterFwd.hpp:99
std::size_t right_column_width_
The width of the right column (description of options/flags/subcommands)
Definition FormatterFwd.hpp:54
void enable_option_type_names(bool value=true)
enable option type names to be printed
Definition FormatterFwd.hpp:124
float long_option_alignment_ratio_
The alignment ratio for long options within the left column.
Definition FormatterFwd.hpp:51
std::size_t description_paragraph_width_
The width of the description paragraph at the top of help.
Definition FormatterFwd.hpp:57
CLI11_NODISCARD bool is_footer_paragraph_formatting_enabled() const
Get the current status of whether footer paragraph formatting is enabled.
Definition FormatterFwd.hpp:158
void description_paragraph_width(std::size_t val)
Set the description paragraph width at the top of help.
Definition FormatterFwd.hpp:112
CLI11_NODISCARD bool is_option_type_names_enabled() const
Get the current status of whether option type names are printed.
Definition FormatterFwd.hpp:164
Definition FormatterFwd.hpp:194
std::string make_groups(const App *app, AppFormatMode mode) const
This prints out all the groups of options.
Definition Formatter_inl.hpp:45
virtual std::string make_usage(const App *app, std::string name) const
This displays the usage line.
Definition Formatter_inl.hpp:95
virtual std::string make_option_name(const Option *, bool) const
This is the name part of an option, Default: left column.
Definition Formatter_inl.hpp:367
virtual std::string make_expanded(const App *sub, AppFormatMode mode) const
This prints out a subcommand in help-all.
Definition Formatter_inl.hpp:239
std::string make_help(const App *app, std::string, AppFormatMode mode) const override
This puts everything together.
Definition Formatter_inl.hpp:153
virtual CLI11_NODISCARD std::string make_group(std::string group, bool is_positional, std::vector< const Option * > opts) const
Definition Formatter_inl.hpp:24
virtual std::string make_option(const Option *, bool) const
This prints out an option help line, either positional or optional form.
Definition Formatter_inl.hpp:276
virtual std::string make_footer(const App *app) const
This prints out all the groups of options.
Definition Formatter_inl.hpp:145
virtual std::string make_option_usage(const Option *opt) const
This is used to print the name on the USAGE line.
Definition Formatter_inl.hpp:415
virtual std::string make_subcommand(const App *sub) const
This prints out a subcommand.
Definition Formatter_inl.hpp:228
virtual std::string make_positionals(const App *app) const
This prints out just the positionals "group".
Definition Formatter_inl.hpp:35
virtual std::string make_subcommands(const App *app, AppFormatMode mode) const
This prints out all the subcommands.
Definition Formatter_inl.hpp:186
virtual std::string make_description(const App *app) const
This displays the description line.
Definition Formatter_inl.hpp:70
virtual std::string make_option_desc(const Option *) const
This is the description. Default: Right column, on new line if left column too large.
Definition Formatter_inl.hpp:413
virtual std::string make_option_opts(const Option *) const
This is the options part of the name, Default: combined into left column.
Definition Formatter_inl.hpp:374
This is a specialty override for lambda functions.
Definition FormatterFwd.hpp:173
std::string make_help(const App *app, std::string name, AppFormatMode mode) const override
This will simply call the lambda function.
Definition FormatterFwd.hpp:187
~FormatterLambda() noexcept override
Adding a destructor (mostly to make GCC 4.7 happy)
Definition FormatterFwd.hpp:184
FormatterLambda(funct_t funct)
Create a FormatterLambda with a lambda function.
Definition FormatterFwd.hpp:181
Definition Option.hpp:259