2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2011,2012,2013,2014,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.
35 /*! \libinternal \file
37 * Declares ::gmx::MessageStringCollector.
39 * \author Teemu Murtola <teemu.murtola@gmail.com>
41 * \ingroup module_utility
43 #ifndef GMX_UTILITY_MESSAGESTRINGCOLLECTOR_H
44 #define GMX_UTILITY_MESSAGESTRINGCOLLECTOR_H
48 #include "gromacs/utility/classhelpers.h"
53 /*! \libinternal \brief
54 * Helper class for collecting message strings, optionally with context.
56 * After strings have been collected, they can be formatted into one long
57 * string for, e.g., printing out or for including in an exception.
60 * \ingroup module_utility
62 class MessageStringCollector
65 MessageStringCollector();
66 ~MessageStringCollector();
69 * Starts a context for messages.
71 * \param[in] name Short description of the context.
73 * \see finishContext()
74 * \see MessageStringContext
76 void startContext(const char* name
);
78 * Convenience wrapper for startContext(const char *).
80 void startContext(const std::string
& name
) { startContext(name
.c_str()); }
84 void append(const char* message
) { append(std::string(message
)); }
88 void append(const std::string
& message
);
90 * Ends a context started with startContext().
92 * \see MessageStringContext
96 * Clears all collected messages.
101 * Returns true if any messages have been added.
103 * \returns true if append() has been called at least once.
105 * The return value is identical to `toString().empty()`.
106 * Calls to startContext() or finishContext() only do not cause this
107 * function to return true.
109 bool isEmpty() const;
111 * Returns all collected messages as one string.
113 std::string
toString() const;
118 PrivateImplPointer
<Impl
> impl_
;
121 /*! \libinternal \brief
122 * Convenience class for creating a message context.
124 * This class provides a RAII-style interface to the
125 * MessageStringCollector::startContext() and
126 * MessageStringCollector::finishContext() methods: finishContext() is called
127 * upon destruction of the object. This avoids the need to call
128 * MessageStringCollector::finishContext() on every possible exit point.
132 bool function(::gmx::MessageStringCollector *errors)
134 ::gmx::MessageStringContext errcontext(errors, "In function()");
135 bool bOk = function2(errors);
136 bOk = function3(errors) && bOk;
142 * \see MessageStringCollector
144 * \ingroup module_utility
146 class MessageStringContext
150 * Adds a context for the given object.
152 MessageStringContext(MessageStringCollector
* collector
, const char* name
) :
153 collector_(*collector
)
155 collector_
.startContext(name
);
158 * Adds a context for the given object.
160 MessageStringContext(MessageStringCollector
* collector
, const std::string
& name
) :
161 collector_(*collector
)
163 collector_
.startContext(name
);
166 * Calls MessageStringCollector::finishContext() on the wrapped object.
168 ~MessageStringContext() { collector_
.finishContext(); }
171 //! The wrapped object.
172 MessageStringCollector
& collector_
;
174 GMX_DISALLOW_COPY_AND_ASSIGN(MessageStringContext
);