Merge release-4-6 into master
[alexxy/gromacs.git] / src / gromacs / onlinehelp / helpwritercontext.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2012, by the GROMACS development team, led by
5  * David van der Spoel, Berk Hess, Erik Lindahl, and including many
6  * others, as listed in the AUTHORS file in the top-level source
7  * 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::HelpWriterContext.
38  *
39  * \author Teemu Murtola <teemu.murtola@gmail.com>
40  * \inlibraryapi
41  * \ingroup module_onlinehelp
42  */
43 #ifndef GMX_ONLINEHELP_HELPWRITERCONTEXT_H
44 #define GMX_ONLINEHELP_HELPWRITERCONTEXT_H
45
46 #include <string>
47
48 #include "../utility/common.h"
49
50 namespace gmx
51 {
52
53 class File;
54
55 /*! \cond libapi */
56 //! \libinternal Output format for help writing.
57 enum HelpOutputFormat
58 {
59     eHelpOutputFormat_Console,  //!< Plain text directly on the console.
60     eHelpOutputFormat_NR        //!< Used for the number of output formats.
61 };
62 //! \endcond
63
64 /*! \libinternal \brief
65  * Context information for writing out help.
66  *
67  * The purpose of this class is to pass information about the output format to
68  * methods that write help, and to abstract away most of the details of
69  * different output formats.
70  * Additionally, it can keep other context information, although it currently
71  * does not.  Such additional context information would be useful for
72  * formatting links/references to other help topics.
73  *
74  * TODO: This class will need additional work as part of Redmine issue #969.
75  *
76  * \inlibraryapi
77  * \ingroup module_onlinehelp
78  */
79 class HelpWriterContext
80 {
81     public:
82         /*! \brief
83          * Initializes a context with the given output file and format.
84          *
85          * \throws std::bad_alloc if out of memory.
86          */
87         HelpWriterContext(File *file, HelpOutputFormat format);
88         ~HelpWriterContext();
89
90         /*! \brief
91          * Returns the active output format.
92          *
93          * Does not throw.
94          */
95         HelpOutputFormat outputFormat() const;
96         /*! \brief
97          * Returns the raw output file for writing the help.
98          *
99          * Using this file directly should be avoided, as it requires one to
100          * have different code for each output format.
101          * Using other methods in this class should be preferred.
102          *
103          * Does not throw.
104          */
105         File &outputFile() const;
106
107         /*! \brief
108          * Substitutes markup used in help text.
109          *
110          * \param[in] text  Text to substitute.
111          * \returns   \p text with markup substituted.
112          * \throws    std::bad_alloc if out of memory.
113          */
114         std::string substituteMarkup(const std::string &text) const;
115         /*! \brief
116          * Writes a title for the current help topic.
117          *
118          * \param[in] title  Title to write.
119          * \throws    std::bad_alloc if out of memory.
120          * \throws    FileIOError on any I/O error.
121          */
122         void writeTitle(const std::string &title) const;
123         /*! \brief
124          * Writes a formatted text block into the output.
125          *
126          * \param[in] text  Text to format.
127          * \throws    std::bad_alloc if out of memory.
128          * \throws    FileIOError on any I/O error.
129          *
130          * In addition to substituteMarkup(), also does line wrapping for
131          * console output.
132          *
133          * TODO: This function and substituteMarkup() should work more
134          * similarly.
135          */
136         void writeTextBlock(const std::string &text) const;
137
138     private:
139         class Impl;
140
141         PrivateImplPointer<Impl> impl_;
142 };
143
144 } // namespace gmx
145
146 #endif