CLI11 2.6.2
Loading...
Searching...
No Matches
FormatterFwd.hpp
Go to the documentation of this file.
1// Copyright (c) 2017-2026, 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 {
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
65
72 std::map<std::string, std::string> labels_{};
73
77
78 public:
79 FormatterBase() = default;
80 FormatterBase(const 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
143
146
149
153
156
159
162
165
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;
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
#define CLI11_NODISCARD
Definition Macros.hpp:58
Creates a command line program, with very few defaults.
Definition App.hpp:115
void footer_paragraph_width(std::size_t val)
Set the footer paragraph width.
Definition FormatterFwd.hpp:115
bool enable_option_type_names_
Definition FormatterFwd.hpp:68
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
FormatterBase(FormatterBase &&)=default
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
FormatterBase & operator=(FormatterBase &&)=default
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
FormatterBase & operator=(const FormatterBase &)=default
bool enable_description_formatting_
options controlling formatting for footer and descriptions
Definition FormatterFwd.hpp:63
FormatterBase()=default
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
bool enable_footer_formatting_
Definition FormatterFwd.hpp:64
bool enable_default_flag_values_
Definition FormatterFwd.hpp:69
CLI11_NODISCARD bool is_description_paragraph_formatting_enabled() const
Get the current status of description paragraph formatting.
Definition FormatterFwd.hpp:155
FormatterBase(const FormatterBase &)=default
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
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
virtual std::string make_option_desc(const Option *) const
This is the description. Default: Right column, on new line if left column too large.
Formatter(Formatter &&)=default
virtual std::string make_positionals(const App *app) const
This prints out just the positionals "group".
std::string make_help(const App *app, std::string, AppFormatMode mode) const override
This puts everything together.
virtual std::string make_option_opts(const Option *) const
This is the options part of the name, Default: combined into left column.
virtual std::string make_option_usage(const Option *opt) const
This is used to print the name on the USAGE line.
Formatter(const Formatter &)=default
virtual std::string make_subcommands(const App *app, AppFormatMode mode) const
This prints out all the subcommands.
virtual std::string make_description(const App *app) const
This displays the description line.
virtual std::string make_subcommand(const App *sub) const
This prints out a subcommand.
virtual std::string make_expanded(const App *sub, AppFormatMode mode) const
This prints out a subcommand in help-all.
Formatter()=default
Formatter & operator=(Formatter &&)=default
virtual std::string make_footer(const App *app) const
This prints out all the groups of options.
Formatter & operator=(const Formatter &)=default
virtual std::string make_option(const Option *, bool) const
This prints out an option help line, either positional or optional form.
std::string make_groups(const App *app, AppFormatMode mode) const
This prints out all the groups of options.
virtual CLI11_NODISCARD std::string make_group(std::string group, bool is_positional, std::vector< const Option * > opts) const
virtual std::string make_usage(const App *app, std::string name) const
This displays the usage line.
virtual std::string make_option_name(const Option *, bool) const
This is the name part of an option, Default: left column.
Definition Option.hpp:259
Definition App.hpp:36
AppFormatMode
Definition FormatterFwd.hpp:32
@ Normal
The normal, detailed help.
Definition FormatterFwd.hpp:33
@ All
A fully expanded help.
Definition FormatterFwd.hpp:34
@ Sub
Used when printed as part of expanded subcommand.
Definition FormatterFwd.hpp:35