2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2016,2017,2018,2019,2020, 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.
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.
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.
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.
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.
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.
35 /*! \libinternal \file
37 * Declares common utility functions for conversions to and from strings.
39 * \author Teemu Murtola <teemu.murtola@gmail.com>
40 * \author Mark Abraham <mark.j.abraham@gmail.com>
42 * \ingroup module_utility
44 #ifndef GMX_UTILITY_STRCONVERT_H
45 #define GMX_UTILITY_STRCONVERT_H
52 #include "gromacs/utility/basedefinitions.h"
53 #include "gromacs/utility/exceptions.h"
54 #include "gromacs/utility/stringutil.h"
60 //! \addtogroup module_utility
64 * Parses a boolean from a string.
66 * \throws InvalidInputError if `str` is not recognized as a boolean value.
68 bool boolFromString(const char* str
);
70 * Parses an integer from a string.
72 * \throws InvalidInputError if `str` is not a valid integer.
74 * Also checks for overflow.
76 int intFromString(const char* str
);
78 * Parses a 64-bit integer from a string.
80 * \throws InvalidInputError if `str` is not a valid integer.
82 * Also checks for overflow.
84 int64_t int64FromString(const char* str
);
86 * Parses a float value from a string.
88 * \throws InvalidInputError if `str` is not a valid number.
90 * Also checks for overflow.
92 float floatFromString(const char* str
);
94 * Parses a double value from a string.
96 * \throws InvalidInputError if `str` is not a valid number.
98 * Also checks for overflow.
100 double doubleFromString(const char* str
);
103 * Parses a value from a string to a given type.
105 * \tparam T Type of value to parse.
107 * `T` can only be one of the types that is explicity supported.
108 * The main use for this function is to write `fromString<real>(value)`,
109 * but it can also be used for other types for consistency.
112 static inline T
fromString(const char* str
);
113 //! \copydoc fromString(const char *)
115 static inline T
fromString(const std::string
& str
)
117 return fromString
<T
>(str
.c_str());
119 /*! \copydoc fromString(const char *)
121 * Provided for situations where overload resolution cannot easily resolve the
122 * desired std::string parameter.
125 static inline T
fromStdString(const std::string
& str
)
127 return fromString
<T
>(str
.c_str());
130 //! Implementation for boolean values.
132 inline bool fromString
<bool>(const char* str
)
134 return boolFromString(str
);
136 //! Implementation for integer values.
138 inline int fromString
<int>(const char* str
)
140 return intFromString(str
);
142 //! Implementation for 64-bit integer values.
144 inline int64_t fromString
<int64_t>(const char* str
)
146 return int64FromString(str
);
148 //! Implementation for float values.
150 inline float fromString
<float>(const char* str
)
152 return floatFromString(str
);
154 //! Implementation for double values.
156 inline double fromString
<double>(const char* str
)
158 return doubleFromString(str
);
162 * Converts a boolean to a "true"/"false" string.
166 static inline const char* boolToString(bool value
)
168 return value
? "true" : "false";
171 * Returns a string containing the value of \c t.
173 * \throws std::bad_alloc if out of memory.
175 static inline std::string
intToString(int t
)
177 return formatString("%d", t
);
179 //! \copydoc intToString(int)
180 static inline std::string
int64ToString(int64_t t
)
182 return formatString("%" PRId64
, t
);
184 //! \copydoc intToString(int)
185 static inline std::string
doubleToString(double t
)
187 return formatString("%g", t
);
191 * Overloads for converting a value of a given type to a string.
193 * \throws std::bad_alloc if out of memory.
196 static inline std::string
toString(bool t
)
198 return boolToString(t
);
200 static inline std::string
toString(int t
)
202 return intToString(t
);
204 static inline std::string
toString(int64_t t
)
206 return int64ToString(t
);
208 static inline std::string
toString(float t
)
210 return doubleToString(t
);
212 static inline std::string
toString(double t
)
214 return doubleToString(t
);
216 static inline std::string
toString(std::string t
)
225 /*! \brief Convert a string into an array of values.
227 * \tparam ValueType array element type to convert into
228 * \tparam NumExpectedValues number of values of the array
230 * \returns an array containing the converted string, optionally null if
231 * the white-space stripped string is empty
233 * \throws InvalidInputError if splitting the string at whitespaces does not
234 * result in NumExpectedValues or zero substrings
236 * \throws InvalidInputError if conversion of any of the NumExpectedValues
237 * substrings of the splitted input string fails
239 * Converts a string into an array of type ValueType with exactly NumExpectedValues.
241 * No result is returned if the string is empty or contains only whitespace .
244 template<typename ValueType
, int NumExpectedValues
>
245 static inline std::optional
<std::array
<ValueType
, NumExpectedValues
>>
246 parsedArrayFromInputString(const std::string
& str
)
248 // return nullopt right away if the string is just whitespace or empty
250 const std::string
& strippedString
= stripString(str
);
251 if (strippedString
.empty())
257 const std::vector
<std::string
>& valuesAsStrings
= splitString(str
);
259 // throw right away if we don't have the expected number of string entries
260 if (valuesAsStrings
.size() != NumExpectedValues
)
262 const std::string errorMessage
=
263 "Expected empty string or string with " + intToString(NumExpectedValues
)
264 + " elements to convert, but received " + intToString(valuesAsStrings
.size())
265 + " elements instead.";
266 GMX_THROW(InvalidInputError(errorMessage
));
269 // will throw if any conversion from string to value fails
270 std::array
<ValueType
, NumExpectedValues
> valuesAsArray
;
271 std::transform(std::begin(valuesAsStrings
), std::end(valuesAsStrings
), std::begin(valuesAsArray
),
272 [](const std::string
& split
) { return fromString
<ValueType
>(split
); });
274 return { valuesAsArray
};
277 /*! \brief Returns the input string, throwing an excpetion if the demanded
278 * conversion to an array will not succeed.
280 * \tparam ValueType array element type to convert into
281 * \tparam NumExpectedValues number of values of the array
283 * \param[in] toConvert the string to convert
284 * \param[in] errorContextMessage the message to add to the thrown exceptions if
285 * conversion of the string is bound to fail at
287 * \returns the input string
289 * \throws InvalidInputError if splitting the string at whitespaces does not
290 * result in NumExpectedValues or zero substrings
292 * \throws InvalidInputError if conversion of any of the NumExpectedValues
293 * substrings of the splitted input string fails
295 * A typical use of this function would be in .mdp string option parsing
296 * where information in the .mdp file is transformed into the data that is
297 * stored in the .tpr file.
299 template<typename ValueType
, int NumExpectedValues
>
300 static inline std::string
stringIdentityTransformWithArrayCheck(const std::string
& toConvert
,
301 const std::string
& errorContextMessage
)
303 // Attempt the conversion to an array so that the string parsing routine
304 // will throw an InvalidInputError if the string is not fit for conversion.
307 // The converted array is discarded.
308 gmx_unused
const auto& val
= parsedArrayFromInputString
<ValueType
, NumExpectedValues
>(toConvert
);
310 catch (const InvalidInputError
& e
)
312 InvalidInputError
toThrow(errorContextMessage
+ std::string(e
.what()));