Sort all includes in src/gromacs
[alexxy/gromacs.git] / src / gromacs / options / options-impl.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2010,2011,2012,2013,2014, 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 /*! \internal \file
36  * \brief
37  * Declares private implementation class for gmx::Options.
38  *
39  * \author Teemu Murtola <teemu.murtola@gmail.com>
40  * \ingroup module_options
41  */
42 #ifndef GMX_OPTIONS_OPTIONS_IMPL_H
43 #define GMX_OPTIONS_OPTIONS_IMPL_H
44
45 #include <string>
46 #include <vector>
47
48 #include "gromacs/options/abstractoption.h"
49 #include "gromacs/options/optionmanagercontainer.h"
50 #include "gromacs/options/options.h"
51 #include "gromacs/utility/uniqueptr.h"
52
53 namespace gmx
54 {
55
56 class AbstractOptionStorage;
57
58 /*! \internal
59  * \brief
60  * Private implementation class for Options.
61  *
62  * Note that in addition to Options, the OptionsAssigner and OptionsIterator
63  * classes also directly access this class.
64  *
65  * \ingroup module_options
66  */
67 class Options::Impl
68 {
69     public:
70         //! Smart pointer for managing an AbstractOptionStorage object.
71         typedef gmx_unique_ptr<AbstractOptionStorage>::type
72             AbstractOptionStoragePointer;
73         //! Convenience type for list of sections.
74         typedef std::vector<Options *> SubSectionList;
75         //! Convenience type for list of options.
76         typedef std::vector<AbstractOptionStoragePointer> OptionList;
77
78         //! Sets the name and title.
79         Impl(const char *name, const char *title);
80         ~Impl();
81
82         /*! \brief
83          * Finds a subsection by name.
84          *
85          * \param[in] name  Name to search for.
86          * \returns Pointer to the found subsection, or NULL if not found.
87          *
88          * Does not throw.
89          */
90         Options *findSubSection(const char *name) const;
91         /*! \brief
92          * Finds an option by name.
93          *
94          * \param[in] name  Name to search for.
95          * \returns Pointer to the found option, or NULL if not found.
96          *
97          * Does not throw.
98          */
99         AbstractOptionStorage *findOption(const char *name) const;
100
101         /*! \brief
102          * Calls AbstractOptionStorage::startSource() for all options,
103          * including subsections.
104          *
105          * Does not throw.
106          */
107         void startSource();
108
109         //! Name for the Options object.
110         std::string             name_;
111         //! Description title for the Options object.
112         std::string             title_;
113         //! Full description for the Options object.
114         std::string             description_;
115         /*! \brief
116          * Option managers set for this collection.
117          *
118          * This is non-empty only for the top-level Options object.
119          */
120         OptionManagerContainer  managers_;
121         /*! \brief
122          * List of subsections, in insertion order.
123          *
124          * This container contains only references to external objects; memory
125          * management is performed elsewhere.
126          */
127         SubSectionList          subSections_;
128         /*! \brief
129          * List of options, in insertion order.
130          *
131          * All objects in this container are owned by this object, and are
132          * freed in the destructor.
133          */
134         OptionList              options_;
135         //! Options object that contains this object as a subsection, or NULL.
136         Options                *parent_;
137 };
138
139 } // namespace gmx
140
141 #endif