Merge branch release-5-1
[alexxy/gromacs.git] / src / gromacs / options / options.cpp
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 /*! \internal \file
36  * \brief
37  * Implements gmx::Options.
38  *
39  * \author Teemu Murtola <teemu.murtola@gmail.com>
40  * \ingroup module_options
41  */
42 #include "gmxpre.h"
43
44 #include "options.h"
45
46 #include "gromacs/options/abstractoption.h"
47 #include "gromacs/options/abstractoptionstorage.h"
48 #include "gromacs/utility/arrayref.h"
49 #include "gromacs/utility/exceptions.h"
50 #include "gromacs/utility/gmxassert.h"
51 #include "gromacs/utility/stringutil.h"
52
53 #include "options-impl.h"
54
55 namespace gmx
56 {
57
58 /********************************************************************
59  * IOptionManager
60  */
61
62 IOptionManager::~IOptionManager()
63 {
64 }
65
66 /********************************************************************
67  * Options::Impl
68  */
69
70 Options::Impl::Impl(const char *name, const char * /*title*/)
71     : name_(name != NULL ? name : ""),
72       parent_(NULL)
73 {
74 }
75
76 Options::Impl::~Impl()
77 {
78 }
79
80 Options *Options::Impl::findSubSection(const char *name) const
81 {
82     SubSectionList::const_iterator i;
83     for (i = subSections_.begin(); i != subSections_.end(); ++i)
84     {
85         if ((*i)->name() == name)
86         {
87             return *i;
88         }
89     }
90     return NULL;
91 }
92
93 AbstractOptionStorage *Options::Impl::findOption(const char *name) const
94 {
95     OptionList::const_iterator i;
96     for (i = options_.begin(); i != options_.end(); ++i)
97     {
98         if ((*i)->name() == name)
99         {
100             return i->get();
101         }
102     }
103     return NULL;
104 }
105
106 void Options::Impl::startSource()
107 {
108     OptionList::const_iterator i;
109     for (i = options_.begin(); i != options_.end(); ++i)
110     {
111         AbstractOptionStorage &option = **i;
112         option.startSource();
113     }
114     SubSectionList::const_iterator j;
115     for (j = subSections_.begin(); j != subSections_.end(); ++j)
116     {
117         Options &section = **j;
118         section.impl_->startSource();
119     }
120 }
121
122 /********************************************************************
123  * Options
124  */
125
126 Options::Options(const char *name, const char *title)
127     : impl_(new Impl(name, title))
128 {
129 }
130
131 Options::~Options()
132 {
133 }
134
135 const std::string &Options::name() const
136 {
137     return impl_->name_;
138 }
139
140
141 void Options::addManager(IOptionManager *manager)
142 {
143     GMX_RELEASE_ASSERT(impl_->parent_ == NULL,
144                        "Can only add a manager in a top-level Options object");
145     // This ensures that all options see the same set of managers.
146     GMX_RELEASE_ASSERT(impl_->options_.empty(),
147                        "Can only add a manager before options");
148     // This check could be relaxed if we instead checked that the subsections
149     // do not have options.
150     GMX_RELEASE_ASSERT(impl_->subSections_.empty(),
151                        "Can only add a manager before subsections");
152     impl_->managers_.add(manager);
153 }
154
155 void Options::addSubSection(Options *section)
156 {
157     // This is required, because managers are used from the root Options
158     // object, so they are only seen after the subsection has been added.
159     GMX_RELEASE_ASSERT(section->impl_->options_.empty(),
160                        "Can only add a subsection before it has any options");
161     GMX_RELEASE_ASSERT(section->impl_->managers_.empty(),
162                        "Can only have managers in a top-level Options object");
163     // Make sure that section is not already inserted somewhere.
164     GMX_RELEASE_ASSERT(section->impl_->parent_ == NULL,
165                        "Cannot add as subsection twice");
166     // Make sure that there are no duplicate sections.
167     GMX_RELEASE_ASSERT(impl_->findSubSection(section->name().c_str()) == NULL,
168                        "Duplicate subsection name");
169     impl_->subSections_.push_back(section);
170     section->impl_->parent_ = this;
171 }
172
173 OptionInfo *Options::addOption(const AbstractOption &settings)
174 {
175     Options::Impl *root = impl_.get();
176     while (root->parent_ != NULL)
177     {
178         root = root->parent_->impl_.get();
179     }
180     Impl::AbstractOptionStoragePointer option(settings.createStorage(root->managers_));
181     if (impl_->findOption(option->name().c_str()) != NULL)
182     {
183         GMX_THROW(APIError("Duplicate option: " + option->name()));
184     }
185     impl_->options_.push_back(move(option));
186     return &impl_->options_.back()->optionInfo();
187 }
188
189 bool Options::isSet(const char *name) const
190 {
191     AbstractOptionStorage *option = impl_->findOption(name);
192     return (option != NULL ? option->isSet() : false);
193 }
194
195 void Options::finish()
196 {
197     // TODO: Consider how to customize these error messages based on context.
198     ExceptionInitializer             errors("Invalid input values");
199     Impl::OptionList::const_iterator i;
200     for (i = impl_->options_.begin(); i != impl_->options_.end(); ++i)
201     {
202         AbstractOptionStorage &option = **i;
203         try
204         {
205             option.finish();
206         }
207         catch (UserInputError &ex)
208         {
209             ex.prependContext("In option " + option.name());
210             errors.addCurrentExceptionAsNested();
211         }
212     }
213     Impl::SubSectionList::const_iterator j;
214     for (j = impl_->subSections_.begin(); j != impl_->subSections_.end(); ++j)
215     {
216         Options &section = **j;
217         try
218         {
219             section.finish();
220         }
221         catch (const UserInputError &)
222         {
223             errors.addCurrentExceptionAsNested();
224         }
225     }
226     if (errors.hasNestedExceptions())
227     {
228         // TODO: This exception type may not always be appropriate.
229         GMX_THROW(InvalidInputError(errors));
230     }
231 }
232
233 } // namespace gmx