Allow copying of HelpWriterContext.
[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,2013, 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 #include <vector>
48
49 #include "../utility/common.h"
50
51 namespace gmx
52 {
53
54 class File;
55 class TextLineWrapperSettings;
56
57 /*! \cond libapi */
58 //! \libinternal Output format for help writing.
59 enum HelpOutputFormat
60 {
61     eHelpOutputFormat_Console,  //!< Plain text directly on the console.
62     eHelpOutputFormat_Man,      //!< Man page.
63     eHelpOutputFormat_Html,     //!< Html output for online manual.
64     eHelpOutputFormat_NR        //!< Used for the number of output formats.
65 };
66 //! \endcond
67
68 /*! \libinternal \brief
69  * Hyperlink data for writing out help.
70  *
71  * This class is separate from HelpWriterContext to allow constructing the list
72  * of links once and reusing them across multiple help writer contexts.
73  * This is used when exporting all the help from the wrapper binary to avoid
74  * repeatedly constructing the same data structure for each help item.
75  *
76  * \ingroup module_onlinehelp
77  */
78 class HelpLinks
79 {
80     public:
81         //! Initializes an empty links collection.
82         HelpLinks();
83         ~HelpLinks();
84
85         /*! \brief
86          * Adds a link.
87          *
88          * \param[in] linkName   Name of the link in input text.
89          * \param[in] targetName Hyperlink target.
90          *
91          * Any occurrence of \p linkName in the text passed to markup
92          * substitution methods in HelpWriterContext is made into a hyperlink
93          * to \p targetName if the markup format supports that.
94          */
95         void addLink(const std::string &linkName,
96                      const std::string &targetName);
97
98     private:
99         class Impl;
100
101         PrivateImplPointer<Impl> impl_;
102
103         //! Allows the context to use the links.
104         friend class HelpWriterContext;
105 };
106
107 /*! \libinternal \brief
108  * Context information for writing out help.
109  *
110  * The purpose of this class is to pass information about the output format to
111  * methods that write help, and to abstract away most of the details of
112  * different output formats.
113  *
114  * The state of a context object (excluding the fact that the output file is
115  * written to) does not change after initial construction of the object.
116  * Copying creates a context object that shares state with the source.
117  *
118  * TODO: This class will need additional work as part of Redmine issue #969.
119  *
120  * \inlibraryapi
121  * \ingroup module_onlinehelp
122  */
123 class HelpWriterContext
124 {
125     public:
126         /*! \brief
127          * Initializes a context with the given output file and format.
128          *
129          * \throws std::bad_alloc if out of memory.
130          */
131         HelpWriterContext(File *file, HelpOutputFormat format);
132         /*! \brief
133          * Initializes a context with the given output file, format and links.
134          *
135          * \throws std::bad_alloc if out of memory.
136          *
137          * A reference to \p links is stored until the HelpWriterContext
138          * is destructed.  The caller is responsible for ensuring that the
139          * links object remains valid long enough.
140          */
141         HelpWriterContext(File *file, HelpOutputFormat format,
142                           const HelpLinks *links);
143         //! Creates a copy of the context.
144         HelpWriterContext(const HelpWriterContext &other);
145         ~HelpWriterContext();
146
147         /*! \brief
148          * Returns the active output format.
149          *
150          * Does not throw.
151          */
152         HelpOutputFormat outputFormat() const;
153         /*! \brief
154          * Returns the raw output file for writing the help.
155          *
156          * Using this file directly should be avoided, as it requires one to
157          * have different code for each output format.
158          * Using other methods in this class should be preferred.
159          *
160          * Does not throw.
161          */
162         File &outputFile() const;
163
164         /*! \brief
165          * Substitutes markup used in help text and wraps lines.
166          *
167          * \param[in] settings Line wrapper settings.
168          * \param[in] text     Text to substitute.
169          * \returns   \p text with markup substituted and wrapped.
170          * \throws    std::bad_alloc if out of memory.
171          *
172          * \see TextLineWrapper::wrapToString()
173          */
174         std::string
175         substituteMarkupAndWrapToString(const TextLineWrapperSettings &settings,
176                                         const std::string             &text) const;
177         /*! \brief
178          * Substitutes markup used in help text and wraps lines.
179          *
180          * \param[in] settings Line wrapper settings.
181          * \param[in] text     Text to substitute.
182          * \returns   \p text with markup substituted and wrapped as a list of
183          *      lines.
184          * \throws    std::bad_alloc if out of memory.
185          *
186          * \see TextLineWrapper::wrapToVector()
187          */
188         std::vector<std::string>
189         substituteMarkupAndWrapToVector(const TextLineWrapperSettings &settings,
190                                         const std::string             &text) const;
191         /*! \brief
192          * Writes a title for the current help topic.
193          *
194          * \param[in] title  Title to write.
195          * \throws    std::bad_alloc if out of memory.
196          * \throws    FileIOError on any I/O error.
197          */
198         void writeTitle(const std::string &title) const;
199         /*! \brief
200          * Writes a formatted text block into the output.
201          *
202          * \param[in] text  Text to format.
203          * \throws    std::bad_alloc if out of memory.
204          * \throws    FileIOError on any I/O error.
205          *
206          * Convenience function that calls substituteMarkupAndWrapToString()
207          * and writes the result directly to the output file.
208          */
209         void writeTextBlock(const std::string &text) const;
210         /*! \brief
211          * Writes a formatted text block into the output.
212          *
213          * \param[in] settings Line wrapper settings.
214          * \param[in] text     Text to format.
215          * \throws    std::bad_alloc if out of memory.
216          * \throws    FileIOError on any I/O error.
217          *
218          * Convenience function that calls substituteMarkupAndWrapToString()
219          * and writes the result directly to the output file.
220          */
221         void writeTextBlock(const TextLineWrapperSettings &settings,
222                             const std::string             &text) const;
223
224     private:
225         class Impl;
226
227         /*! \brief
228          * Constructs a context object with the given implementation class.
229          *
230          * \param[in] impl  Implementation object.
231          *
232          * Does not throw.
233          */
234         explicit HelpWriterContext(Impl *impl);
235
236         PrivateImplPointer<Impl> impl_;
237
238         GMX_DISALLOW_ASSIGN(HelpWriterContext);
239 };
240
241 } // namespace gmx
242
243 #endif