mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
mxError.hpp
Go to the documentation of this file.
1/** \file mxError.hpp
2 * \author Jared R. Males (jaredmales@gmail.com)
3 * \brief Declares and defines the mxlib error reporting system.
4 * \ingroup error_handling_files
5 *
6 */
7
8//***********************************************************************//
9// Copyright 2015, 2016, 2017 Jared R. Males (jaredmales@gmail.com)
10//
11// This file is part of mxlib.
12//
13// mxlib is free software: you can redistribute it and/or modify
14// it under the terms of the GNU General Public License as published by
15// the Free Software Foundation, either version 3 of the License, or
16// (at your option) any later version.
17//
18// mxlib is distributed in the hope that it will be useful,
19// but WITHOUT ANY WARRANTY; without even the implied warranty of
20// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21// GNU General Public License for more details.
22//
23// You should have received a copy of the GNU General Public License
24// along with mxlib. If not, see <http://www.gnu.org/licenses/>.
25//***********************************************************************//
26
27#ifndef __mxError__
28#define __mxError__
29
30#include <cerrno>
31#include <cstring>
32#include <sstream>
33
34/** \addtogroup error_macros
35 *
36 * mxlib components use these macros to report errors to the user, which by default are wrappers for mx::error_report
37 * and mx::errno_report. This behavior can be changed with preprocessor defines.
38 *
39 * To completely suppress all mxlib error reporting, include the following before includng any mxlib headers
40 * \code
41 * #define MX_NO_ERROR_REPORTS
42 * \endcode
43 */
44
45/** \ingroup error_handling
46 * @{
47 */
48
49/** \def MX_NO_ERROR_REPORTS
50 * \brief If this is defined, then no errors are reported.
51 * \ingroup error_macros
52 */
53#ifdef MX_NO_ERROR_REPORTS
54
55// Just defining these as empty macros, though this is currently untested.
56/** \todo test MX_NO_ERROR_REPORTS */
57
58#define mxError( esrc, ecode, expl )
59#define mxPError( esrc, ecode, expl )
60
61#else
62
63#ifndef mxError
64
65#include <iostream>
66
67/** \def mxError
68 * \brief This reports an mxlib specific error
69 *
70 * Can be predefined to change the error reporting of mxlib.
71 *
72 * \param[in] esrc is intended to identify the component (i.e. the class name)
73 * \param[in] ecode is an errno erro code
74 * \param[in] expl [optional] if more information can be provided, use this to inform the user.
75 *
76 * \ingroup error_macros
77 */
78#define mxError( esrc, ecode, expl ) \
79 std::cerr << "\n" << mx::error_report( esrc, ecode, __FILE__, __LINE__, expl ) << "\n";
80
81#endif // mxError
82
83#ifndef mxPError
84
85/** \def mxPError
86 * \brief This reports a standard library error, taking after perror.
87 *
88 * Can be pre-defined to change the error reporting of mxlib.
89 *
90 * \param[in] esrc is intended to identify the component (i.e. the class name)
91 * \param[in] ecode is an errno erro code
92 * \param[in] expl [optional] if more information can be provided, use this to inform the user.
93 *
94 * \addtogroup error_macros
95 */
96#define mxPError( esrc, ecode, expl ) \
97 std::cerr << "\n" << mx::errno_report( esrc, ecode, __FILE__, __LINE__, expl ) << "\n";
98
99#endif // mxPError
100
101#endif // MX_NO_ERROR_REPORTS
102
103/// @}
104
105namespace mx
106{
107/** \defgroup mxe_errors mxlib Error Codes
108 * \ingroup error_handling
109 */
110
111/** \def MXE_INVALIDARG
112 * \brief An argument was invalid.
113 * \ingroup mxe_errors
114 */
115#define MXE_INVALIDARG 25
116#define MXE_INVALIDARG_NAME "MXE_INVALIDARG"
117#define MXE_INVALIDARG_MSG "An argument was invalid."
118
119/** \def MXE_INVALIDCONFIG
120 * \brief A config setting was invalid.
121 * \ingroup mxe_errors
122 */
123#define MXE_INVALIDCONFIG 27
124#define MXE_INVALIDCONFIG_NAME "MXE_INVALIDCONFIG"
125#define MXE_INVALIDCONFIG_MSG "A config setting was invalid."
126
127/** \def MXE_NOTIMPL
128 * \brief A component or technique is not implemented.
129 * \ingroup mxe_errors
130 */
131#define MXE_NOTIMPL 30
132#define MXE_NOTIMPL_NAME "MXE_NOTIMPL"
133#define MXE_NOTIMPL_MSG "A component or technique is not implemented."
134
135/** \def MXE_PARAMNOTSET
136 * \brief A parameter was not set
137 * \ingroup mxe_errors
138 */
139#define MXE_PARAMNOTSET 35
140#define MXE_PARAMNOTSET_NAME "MXE_PARAMNOTSET"
141#define MXE_PARAMNOTSET_MSG "A parameter was not set."
142
143/** \def MXE_ENVNOTSET
144 * \brief An environment variable is not set
145 * \ingroup mxe_errors
146 */
147#define MXE_ENVNOTSET 36
148#define MXE_ENVNOTSET_NAME "MXE_ENVNOTSET"
149#define MXE_ENVNOTSET_MSG "An environment variable is not set."
150
151/** \def MXE_NOTFOUND
152 * \brief An item was not found
153 * \ingroup mxe_errors
154 */
155#define MXE_NOTFOUND 40
156#define MXE_NOTFOUND_NAME "MXE_NOTFOUND"
157#define MXE_NOTFOUND_MSG "An item was not found."
158
159/** \def MXE_SIZEERR
160 * \brief A size was invalid or calculated incorrectly
161 * \ingroup mxe_errors
162 */
163#define MXE_SIZEERR 55
164#define MXE_SIZEERR_NAME "MXE_SIZEERR"
165#define MXE_SIZEERR_MSG "A size was invalid or calculated incorrectly."
166
167/** \def MXE_ALLOCERR
168 * \brief An error occurred during memory allocation.
169 * \ingroup mxe_errors
170 */
171#define MXE_ALLOCERR 60
172#define MXE_ALLOCERR_NAME "MXE_ALLOCERR"
173#define MXE_ALLOCERR_MSG "An error occurred during memory allocation."
174
175/** \def MXE_FREEERR
176 * \brief An error occurred during memory de-allocation.
177 * \ingroup mxe_errors
178 */
179#define MXE_FREEERR 65
180#define MXE_FREEERR_NAME "MXE_FREEERR"
181#define MXE_FREEERR_MSG "An error occurred during memory de-allocation."
182
183/** \def MXE_PARSEERR
184 * \brief A parsing error occurred.
185 * \ingroup mxe_errors
186 */
187#define MXE_PARSEERR 75
188#define MXE_PARSEERR_NAME "MXE_PARSEERR"
189#define MXE_PARSEERR_MSG "A parsing error occurred."
190
191/** \def MXE_FILEOERR
192 * \brief An error occurred while opening a file.
193 * \ingroup mxe_errors
194 */
195#define MXE_FILEOERR 1034
196#define MXE_FILEOERR_NAME "MXE_FILEOERR"
197#define MXE_FILEOERR_MSG "An error occurred while opening a file."
198
199/** \def MXE_FILEWERR
200 * \brief An error occurred while writing to a file.
201 * \ingroup mxe_errors
202 */
203#define MXE_FILEWERR 1044
204#define MXE_FILEWERR_NAME "MXE_FILEWERR"
205#define MXE_FILEWERR_MSG "An error occurred while writing to a file."
206
207/** \def MXE_FILERERR
208 * \brief An error occurred while reading from a file.
209 * \ingroup mxe_errors
210 */
211#define MXE_FILERERR 1049
212#define MXE_FILERERR_NAME "MXE_FILERERR"
213#define MXE_FILERERR_MSG "An error occurred while reading from a file."
214
215/** \def MXE_FILECERR
216 * \brief An error occurred while closing a file.
217 * \ingroup mxe_errors
218 */
219#define MXE_FILECERR 1054
220#define MXE_FILECERR_NAME "MXE_FILECERR"
221#define MXE_FILECERR_MSG "An error occurred while closing a file."
222
223/** \def MXE_FILENOTFOUND
224 * \brief The file was not found.
225 * \ingroup mxe_errors
226 */
227#define MXE_FILENOTFOUND 1059
228#define MXE_FILENOTFOUND_NAME "MXE_FILENOTFOUND"
229#define MXE_FILENOTFOUND_MSG "The file was not found."
230
231/** \def MXE_PROCERR
232 * \brief An error occrred while starting a process.
233 * \ingroup mxe_errors
234 */
235#define MXE_PROCERR 2001
236#define MXE_PROCERR_NAME "MXE_PROCERR"
237#define MXE_PROCERR_MSG "An error occured while starting a process."
238
239/** \def MXE_TIMEOUT
240 * \brief A timeout occurred.
241 * \ingroup mxe_errors
242 */
243#define MXE_TIMEOUT 2322
244#define MXE_TIMEOUT_NAME "MXE_TIMEOUT"
245#define MXE_TIMEOUT_MSG "A timeout occurred."
246
247/** \def MXE_LIBERR
248 * \brief An error was returned by a library.
249 * \ingroup mxe_errors
250 */
251#define MXE_LIBERR 4000
252#define MXE_LIBERR_NAME "MXE_LIBERR"
253#define MXE_LIBERR_MSG "An error was returned by a library."
254
255/** \def MXE_GNUPLOTERR
256 * \brief An error was returned by gnuplot.
257 * \ingroup mxe_errors
258 */
259#define MXE_GNUPLOTERR 4567
260#define MXE_GNUPLOTERR_NAME "MXE_GNUPLOTERR"
261#define MXE_GNUPLOTERR_MSG "An error was returned by gnuplot."
262
263/** \def MXE_LAPACKERR
264 * \brief An error was returned by Lapack.
265 * \ingroup mxe_errors
266 */
267#define MXE_LAPACKERR 6890
268#define MXE_LAPACKERR_NAME "MXE_LAPACKERR"
269#define MXE_LAPACKERR_MSG "An error was returned by Lapack."
270
271/// Return the name for an mxlib error code
272/**
273 *
274 * \returns the name of the macro corresponding to the error code.
275 *
276 * \ingroup error_handling
277 */
278std::string MXE_CodeToName( int ec /**< [in] the error code */ );
279
280/// Return the description for an mxlib error code
281/**
282 *
283 * \returns the description for and error code.
284 *
285 * \ingroup error_handling
286 */
287std::string MXE_CodeToDescription( int ec /**< [in] the error code */ );
288
289/// Return the macro name and a message for a standard errno code
290/**
291 *
292 * \returns the name of the macro corresponding to the code.
293 *
294 * \ingroup error_handling
295 */
296std::string errno_CodeToName( int ec /**< [in] the error code */ );
297
298/// Construct a rich error report given an mxlib error code
299/**
300 *
301 * \return the formatted error report.
302 *
303 * \ingroup error_handling
304 */
305std::string error_report(
306 const std::string &source, ///< [in] is intended to identify the mxlib component (i.e. the class name)
307 const int &code, ///< [in] is an MXE_* error code
308 const std::string &file, ///< [in] should be passed the __FILE__ macro
309 const int &line, ///< [in] should be passed the __LINE__ macro
310 const std::string &expl = "" ///< [in] [optional] if more information can be provided, use this to inform the user.
311);
312
313/// Construct a rich error report given a standard errno error code
314/**
315 * \return the formatted error report.
316 *
317 * \ingroup error_handling
318 */
319std::string errno_report(
320 const std::string &source, ///< [in] intended to identify the component (i.e. the class name)
321 int ec, ///< [in] an errno erro code
322 const std::string &file, ///< [in] file should be passed the __FILE__ macro
323 const int &line, ///< [in] line should be passed the __LINE__ macro
324 const std::string &expl = "" ///< [in] [optional] if more information can be provided, use this to inform the user.
325);
326
327} // namespace mx
328
329#endif //__mxError__
std::string error_report(const std::string &source, const int &code, const std::string &file, const int &line, const std::string &expl="")
Construct a rich error report given an mxlib error code.
Definition mxError.cpp:457
std::string MXE_CodeToName(int ec)
Return the name for an mxlib error code.
Definition mxError.cpp:32
std::string errno_CodeToName(int ec)
Return the macro name and a message for a standard errno code.
Definition mxError.cpp:132
std::string MXE_CodeToDescription(int ec)
Return the description for an mxlib error code.
Definition mxError.cpp:82
std::string errno_report(const std::string &source, int ec, const std::string &file, const int &line, const std::string &expl="")
Construct a rich error report given a standard errno error code.
Definition mxError.cpp:482
The mxlib c++ namespace.
Definition mxError.hpp:106