Apply clang-format to source tree
[alexxy/gromacs.git] / src / gromacs / commandline / cmdlinehelpcontext.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2013,2014,2015,2018,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.
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 /*! \libinternal \file
36  * \brief
37  * Declares gmx::CommandLineHelpContext.
38  *
39  * \author Teemu Murtola <teemu.murtola@gmail.com>
40  * \inlibraryapi
41  * \ingroup module_commandline
42  */
43 #ifndef GMX_COMMANDLINE_CMDLINEHELPCONTEXT_H
44 #define GMX_COMMANDLINE_CMDLINEHELPCONTEXT_H
45
46 #include <string>
47
48 #include "gromacs/onlinehelp/helpwritercontext.h"
49 #include "gromacs/utility/classhelpers.h"
50
51 namespace gmx
52 {
53
54 class ShellCompletionWriter;
55
56 /*! \libinternal \brief
57  * Context information for writing out command-line help.
58  *
59  * This class wraps a HelpWriterContext, extending it with information specific
60  * for command-line help export.  This way, code using only the routines in the
61  * onlinehelp module is not exposed to extra features of the command-line help
62  * export.
63  *
64  * Copying a context works like with HelpWriterContext: the output file and
65  * most state is shared.  However, setModuleDisplayName() and setShowHidden()
66  * can be set independently for the child context.  Defaults for these options
67  * are inherited from the parent.
68  *
69  * \ingroup module_commandline
70  */
71 class CommandLineHelpContext
72 {
73 public:
74     /*! \brief
75      * Creates a context for help export.
76      *
77      * Wraps the constructor of HelpWriterContext.
78      */
79     CommandLineHelpContext(TextWriter*        writer,
80                            HelpOutputFormat   format,
81                            const HelpLinks*   links,
82                            const std::string& programName);
83     //! Creates a context for a particular HelpWriterContext.
84     explicit CommandLineHelpContext(const HelpWriterContext& writerContext);
85     /*! \brief
86      * Creates a context for shell completion.
87      */
88     explicit CommandLineHelpContext(ShellCompletionWriter* writer);
89     //! Creates a copy of the context.
90     explicit CommandLineHelpContext(const CommandLineHelpContext& other);
91     //! Moves the context.
92     CommandLineHelpContext(CommandLineHelpContext&& other) noexcept;
93     //! Move-assigns the context.
94     CommandLineHelpContext& operator=(CommandLineHelpContext&& other) noexcept;
95     ~CommandLineHelpContext();
96
97     /*! \brief
98      * Sets a display name for the module for which help is being written.
99      *
100      * \throws std::bad_alloc if out of memory.
101      */
102     void setModuleDisplayName(const std::string& name);
103     //! Sets whether hidden options should be shown in help output.
104     void setShowHidden(bool bHidden);
105     //! \copydoc HelpWriterContext::enterSubSection()
106     void enterSubSection(const std::string& title);
107
108     //! Returns the lower-level context for writing the help.
109     const HelpWriterContext& writerContext() const;
110     /*! \brief
111      * Returns a display name for the module for which help is being written.
112      *
113      * Does not throw.
114      */
115     const char* moduleDisplayName() const;
116     //! Returns whether hidden options should be shown in help output.
117     bool showHidden() const;
118     //! Returns whether this context is for exporting shell completions.
119     bool isCompletionExport() const;
120     /*! \brief
121      * Returns the shell completion writer for this context.
122      *
123      * Can only be called if isCompletionExport() returns `true`.
124      */
125     ShellCompletionWriter& shellCompletionWriter() const;
126
127 private:
128     class Impl;
129
130     PrivateImplPointer<Impl> impl_;
131
132     GMX_DISALLOW_ASSIGN(CommandLineHelpContext);
133 };
134
135 /*! \libinternal \brief
136  * Helper for passing CommandLineHelpContext into parse_common_args().
137  *
138  * This class provides a mechanism to set and retrieve a global
139  * CommandLineHelpContext object.  It is used to pass this object into
140  * parse_common_args() from CommandLineModuleManager::runAsMainCMain() through
141  * the main() function that is not aware of the wrapper binary mechanism.
142  * It is not thread-safe because in this limited use case, it is always called
143  * from a single-threaded context.
144  *
145  * \inlibraryapi
146  * \ingroup module_onlinehelp
147  */
148 class GlobalCommandLineHelpContext
149 {
150 public:
151     //! Returns the global context, or NULL if not set.
152     static const CommandLineHelpContext* get();
153
154     /*! \brief
155      * Sets the global context for the scope.
156      *
157      * The global context is cleared when this object goes out of scope.
158      *
159      * It is an error to have more than one GlobalCommandLineHelpContext
160      * object in existence at the same time.
161      */
162     explicit GlobalCommandLineHelpContext(const CommandLineHelpContext& context);
163     //! Clears the global context.
164     ~GlobalCommandLineHelpContext();
165 };
166
167 } // namespace gmx
168
169 #endif