Enable time unit and selections in ICommandLineOptionsModule
[gromacs.git] / src / gromacs / options / timeunitmanager.cpp
blobfed2332546ebee36120c4db4975e758d7efe6f9d
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2012,2013,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.
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 /*! \internal \file
36 * \brief
37 * Implements gmx::TimeUnitManager.
39 * \author Teemu Murtola <teemu.murtola@gmail.com>
40 * \ingroup module_options
42 #include "gmxpre.h"
44 #include "timeunitmanager.h"
46 #include <cstdlib>
48 #include <algorithm>
50 #include "gromacs/options/basicoptions.h"
51 #include "gromacs/options/ioptionscontainer.h"
52 #include "gromacs/options/options.h"
53 #include "gromacs/options/optionsvisitor.h"
54 #include "gromacs/utility/arrayref.h"
55 #include "gromacs/utility/exceptions.h"
56 #include "gromacs/utility/gmxassert.h"
57 #include "gromacs/utility/stringutil.h"
59 namespace
62 /*! \brief
63 * Enum values for a time unit.
65 * These must correspond to the TimeUnit enum in the header!
67 const char *const g_timeUnits[] = {
68 "fs", "ps", "ns", "us", "ms", "s"
70 /*! \brief
71 * Scaling factors from each time unit to internal units (=picoseconds).
73 * These must correspond to the TimeUnit enum in the header!
75 const double g_timeScaleFactors[] = {
76 1e-3, 1, 1e3, 1e6, 1e9, 1e12
79 } // namespace
81 namespace gmx
84 TimeUnitManager::TimeUnitManager()
85 : timeUnit_(TimeUnit_Default)
89 TimeUnitManager::TimeUnitManager(TimeUnit unit)
91 setTimeUnit(unit);
94 void TimeUnitManager::setTimeUnit(TimeUnit unit)
96 GMX_RELEASE_ASSERT(unit >= 0 && unit <= TimeUnit_s,
97 "Invalid time unit");
98 timeUnit_ = unit;
101 const char *TimeUnitManager::timeUnitAsString() const
103 GMX_RELEASE_ASSERT(timeUnit_ >= 0 && timeUnit_ <= TimeUnit_s,
104 "Invalid time unit");
105 return g_timeUnits[timeUnit_];
108 double TimeUnitManager::timeScaleFactor() const
110 GMX_RELEASE_ASSERT(timeUnit_ >= 0
111 && (size_t)timeUnit_ < sizeof(g_timeScaleFactors)/sizeof(g_timeScaleFactors[0]),
112 "Time unit index has become out-of-range");
113 return g_timeScaleFactors[timeUnit_];
116 double TimeUnitManager::inverseTimeScaleFactor() const
118 return 1.0 / timeScaleFactor();
121 /********************************************************************
122 * TimeUnitBehavior
125 TimeUnitBehavior::TimeUnitBehavior()
126 : timeUnit_(TimeUnit_Default), timeUnitStore_(NULL)
130 void TimeUnitBehavior::setTimeUnit(TimeUnit timeUnit)
132 GMX_RELEASE_ASSERT(timeUnit >= 0 && timeUnit <= TimeUnit_s,
133 "Invalid time unit");
134 timeUnit_ = timeUnit;
135 if (timeUnitStore_ != NULL)
137 *timeUnitStore_ = timeUnit;
141 void TimeUnitBehavior::setTimeUnitStore(TimeUnit *store)
143 timeUnitStore_ = store;
144 *store = timeUnit();
147 void TimeUnitBehavior::setTimeUnitFromEnvironment()
149 const char *const value = std::getenv("GMXTIMEUNIT");
150 if (value != NULL)
152 ConstArrayRef<const char *> timeUnits(g_timeUnits);
153 ConstArrayRef<const char *>::const_iterator i =
154 std::find(timeUnits.begin(), timeUnits.end(), std::string(value));
155 if (i == timeUnits.end())
157 std::string message = formatString(
158 "Time unit provided with environment variable GMXTIMEUNIT=%s "
159 "is not recognized as a valid time unit.\n"
160 "Possible values are: %s",
161 value, joinStrings(timeUnits, ", ").c_str());
162 GMX_THROW(InvalidInputError(message));
164 setTimeUnit(static_cast<TimeUnit>(i - timeUnits.begin()));
168 void TimeUnitBehavior::addTimeUnitOption(IOptionsContainer *options, const char *name)
170 options->addOption(StringOption(name).enumValue(g_timeUnits)
171 .defaultValue(g_timeUnits[timeUnit()])
172 .storeEnumIndex(&timeUnit_)
173 .description("Unit for time values"));
176 namespace
179 /*! \internal \brief
180 * Option visitor that scales time options.
182 * \tparam FloatingPointOptionInfo OptionInfo type for an option that provides
183 * isTime() and setScaleFactor() methods.
185 * \ingroup module_options
187 template <class FloatingPointOptionInfo>
188 class TimeOptionScaler : public OptionsModifyingTypeVisitor<FloatingPointOptionInfo>
190 public:
191 //! Initializes a scaler with the given factor.
192 explicit TimeOptionScaler(double factor) : factor_(factor) {}
194 void visitSubSection(Options *section)
196 OptionsModifyingIterator iterator(section);
197 iterator.acceptSubSections(this);
198 iterator.acceptOptions(this);
201 void visitOptionType(FloatingPointOptionInfo *option)
203 if (option->isTime())
205 option->setScaleFactor(factor_);
209 private:
210 double factor_;
213 } // namespace
215 void TimeUnitBehavior::optionsFinishing(Options *options)
217 double factor = TimeUnitManager(timeUnit()).timeScaleFactor();
218 TimeOptionScaler<DoubleOptionInfo>(factor).visitSubSection(options);
219 TimeOptionScaler<FloatOptionInfo>(factor).visitSubSection(options);
220 if (timeUnitStore_ != NULL)
222 *timeUnitStore_ = static_cast<TimeUnit>(timeUnit_);
226 } // namespace gmx