Add basic grouping to Options
[alexxy/gromacs.git] / src / gromacs / options / optionsassigner.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2010,2011,2012,2013,2014,2015, by the GROMACS development team, led by
5  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6  * and including many others, as listed in the AUTHORS file in the
7  * top-level source directory and at http://www.gromacs.org.
8  *
9  * GROMACS is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1
12  * of the License, or (at your option) any later version.
13  *
14  * GROMACS is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with GROMACS; if not, see
21  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23  *
24  * If you want to redistribute modifications to GROMACS, please
25  * consider that scientific software is very special. Version
26  * control is crucial - bugs must be traceable. We will be happy to
27  * consider code for inclusion in the official distribution, but
28  * derived work must not be called official GROMACS. Details are found
29  * in the README & COPYING files - if they are missing, get the
30  * official version at http://www.gromacs.org.
31  *
32  * To help us fund GROMACS development, we humbly ask that you cite
33  * the research papers on the package. Check out http://www.gromacs.org.
34  */
35 /*! \libinternal \file
36  * \brief
37  * Declares gmx::OptionsAssigner.
38  *
39  * This header is only needed when implementing option parsers.
40  *
41  * \author Teemu Murtola <teemu.murtola@gmail.com>
42  * \inlibraryapi
43  * \ingroup module_options
44  */
45 #ifndef GMX_OPTIONS_OPTIONSASSIGNER_H
46 #define GMX_OPTIONS_OPTIONSASSIGNER_H
47
48 #include <string>
49
50 #include "gromacs/utility/classhelpers.h"
51
52 namespace gmx
53 {
54
55 class Options;
56
57 /*! \libinternal \brief
58  * Decorator class for assigning values to Options.
59  *
60  * This class extends the interface of an Options object by providing methods
61  * to set values for options.  It also keeps track of necessary state variables
62  * to assign values to options in subsections within the Options object.
63  * Typical use (without error handling):
64  * \code
65    gmx::Options options("name", "Title");
66    // Set up options
67
68    gmx::OptionsAssigner assigner(&options);
69    assigner.start();
70    assigner.startOption("opt1");
71    assigner.appendValue("3");
72    assigner.finishOption();
73    assigner.startSubSection("section");
74    assigner.startOption("opt2"); // Now in the subsection
75    assigner.appendValue("yes");
76    assigner.finishOption();
77    assigner.finishSubSection()
78    assigner.startOption("opt3"); // Again in the main options
79    assigner.appendValue("2");
80    assigner.finishOption();
81    assigner.finish();
82  * \endcode
83  *
84  * \inlibraryapi
85  * \ingroup module_options
86  */
87 class OptionsAssigner
88 {
89     public:
90         /*! \brief
91          * Creates an object that assigns to the given object.
92          */
93         explicit OptionsAssigner(Options *options);
94         ~OptionsAssigner();
95
96         /*! \brief
97          * Sets the assigner to recognize boolean options with a "no" prefix.
98          *
99          * With this option set, \c startOption("noname") is interpreted as
100          * \c startOption("name") followed by \c appendValue("no"), if there is
101          * no option by the name "noname", but there is a boolean option with
102          * name "name".
103          *
104          * By default, the prefix is not recognized.
105          *
106          * Can be set or cleared at any time, and will have effect on all
107          * subsequent calls of startOption().
108          *
109          * Does not throw.
110          */
111         void setAcceptBooleanNoPrefix(bool bEnabled);
112
113         /*! \brief
114          * Starts assigning values.
115          *
116          * Does not throw.
117          */
118         void start();
119         /*! \brief
120          * Starts assigning values to options in a subsection.
121          *
122          * \param[in] name  Name of the subsection to start assigning to.
123          * \throws InvalidInputError if such a subsection is not found.
124          *
125          * Strong exception safety guarantee.
126          */
127         void startSubSection(const char *name);
128         /*! \brief
129          * Starts assigning values for an option.
130          *
131          * \param[in] name  Name of the option to start assigning to.
132          * \throws InvalidInputError if such an option is not found, or if the
133          *      option is specified more than once but doesn't support it.
134          */
135         void startOption(const char *name);
136         /*! \brief
137          * Starts assigning values for an option.
138          *
139          * \param[in] name  Name of the option to start assigning to.
140          * \returns   true if \p name is a valid option name.
141          * \throws InvalidInputError if the option is specified more than once
142          *      but doesn't support it.
143          */
144         bool tryStartOption(const char *name);
145         /*! \brief
146          * Appends a value to the value list of the current option.
147          *
148          * \param[in] value  String representation of the value to assign.
149          * \throws InvalidInputError if the value cannot be converted or if
150          *      there are too many values for an option.
151          *
152          * Basic exception safety guarantee:
153          * If this method throws, erroneous values are ignored, but it is
154          * possible to continue assigning values to the same option.  However,
155          * if \p value would result in more than one value, and some of them
156          * can be converted, but some result in errors, it is currently
157          * possible that some values have been added to the option even if an
158          * exception is thrown.
159          *
160          * Strong exception safety guarantee if the option provides value
161          * conversion with the same guarantee.  All options where a single
162          * input value always results in a single output value provide this.
163          *
164          * \internal
165          * This method provides the same exception safety guarantee as the
166          * OptionStorageTemplate::convertValue() method of the storage class
167          * implementing the option where the value is assigned to.
168          */
169         void appendValue(const std::string &value);
170         /*! \brief
171          * Finish assigning values for the current option.
172          *
173          * \throws InvalidInputError if the set of values since startOption()
174          *      is not valid.
175          *
176          * If this method throws, it returns to the state where the option was
177          * before startOption(), i.e., all values added with appendValue()
178          * since the last startOption() are discarded.
179          *
180          * Independent of whether the method throws, the option opened with
181          * startOption() will be closed after the call.
182          */
183         void finishOption();
184         /*! \brief
185          * Finish assigning values to a subsection.
186          *
187          * Does not throw.
188          */
189         void finishSubSection();
190         /*! \brief
191          * Finish assigning options through the object.
192          *
193          * Does not throw.
194          */
195         void finish();
196
197     private:
198         class Impl;
199
200         PrivateImplPointer<Impl> impl_;
201 };
202
203 } // namespace gmx
204
205 #endif