Merge release-4-6 into master
[alexxy/gromacs.git] / src / gromacs / commandline / cmdlinemodulemanager.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 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 /*! \file
36  * \brief
37  * Declares gmx::CommandLineModuleManager.
38  *
39  * \author Teemu Murtola <teemu.murtola@gmail.com>
40  * \inpublicapi
41  * \ingroup module_commandline
42  */
43 #ifndef GMX_COMMANDLINE_CMDLINEMODULEMANAGER_H
44 #define GMX_COMMANDLINE_CMDLINEMODULEMANAGER_H
45
46 #include "../onlinehelp/helptopicinterface.h"
47 #include "../utility/common.h"
48 #include "../utility/uniqueptr.h"
49
50 namespace gmx
51 {
52
53 class CommandLineModuleGroup;
54 class CommandLineModuleInterface;
55 class ProgramInfo;
56
57 //! Smart pointer type for managing a CommandLineModuleInterface.
58 typedef gmx_unique_ptr<CommandLineModuleInterface>::type
59     CommandLineModulePointer;
60
61 namespace internal
62 {
63 class CommandLineModuleGroupData;
64 }   // namespace internal
65
66 /*! \brief
67  * Implements a wrapper command-line interface for multiple modules.
68  *
69  * Typical usage:
70  * \code
71    int main(int argc, char *argv[])
72    {
73        gmx::ProgramInfo &programInfo = gmx::init("gmx", &argc, &argv);
74        try
75        {
76            gmx::CommandLineModuleManager manager(&programInfo);
77            // <register all necessary modules>
78            int rc = manager.run(argc, argv);
79            gmx::finalize();
80            return rc;
81        }
82        catch (const std::exception &ex)
83        {
84            gmx::printFatalErrorMessage(stderr, ex);
85            return gmx::processExceptionAtExit(ex);
86        }
87    }
88  * \endcode
89  *
90  * \inpublicapi
91  * \ingroup module_commandline
92  */
93 class CommandLineModuleManager
94 {
95     public:
96         //! Function pointer type for a C main function.
97         typedef int (*CMainFunction)(int argc, char *argv[]);
98
99         /*! \brief
100          * Implements a main() method that runs a single module.
101          *
102          * \param argc   \c argc passed to main().
103          * \param argv   \c argv passed to main().
104          * \param module Module to run.
105          *
106          * This method allows for uniform behavior for binaries that only
107          * contain a single module without duplicating any of the
108          * implementation from CommandLineModuleManager (startup headers,
109          * common options etc.).
110          *
111          * The signature assumes that \p module construction does not throw
112          * (because otherwise the caller would need to duplicate all the
113          * exception handling code).  It is possible to move the construction
114          * inside the try/catch in this method using an indirection similar to
115          * TrajectoryAnalysisCommandLineRunner::runAsMain(), but until that is
116          * necessary, the current approach leads to simpler code.
117          *
118          * Usage:
119          * \code
120            int main(int argc, char *argv[])
121            {
122                CustomCommandLineModule module;
123                return gmx::CommandLineModuleManager::runAsMainSingleModule(argc, argv, &module);
124            }
125          * \endcode
126          *
127          * Does not throw.  All exceptions are caught and handled internally.
128          */
129         static int runAsMainSingleModule(int argc, char *argv[],
130                                          CommandLineModuleInterface *module);
131         /*! \brief
132          * Implements a main() method that runs a given function.
133          *
134          * \param argc         \c argc passed to main().
135          * \param argv         \c argv passed to main().
136          * \param mainFunction The main()-like method to wrap.
137          *
138          * This method creates a dummy command-line module that does its
139          * processing by calling \p mainFunction; see addModuleCMain() for
140          * details.  It then runs this module with runAsMainSingleModule().
141          * This allows the resulting executable to handle common options and do
142          * other common actions (e.g., startup headers) without duplicate code
143          * in the main methods.
144          *
145          * Usage:
146          * \code
147            int my_main(int argc, char *argv[])
148            {
149                // <...>
150            }
151
152            int main(int argc, char *argv[])
153            {
154                return gmx::CommandLineModuleManager::runAsMainCMain(argc, argv, &my_main);
155            }
156          * \endcode
157          *
158          * Does not throw.  All exceptions are caught and handled internally.
159          */
160         static int runAsMainCMain(int argc, char *argv[],
161                                   CMainFunction mainFunction);
162
163         /*! \brief
164          * Initializes a command-line module manager.
165          *
166          * \param     programInfo  Program information for the running binary.
167          * \throws    std::bad_alloc if out of memory.
168          *
169          * The binary name is used to detect when the binary is run through a
170          * symlink, and automatically invoke a matching module in such a case.
171          *
172          * \p programInfo is non-const to allow the manager to amend it based
173          * on the actual module that is getting executed.
174          */
175         explicit CommandLineModuleManager(ProgramInfo *programInfo);
176         ~CommandLineModuleManager();
177
178         /*! \brief
179          * Sets the module manager to quiet mode: don't print anything.
180          *
181          * \param[in] bQuiet  Whether the module manager should remain silent.
182          *
183          * Normally, the module manager prints out some information to stderr
184          * before it starts the module and after it finishes.  This removes
185          * that output, which is useful in particular for unit tests so that
186          * they don't spam stderr.
187          */
188         void setQuiet(bool bQuiet);
189
190         /*! \brief
191          * Makes the manager always run a single module.
192          *
193          * \param     module  Module to run.
194          *
195          * This method disables all mechanisms for selecting a module, and
196          * directly passes all command-line arguments to \p module.
197          * Help arguments are an exception: these are still recognized by the
198          * manager and translated into a call to
199          * CommandLineModuleInterface::writeHelp().
200          *
201          * This is public mainly for unit testing purposes; for other code,
202          * runAsMainSingleModule() typically provides the desired
203          * functionality.
204          *
205          * Does not throw.
206          */
207         void setSingleModule(CommandLineModuleInterface *module);
208         /*! \brief
209          * Adds a given module to this manager.
210          *
211          * \param   module  Module to add.
212          * \throws  std::bad_alloc if out of memory.
213          *
214          * The manager takes ownership of the object.
215          *
216          * This method is public mostly for testing purposes; for typical uses,
217          * registerModule() is a more convenient way of adding modules.
218          *
219          * \see registerModule()
220          */
221         void addModule(CommandLineModulePointer module);
222         /*! \brief
223          * Adds a module that runs a given main()-like function.
224          *
225          * \param[in] name             Name for the module.
226          * \param[in] shortDescription One-line description for the module.
227          * \param[in] mainFunction     Main function to wrap.
228          * \throws    std::bad_alloc if out of memory.
229          *
230          * There is normally no need to call this method outside the Gromacs
231          * library.  User code usually wants to use runAsMainCMain().
232          *
233          * \p name and \p shortDescription should be string constants, or the
234          * caller should otherwise ensure that they stay in scope for the
235          * duration the CommandLineModuleManager object exists.
236          * \p mainFunction should call parse_common_args() to process its
237          * command-line arguments.
238          */
239         void addModuleCMain(const char *name, const char *shortDescription,
240                             CMainFunction mainFunction);
241         /*! \brief
242          * Registers a module of a certain type to this manager.
243          *
244          * \tparam  Module  Type of module to register.
245          * \throws  std::bad_alloc if out of memory.
246          *
247          * \p Module must be default-constructible and implement
248          * CommandLineModuleInterface.
249          *
250          * This method is provided as a convenient alternative to addModule()
251          * for cases where each module is implemented by a different type
252          * (which should be the case for typical situations outside unit
253          * tests).
254          */
255         template <class Module>
256         void registerModule()
257         {
258             addModule(CommandLineModulePointer(new Module));
259         }
260
261         /*! \brief
262          * Adds a group for modules to use in help output.
263          *
264          * \param[in] title  Short title for the group.
265          * \returns   Handle that can be used to add modules to the group.
266          * \throws    std::bad_alloc if out of memory.
267          *
268          * Creates a group that is used to structure the list of all modules in
269          * help output.  Modules are added to the group using the returned
270          * object.
271          */
272         CommandLineModuleGroup addModuleGroup(const char *title);
273
274         /*! \brief
275          * Makes given help topic available through the manager's help module.
276          *
277          * \param[in]  topic  Help topic to add.
278          * \throws     std::bad_alloc if out of memory.
279          *
280          * The manager takes ownership of the help topic.
281          */
282         void addHelpTopic(HelpTopicPointer topic);
283
284         /*! \brief
285          * Runs a module based on given command line.
286          *
287          * \param[in] argc  Number of elements in \p argv.
288          * \param[in] argv  Command-line arguments.
289          * \throws   unspecified  Throws any exception that the selected module
290          *      throws.
291          * \returns  Exit code for the program.
292          * \retval   0 on successful termination.
293          * \retval   2 if no module is specified, or if the module is not found.
294          *
295          * Runs the module whose name matches \p argv[1].
296          */
297         int run(int argc, char *argv[]);
298
299     private:
300         class Impl;
301
302         PrivateImplPointer<Impl> impl_;
303 };
304
305 /*! \brief
306  * Handle to add content to a group added with
307  * CommandLineModuleManager::addModuleGroup().
308  *
309  * This class only provides a public interface to construct a module group for
310  * CommandLineModuleManager, and has semantics similar to a pointer: copies all
311  * point to the same group.  The actual state of the group is maintained in an
312  * internal implementation class.
313  *
314  * \inpublicapi
315  * \ingroup module_commandline
316  */
317 class CommandLineModuleGroup
318 {
319     public:
320         /*! \cond internal */
321         //! Shorthand for the implementation type that holds all the data.
322         typedef internal::CommandLineModuleGroupData Impl;
323
324         //! Creates a new group (only called by CommandLineModuleManager).
325         explicit CommandLineModuleGroup(Impl *impl) : impl_(impl) {}
326         //! \endcond
327
328         /*! \brief
329          * Adds a module to this group.
330          *
331          * \param[in] name  Name of the module.
332          * \throws    std::bad_alloc if out of memory.
333          *
334          * This works as addModuleWithDescription(), but uses the short
335          * description of the module itself as the description.
336          *
337          * \see addModuleWithDescription()
338          */
339         void addModule(const char *name);
340         /*! \brief
341          * Adds a module to this group with a custom description.
342          *
343          * \param[in] name        Name of the module.
344          * \param[in] description Description of the module in this group.
345          * \throws    std::bad_alloc if out of memory.
346          *
347          * \p name must name a module added into the CommandLineModuleManager.
348          * It is possible to add the same module into multiple groups.
349          */
350         void addModuleWithDescription(const char *name, const char *description);
351
352     private:
353         //! Pointer to the data owned by CommandLineModuleManager.
354         Impl                     *impl_;
355 };
356
357 } // namespace gmx
358
359 #endif