9cb9ff543e6e66ade451124b3f1a70c492381e67
[alexxy/gromacs.git] / src / gromacs / options / abstractoptionstorage.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2010,2011,2012,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 /*! \libinternal \file
36  * \brief
37  * Declares gmx::AbstractOptionStorage.
38  *
39  * \author Teemu Murtola <teemu.murtola@gmail.com>
40  * \inlibraryapi
41  * \ingroup module_options
42  */
43 #ifndef GMX_OPTIONS_ABSTRACTOPTIONSTORAGE_H
44 #define GMX_OPTIONS_ABSTRACTOPTIONSTORAGE_H
45
46 #include <string>
47
48 #include "../utility/common.h"
49
50 #include "optionflags.h"
51
52 namespace gmx
53 {
54
55 class AbstractOption;
56 class OptionInfo;
57 class Options;
58
59 /*! \libinternal \brief
60  * Abstract base class for converting, validating, and storing option values.
61  *
62  * This class should normally not be subclassed directly, but the
63  * OptionStorageTemplate should be used instead.  The templated class provides
64  * basic functionality for most of the pure virtual methods, and also
65  * integrates well with option setting objects derived from OptionTemplate.
66  *
67  * \inlibraryapi
68  * \ingroup module_options
69  *
70  * \internal
71  * This class really consists of two parts: the public interface that is
72  * used by the internal implementation of the options module, and the
73  * interface that derived classes use to provide type-dependent functionality.
74  * The latter consists of a few pure virtual methods, of which a few simple
75  * query methods are also part of the module-internal interface, others are
76  * protected and called by the non-virtual methods when needed.
77  * The reason why these two roles are in one class is twofold:
78  *  -# Both the derived classes and the internal module implementation may need
79  *     access to the same information like the allowed number of values and the
80  *     name of the option.
81  *  -# Having only one class is consistent with the structure used for options
82  *     settings objects: there is very direct correspondence between
83  *     AbstractOption and AbstractOptionStorage and between OptionTemplate and
84  *     OptionStorageTemplate.
85  */
86 class AbstractOptionStorage
87 {
88     public:
89         virtual ~AbstractOptionStorage();
90
91         //! Returns true if the option has been set.
92         bool isSet() const { return hasFlag(efOption_Set); }
93         /*! \brief
94          * Returns true if the option is a boolean option.
95          *
96          * This is used to optionally support an alternative syntax where an
97          * option provided with no value sets the value to true and an
98          * option prefixed with "no" clears the value.
99          */
100         bool isBoolean() const;
101         //! Returns true if the option is a hidden option.
102         bool isHidden() const { return hasFlag(efOption_Hidden); }
103         //! Returns true if the option is required.
104         bool isRequired() const { return hasFlag(efOption_Required); }
105         //! Returns true if the option is vector-valued.
106         bool isVector() const { return hasFlag(efOption_Vector); }
107         //! Returns the name of the option.
108         const std::string &name() const { return name_; }
109         //! Returns the description of the option set by the calling code.
110         const std::string &description() const { return descr_; }
111
112         //! Returns true if defaultValueIfSet() value is specified.
113         bool defaultValueIfSetExists() const
114         { return hasFlag(efOption_DefaultValueIfSetExists); }
115         //! Returns the minimum number of values required in one set.
116         int minValueCount() const { return minValueCount_; }
117         //! Returns the maximum allowed number of values in one set (-1 = no limit).
118         int maxValueCount() const { return maxValueCount_; }
119
120         /*! \brief
121          * Returns an option info object corresponding to this option.
122          */
123         virtual OptionInfo &optionInfo() = 0;
124         /*! \brief
125          * Returns a short string describing the type of the option.
126          */
127         virtual std::string typeString() const = 0;
128         /*! \brief
129          * Formats additional description for the option.
130          *
131          * If this method returns a non-empty string, it is appended to the
132          * plain description when printing help texts.
133          * The default implementation returns an empty string.
134          */
135         virtual std::string formatExtraDescription() const
136         { return std::string(); }
137         /*! \brief
138          * Returns the number of option values added so far.
139          */
140         virtual int valueCount() const = 0;
141         /*! \brief
142          * Returns the i'th value formatted as a string.
143          *
144          * If \p i is DefaultValueIfSetIndex, should format the default value
145          * if set (see OptionTemplate::defaultValueIfSet()).
146          */
147         virtual std::string formatValue(int i) const = 0;
148         //! \copydoc OptionInfo::formatDefaultValueIfSet()
149         std::string formatDefaultValueIfSet() const
150         { return formatValue(DefaultValueIfSetIndex); }
151
152         /*! \brief
153          * Starts adding values from a new source for the option.
154          *
155          * This marks the vurrent value of the option as a default value,
156          * causing next call to startSet() to clear it.  This allows values
157          * from the new source to overwrite old values.
158          *
159          * This method does not throw.
160          */
161         void startSource();
162         /*! \brief
163          * Starts adding a new set of values for the option.
164          *
165          * \throws  InvalidInputError if option is specified multiple times,
166          *      but is not specified to accept it.
167          *
168          * If the parameter is specified multiple times, startSet() should be
169          * called before the values for each instance.
170          *
171          * Strong exception safety guarantee.
172          */
173         void startSet();
174         /*! \brief
175          * Adds a new value for the option, converting it from a string.
176          *
177          * \param[in] value  String value to convert.
178          * \throws  InvalidInputError if value cannot be converted, or
179          *      if there are too many values.
180          *
181          * This method should only be called between startSet() and
182          * finishSet().
183          */
184         void appendValue(const std::string &value);
185         /*! \brief
186          * Performs validation and/or actions once a set of values has been
187          * added.
188          *
189          * \throws  InvalidInputError if too few values have been provided, or
190          *      if the valid values since previous startSet() are invalid as a
191          *      set.
192          *
193          * If the parameter is specified multiple times, finishSet() should be
194          * called after the values for each instance.
195          */
196         void finishSet();
197         /*! \brief
198          * Performs validation and/or actions once all values have been added.
199          *
200          * \throws InvalidInputError if the option is required but not set, or
201          *      if all valid values together are invalid as a set.
202          *
203          * This method should be called after all values have been provided
204          * with appendValue().
205          */
206         void finish();
207
208     protected:
209         //! Index used with formatValue() for formatting default value if set.
210         static const int DefaultValueIfSetIndex = -1;
211
212         /*! \brief
213          * Initializes the storage object from the settings object.
214          *
215          * \param[in] settings  Option settings.
216          * \param[in] staticFlags Option flags that are always set and specify
217          *      generic behavior of the option.
218          * \throws  APIError if invalid settings have been provided.
219          */
220         AbstractOptionStorage(const AbstractOption &settings,
221                               OptionFlags           staticFlags);
222
223         //! Marks the option as set.
224         void markAsSet() { flags_.set(efOption_Set); }
225         //! Returns true if the given flag is set.
226         bool hasFlag(OptionFlag flag) const { return flags_.test(flag); }
227         //! Sets the given flag.
228         void setFlag(OptionFlag flag) { return flags_.set(flag); }
229         //! Clears the given flag.
230         void clearFlag(OptionFlag flag) { return flags_.clear(flag); }
231
232         /*! \brief
233          * Sets a new minimum number of values required in one set.
234          *
235          * \param[in] count  New minimum number of values (must be > 0).
236          * \throws InvalidInputError if already provided values violate the limit.
237          *
238          * If values have already been provided, it is checked that there are
239          * enough.
240          *
241          * Cannot be called for options with ::efOption_MultipleTimes set,
242          * because it is impossible to check the requirement after the values
243          * have been set.
244          * If attempted, will assert.
245          */
246         void setMinValueCount(int count);
247         /*! \brief
248          * Sets a new maximum number of values required in one set.
249          *
250          * \param[in] count  New maximum number of values
251          *                   (must be > 0, or -1 for no limit).
252          * \throws InvalidInputError if already provided values violate the limit.
253          *
254          * If values have already been provided, it is checked that there are
255          * not too many.
256          *
257          * Cannot be called for options with ::efOption_MultipleTimes set,
258          * because it is impossible to check the requirement after the values
259          * have been set.
260          * If attempted, will assert.
261          */
262         void setMaxValueCount(int count);
263
264         /*! \brief
265          * Removes all values from temporary storage for a set.
266          *
267          * This function is always called before starting to add values to
268          * a set, allowing the storage to clear its internal buffers.
269          *
270          * Should not throw.
271          */
272         virtual void clearSet() = 0;
273         /*! \brief
274          * Adds a new value, converting it from a string.
275          *
276          * \param[in] value  String value to convert.
277          * \throws  InvalidInputError if \p value is not valid for this option
278          *      or if there have been too many values in the set.
279          *
280          * This method may be called multiple times if the underlying
281          * option is defined to accept multiple values.
282          *
283          * \see OptionStorageTemplate::convertValue()
284          */
285         virtual void convertValue(const std::string &value) = 0;
286         /*! \brief
287          * Performs validation and/or actions once a set of values has been
288          * added.
289          *
290          * \throws  InvalidInputError if the values in the set are not valid
291          *      as a whole.
292          *
293          * This method may be called multiple times if the underlying option
294          * can be specified multiple times.
295          * This method is not currently called if one of the convertValue()
296          * calls throwed.
297          *
298          * \todo
299          * Improve the call semantics.
300          *
301          * \see OptionStorageTemplate::processSetValues()
302          */
303         virtual void processSet() = 0;
304         /*! \brief
305          * Performs validation and/or actions once all values have been added.
306          *
307          * \throws  InvalidInputError if all provided values are not valid as
308          *      a set.
309          *
310          * This method is always called once.
311          *
312          * If the method throws, implementation should take care to leave the
313          * option in a consistent, meaningful state.  However, currently none
314          * of the implementations actually throw in any situation where the
315          * option may be left in an inconsistent state.
316          */
317         virtual void processAll() = 0;
318
319     private:
320         std::string             name_;
321         std::string             descr_;
322         //! Flags for the option.
323         OptionFlags             flags_;
324         //! Minimum number of values required (in one set).
325         int                     minValueCount_;
326         //! Maximum allowed number of values (in one set), or -1 if no limit.
327         int                     maxValueCount_;
328         //! Whether we are currently assigning values to a set.
329         bool                    bInSet_;
330         //! Whether there were errors in set values.
331         bool                    bSetValuesHadErrors_;
332
333         GMX_DISALLOW_COPY_AND_ASSIGN(AbstractOptionStorage);
334 };
335
336 } // namespace gmx
337
338 #endif