summaryrefslogtreecommitdiff
path: root/src/mongo/util/options_parser/option_section.h
blob: 1669904445fac7ddd4386e324697fa20467b1906 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/**
 *    Copyright (C) 2018-present MongoDB, Inc.
 *
 *    This program is free software: you can redistribute it and/or modify
 *    it under the terms of the Server Side Public License, version 1,
 *    as published by MongoDB, Inc.
 *
 *    This program is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    Server Side Public License for more details.
 *
 *    You should have received a copy of the Server Side Public License
 *    along with this program. If not, see
 *    <http://www.mongodb.com/licensing/server-side-public-license>.
 *
 *    As a special exception, the copyright holders give permission to link the
 *    code of portions of this program with the OpenSSL library under certain
 *    conditions as described in each individual source file and distribute
 *    linked combinations including the program with the OpenSSL library. You
 *    must comply with the Server Side Public License in all respects for
 *    all of the code used other than as permitted herein. If you modify file(s)
 *    with this exception, you may extend this exception to your version of the
 *    file(s), but you are not obligated to do so. If you do not wish to do so,
 *    delete this exception statement from your version. If you delete this
 *    exception statement from all source files in the program, then also delete
 *    it in the license file.
 */

#pragma once
#include "mongo/util/options_parser/option_description.h"

#include <boost/program_options.hpp>
#include <list>

#include "mongo/base/status.h"

namespace mongo {
namespace optionenvironment {

namespace po = boost::program_options;

/**
 *  A container for OptionDescription instances as well as other OptionSection instances.
 *  Provides a description of all options that are supported to be passed in to an
 *  OptionsParser.  Has utility functions to support the various formats needed by the parsing
 *  process.
 *
 *  The sections and section names only matter in the help string.  For sections in a JSON
 *  config, look at the dots in the dottedName of the relevant OptionDescription
 */

class OptionSection {
public:
    OptionSection() = default;

    /**
     * This API is not meant to be called directly by hand-written code.
     * See: docs/idl/configs.md
     */
    OptionSection(const std::string& name) : _name(name) {}

    // Construction interface

    /**
     * Add a sub section to this section.  Used mainly to keep track of section headers for when
     * we need generate the help std::string for the command line.
     *
     * Note that while the structure of this class allows for a nested hierarchy of sections,
     * our actual use-case enforces a maximum depth of 2.
     * The base node plus one level of subsections.
     * This means that subsections being added must not contain subsections of their own.
     */
    Status addSection(const OptionSection& newSection);

    /**
     * Add an option to this section, and returns a reference to an OptionDescription to allow
     * for chaining. This API is normally called by generated code ONLY.
     *
     * The only two exceptions are UnitTest code testing this API,
     * and two groups of complex options in addBaseServerOptions().
     *
     * ALL OTHERS must create config options via IDL definiotns.
     */
    enum class OptionParserUsageType {
        IDLAutoGeneratedCode,
        OptionParserTest,
        BaseServerOptionsException,
    };
    OptionDescription& addOptionChaining(const std::string& dottedName,
                                         const std::string& singleName,
                                         const OptionType type,
                                         const std::string& description,
                                         const std::vector<std::string>& deprecatedDottedNames,
                                         const std::vector<std::string>& deprecatedSingleNames,
                                         OptionParserUsageType);

    // These functions are used by the OptionsParser to make calls into boost::program_options
    Status getBoostOptions(po::options_description* boostOptions,
                           bool visibleOnly = false,
                           bool includeDefaults = false,
                           OptionSources = SourceAll,
                           bool getEmptySections = true) const;
    Status getBoostPositionalOptions(
        po::positional_options_description* boostPositionalOptions) const;

    // This is needed so that the parser can iterate over all registered options to get the
    // correct names when populating the Environment, as well as check that a parameter that was
    // found has been registered and has the correct type
    Status getAllOptions(std::vector<OptionDescription>* options) const;

    // Count the number of options in this section and all subsections
    Status countOptions(int* numOptions, bool visibleOnly, OptionSources sources) const;

    /**
     * Returns the number of subsections which have been added to this OptionSection.
     */
    size_t countSubSections() const;

    /**
     * Populates the given map with all the default values for any options in this option
     * section and all sub sections.
     */
    Status getDefaults(std::map<Key, Value>* values) const;

    /**
     * Populates the given vector with all the constraints for all options in this section and
     * sub sections.
     */
    Status getConstraints(std::vector<std::shared_ptr<Constraint>>* constraints) const;

    std::string positionalHelpString(const std::string& execName) const;
    std::string helpString() const;

    // Debugging
    void dump() const;

private:
    std::string _name;
    std::list<OptionSection> _subSections;
    std::list<OptionDescription> _options;

    /**
     * Internal accumulator of all dotted names (incl. deprecated) in _options and all _subSections.
     * Used for ensuring duplicate entries don't find their way into different parts of the tree.
     */
    std::set<std::string> _allDottedNames;

    /**
     * Internal accumulator for all single names. See _allDottedNames for further info.
     */
    std::set<std::string> _allSingleNames;
};

}  // namespace optionenvironment
}  // namespace mongo