2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2014,2015,2017,2019, 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.
37 * Declares gmx::ICommandLineOptionsModule and supporting routines.
39 * \author Teemu Murtola <teemu.murtola@gmail.com>
41 * \ingroup module_commandline
43 #ifndef GMX_COMMANDLINE_CMDLINEOPTIONSMODULE_H
44 #define GMX_COMMANDLINE_CMDLINEOPTIONSMODULE_H
49 #include "gromacs/commandline/cmdlinemodule.h"
54 template <typename T
> class ArrayRef
;
56 class CommandLineModuleManager
;
57 class ICommandLineModule
;
58 class ICommandLineOptionsModule
;
59 class IOptionsBehavior
;
60 class IOptionsContainer
;
62 //! Smart pointer to manage an ICommandLineOptionsModule.
63 typedef std::unique_ptr
<ICommandLineOptionsModule
>
64 ICommandLineOptionsModulePointer
;
67 * Settings to pass information between a CommandLineOptionsModule and generic
71 * \ingroup module_commandline
73 class ICommandLineOptionsModuleSettings
77 * Sets the help text for the module from string array.
79 * \param[in] help String array to set as the description.
80 * \throws std::bad_alloc if out of memory.
82 * Formatting for the help text is described on \ref page_onlinehelp.
86 const char *const desc[] = {
87 "This is the description",
91 settings->setHelpText(desc);
94 virtual void setHelpText(const ArrayRef
<const char *const> &help
) = 0;
96 * Set text indicating buggy behaviour of a module from string array.
98 * \param[in] bug String array to set as the bug text.
99 * \throws std::bad_alloc if out of memory.
101 * Formatting for the text is described on \ref page_onlinehelp.
103 virtual void setBugText(const ArrayRef
<const char *const> &bug
) = 0;
105 * Adds an option behavior that performs actions before
106 * ICommandLineOptionsModule::run() is called.
108 * For now, this takes a shared_ptr to make it easier for the caller to
109 * keep a reference to the behavior, but the behavior should be treated
110 * as owned by the options module after this call.
112 virtual void addOptionsBehavior(
113 const std::shared_ptr
<IOptionsBehavior
> &behavior
) = 0;
116 // Disallow deletion through the interface.
117 // (no need for the virtual, but some compilers warn otherwise)
118 virtual ~ICommandLineOptionsModuleSettings();
122 * Module that can be run from a command line and uses gmx::Options for
123 * argument processing.
125 * This class provides a higher-level interface on top of
126 * gmx::ICommandLineModule for cases where gmx::Options will be used
127 * for declaring the command-line arguments. The module only needs to declare
128 * the options it uses, and the framework takes care of command-line parsing
129 * and help output. The module typically consists of the following parts:
130 * - init() allows for some interaction between the module and the framework
131 * when running the module; see ICommandLineModule::init(). If no
132 * such customization is necessary, an empty implementation is sufficient.
133 * - initOptions() is called both for running the module and for printing help
134 * for the module, and it should add the options that the module
135 * understands. Values provided for the options are typically stored in
137 * - optionsFinished() can be implemented in case additional processing is
138 * needed (e.g., checking whether an option was set by the user).
139 * - run() is called when running the module, after command-line options have
140 * been parsed and their values stored in the corresponding member
143 * registerModule(), runAsMain(), or createModule() can be used to use modules
144 * of this type in all contexts where a gmx::ICommandLineModule is
145 * expected. These methods create a gmx::ICommandLineModule
146 * implementation that contains the common code needed to parse command-line
147 * options and write help, based on the information provided from the methods
151 * \ingroup module_commandline
153 class ICommandLineOptionsModule
157 * Function pointer to a factory method that returns an interface of
160 * \returns Module to run.
161 * \throws std::bad_alloc if out of memory.
163 typedef std::function
<ICommandLineOptionsModulePointer()> FactoryMethod
;
166 * Creates a ICommandLineModule to run the specified module.
168 * \param[in] name Name for the module.
169 * \param[in] description Short description for the module.
170 * \param[in] module Module to run.
171 * \returns ICommandLineModule object that runs \p module module.
172 * \throws std::bad_alloc if out of memory.
174 static std::unique_ptr
<ICommandLineModule
>
175 createModule(const char *name
, const char *description
,
176 ICommandLineOptionsModulePointer module
);
178 * Implements a main() method that runs a single module.
180 * \param argc \c argc passed to main().
181 * \param argv \c argv passed to main().
182 * \param[in] name Name for the module.
183 * \param[in] description Short description for the module.
184 * \param[in] factory Factory that returns the module to run.
186 * This method allows for uniform behavior for binaries that only
187 * contain a single module without duplicating any of the
188 * implementation from CommandLineModuleManager (startup headers,
189 * common options etc.).
191 * \see runCommandLineModule()
194 runAsMain(int argc
, char *argv
[], const char *name
,
195 const char *description
, FactoryMethod factory
);
197 * Registers a module of a certain type to this manager.
199 * \param manager Manager to register to.
200 * \param[in] name Name for the module.
201 * \param[in] description Short description for the module.
202 * \param[in] factory Factory that returns the module to register.
203 * \throws std::bad_alloc if out of memory.
205 * This method internally creates a ICommandLineModule module
206 * with the given \p name and \p description, and adds that to
207 * \p manager. When run or asked to write the help, the module calls
208 * \p factory to get the actual module, and forwards the necessary
212 registerModuleFactory(CommandLineModuleManager
*manager
,
213 const char *name
, const char *description
,
214 FactoryMethod factory
);
216 * Registers a module to this manager.
218 * \param manager Manager to register to.
219 * \param[in] name Name for the module.
220 * \param[in] description Short description for the module.
221 * \param[in] module Module to register.
222 * \throws std::bad_alloc if out of memory.
224 * This method internally creates a ICommandLineModule module
225 * with the given \p name and \p description, and adds that to
228 * This method is mainly used by tests that need to have a reference to
229 * the ICommandLineOptionsModule instance (e.g., for mocking).
232 registerModuleDirect(CommandLineModuleManager
*manager
,
233 const char *name
, const char *description
,
234 ICommandLineOptionsModulePointer module
);
236 virtual ~ICommandLineOptionsModule();
238 //! \copydoc gmx::ICommandLineModule::init()
239 virtual void init(CommandLineModuleSettings
*settings
) = 0;
241 * Initializes command-line arguments understood by the module.
243 * \param[in,out] options Options object to add the options to.
244 * \param[in,out] settings Settings to communicate information
245 * to/from generic code running the module.
247 * When running the module, this method is called after init().
248 * When printing help, there is no call to init(), and this is the only
250 * In both cases, the implementation should add options understood by
251 * the module to \p options. Output values from options should be
252 * stored in member variables.
254 virtual void initOptions(IOptionsContainer
*options
,
255 ICommandLineOptionsModuleSettings
*settings
) = 0;
257 * Called after all option values have been set.
259 * When running the module, this method is called after all
260 * command-line arguments have been parsed.
262 virtual void optionsFinished() = 0;
267 * \throws unspecified May throw exceptions to indicate errors.
268 * \returns Exit code for the program.
269 * \retval 0 on successful termination.
271 * This method is called after optionsFinished() when running the
272 * module, and should do all the processing for the module.
274 virtual int run() = 0;