Support for 64-bit int and real valued Options
[alexxy/gromacs.git] / src / gromacs / options / basicoptionstorage.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2010,2011,2012,2013, 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 storage classes for basic option types.
38  *
39  * \author Teemu Murtola <teemu.murtola@gmail.com>
40  * \ingroup module_options
41  */
42 #ifndef GMX_OPTIONS_BASICOPTIONSTORAGE_H
43 #define GMX_OPTIONS_BASICOPTIONSTORAGE_H
44
45 #include <string>
46 #include <vector>
47
48 #include "basicoptions.h"
49 #include "optionstoragetemplate.h"
50
51 namespace gmx
52 {
53
54 /*! \addtogroup module_options
55  * \{
56  */
57
58 /*! \internal \brief
59  * Converts, validates, and stores boolean values.
60  */
61 class BooleanOptionStorage : public OptionStorageTemplate<bool>
62 {
63     public:
64         /*! \brief
65          * Initializes the storage from option settings.
66          *
67          * \param[in] settings   Storage settings.
68          */
69         explicit BooleanOptionStorage(const BooleanOption &settings)
70             : MyBase(settings), info_(this)
71         {
72         }
73
74         virtual OptionInfo &optionInfo() { return info_; }
75         virtual const char *typeString() const { return "bool"; }
76         virtual std::string formatSingleValue(const bool &value) const;
77
78     private:
79         virtual void convertValue(const std::string &value);
80
81         BooleanOptionInfo       info_;
82 };
83
84 /*! \internal \brief
85  * Converts, validates, and stores integer values.
86  */
87 class IntegerOptionStorage : public OptionStorageTemplate<int>
88 {
89     public:
90         //! \copydoc BooleanOptionStorage::BooleanOptionStorage()
91         explicit IntegerOptionStorage(const IntegerOption &settings)
92             : MyBase(settings), info_(this)
93         {
94         }
95
96         virtual OptionInfo &optionInfo() { return info_; }
97         virtual const char *typeString() const
98         { return isVector() ? "vector" : "int"; }
99         virtual std::string formatSingleValue(const int &value) const;
100
101     private:
102         virtual void convertValue(const std::string &value);
103         virtual void processSetValues(ValueList *values);
104
105         IntegerOptionInfo       info_;
106 };
107
108 /*! \internal \brief
109  * Converts, validates, and stores integer values.
110  */
111 class Int64OptionStorage : public OptionStorageTemplate<gmx_int64_t>
112 {
113     public:
114         //! \copydoc BooleanOptionStorage::BooleanOptionStorage()
115         explicit Int64OptionStorage(const Int64Option &settings)
116             : MyBase(settings), info_(this)
117         {
118         }
119
120         virtual OptionInfo &optionInfo() { return info_; }
121         virtual const char *typeString() const
122         { return "int"; }
123         virtual std::string formatSingleValue(const gmx_int64_t &value) const;
124
125     private:
126         virtual void convertValue(const std::string &value);
127
128         Int64OptionInfo       info_;
129 };
130
131 /*! \internal \brief
132  * Converts, validates, and stores floating-point (double) values.
133  */
134 class DoubleOptionStorage : public OptionStorageTemplate<double>
135 {
136     public:
137         //! \copydoc IntegerOptionStorage::IntegerOptionStorage()
138         explicit DoubleOptionStorage(const DoubleOption &settings);
139
140         virtual OptionInfo &optionInfo() { return info_; }
141         virtual const char *typeString() const;
142         virtual std::string formatSingleValue(const double &value) const;
143
144         //! \copydoc DoubleOptionInfo::isTime()
145         bool isTime() const { return bTime_; }
146         //! \copydoc DoubleOptionInfo::setScaleFactor()
147         void setScaleFactor(double factor);
148
149     private:
150         virtual void convertValue(const std::string &value);
151         virtual void processSetValues(ValueList *values);
152
153         DoubleOptionInfo        info_;
154         bool                    bTime_;
155         double                  factor_;
156 };
157
158 /*! \internal \brief
159  * Converts, validates, and stores floating-point (float) values.
160  */
161 class FloatOptionStorage : public OptionStorageTemplate<float>
162 {
163     public:
164         //! \copydoc IntegerOptionStorage::IntegerOptionStorage()
165         explicit FloatOptionStorage(const FloatOption &settings);
166
167         virtual OptionInfo &optionInfo() { return info_; }
168         virtual const char *typeString() const;
169         virtual std::string formatSingleValue(const float &value) const;
170
171         //! \copydoc DoubleOptionStorage::isTime()
172         bool isTime() const { return bTime_; }
173         //! \copydoc DoubleOptionStorage::setScaleFactor()
174         void setScaleFactor(double factor);
175
176     private:
177         virtual void convertValue(const std::string &value);
178         virtual void processSetValues(ValueList *values);
179
180         FloatOptionInfo         info_;
181         bool                    bTime_;
182         double                  factor_;
183 };
184
185 /*! \internal \brief
186  * Converts, validates, and stores string values.
187  */
188 class StringOptionStorage : public OptionStorageTemplate<std::string>
189 {
190     public:
191         //! \copydoc DoubleOptionStorage::DoubleOptionStorage()
192         explicit StringOptionStorage(const StringOption &settings);
193
194         virtual OptionInfo &optionInfo() { return info_; }
195         virtual const char *typeString() const { return allowed_.empty() ? "string" : "enum"; }
196         virtual std::string formatSingleValue(const std::string &value) const;
197
198         //! \copydoc StringOptionInfo::allowedValues()
199         const ValueList &allowedValues() const { return allowed_; }
200
201     private:
202         virtual void convertValue(const std::string &value);
203         virtual void refreshValues();
204
205         StringOptionInfo        info_;
206         ValueList               allowed_;
207         int                    *enumIndexStore_;
208 };
209
210 /*!\}*/
211
212 } // namespace gmx
213
214 #endif