b312218a56bbb12a611cf03a8e6e7adc9676a737
[alexxy/gromacs.git] / src / gromacs / options / options.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2010,2011,2012,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 /*! \file
36  * \brief
37  * Declares gmx::Options.
38  *
39  * Together with basicoptions.h, this header forms the part of the public
40  * API that most classes will use to provide options.
41  *
42  * \author Teemu Murtola <teemu.murtola@gmail.com>
43  * \inpublicapi
44  * \ingroup module_options
45  */
46 #ifndef GMX_OPTIONS_OPTIONS_H
47 #define GMX_OPTIONS_OPTIONS_H
48
49 #include <string>
50
51 #include "gromacs/options/ioptionscontainer.h"
52 #include "gromacs/utility/classhelpers.h"
53
54 namespace gmx
55 {
56
57 class AbstractOption;
58 class OptionsAssigner;
59 class OptionsIterator;
60
61 /*! \brief
62  * Base class for option managers.
63  *
64  * This class is used as a marker for all classes that are used with
65  * Options::addManager().  It doesn't provide any methods, but only supports
66  * transporting these classes through the Options collection into the
67  * individual option implementation classes.
68  *
69  * The virtual destructor is present to make this class polymorphic, such that
70  * `dynamic_cast` can be used when retrieving a manager of a certain type for
71  * the individual options.
72  *
73  * \inlibraryapi
74  * \ingroup module_options
75  */
76 class IOptionManager
77 {
78     protected:
79         virtual ~IOptionManager();
80 };
81
82 /*! \brief
83  * Collection of options.
84  *
85  * See \ref module_options for an overview of how the options work.
86  * The IOptionsContainer interface documents how to add options.
87  *
88  * In order to keep the public interface of this class simple, functionality
89  * to assign values to options is provided by a separate OptionsAssigner class.
90  * Similarly, functionality for looping over all options (e.g., for writing out
91  * help) is provided by OptionsIterator.
92  *
93  * \inpublicapi
94  * \ingroup module_options
95  */
96 class Options : public IOptionsContainer
97 {
98     public:
99         /*! \brief
100          * Initializes the name and title of an option collection.
101          *
102          * \param[in] name  Single-word name.
103          * \param[in] title Descriptive title.
104          *
105          * Copies the input strings.
106          */
107         Options(const char *name, const char *title);
108         ~Options();
109
110         //! Returns the short name of the option collection.
111         const std::string &name() const;
112
113         /*! \brief
114          * Adds an option manager.
115          *
116          * \param    manager Manager to add.
117          * \throws   std::bad_alloc if out of memory.
118          *
119          * Option managers are used by some types of options that require
120          * interaction between different option instances (e.g., selection
121          * options), or need to support globally set properties (e.g., a global
122          * default file prefix).  Option objects can retrieve the pointer to
123          * their manager when they are created, and the caller can alter the
124          * behavior of the options through the manager.
125          * See the individual managers for details.
126          *
127          * Caller is responsible for memory management of \p manager.
128          * The Options object (and its contained options) only stores a
129          * reference to the object.
130          *
131          * This method cannot be called after adding options or subsections.
132          */
133         void addManager(IOptionManager *manager);
134
135         /*! \brief
136          * Adds an option collection as a subsection of this collection.
137          *
138          * \param[in] section Subsection to add.
139          *
140          * The name() field of \p section is used as the name of the
141          * subsection.  If an attempt is made to add two different subsections
142          * with the same name, this function asserts.
143          *
144          * \p section should not have any options added at the point this
145          * method is called.
146          *
147          * Only a pointer to the provided object is stored.  The caller is
148          * responsible that the object exists for the lifetime of the
149          * collection.
150          * It is not possible to add the same Options object as a subsection to
151          * several different Options.
152          * If an attempt is made, the function asserts.
153          */
154         void addSubSection(Options *section);
155
156         // From IOptionsContainer
157         virtual OptionInfo *addOption(const AbstractOption &settings);
158         using IOptionsContainer::addOption;
159
160         //! Returns true if option \p name is set.
161         bool isSet(const char *name) const;
162         /*! \brief
163          * Notifies the collection that all option values are assigned.
164          *
165          * \throws InvalidInputError if invalid user input is detected.
166          *
167          * This function should be called after no more option values are
168          * to be assigned.  Values in storage variables are guaranteed to be
169          * available only after this call, although in most cases, they are
170          * available already during assignment.
171          *
172          * If invalid option values, e.g., missing required option, is detected
173          * at this point, this function throws.  The thrown exception contains
174          * information on all errors detected during the call.
175          */
176         void finish();
177
178     private:
179         class Impl;
180
181         PrivateImplPointer<Impl> impl_;
182
183         //! Needed to be able to extend the interface of this object.
184         friend class OptionsAssigner;
185         //! Needed to be able to extend the interface of this object.
186         friend class OptionsIterator;
187         //! Needed to be able to extend the interface of this object.
188         friend class OptionsModifyingIterator;
189 };
190
191 } // namespace gmx
192
193 #endif