mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
mxException.hpp
Go to the documentation of this file.
1/** \file mxException.hpp
2 * \author Jared R. Males (jaredmales@gmail.com)
3 * \brief Declares and defines the mxlib exception class.
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 __mxException__
28#define __mxException__
29
30#include <exception>
31#include <sstream>
32
33#include "mxError.hpp"
34
35namespace mx
36{
37namespace err
38{
39
40/// The mxlib exception class
41/** Provides a rich error report via the standard what().
42 * \ingroup exceptions
43 */
44class mxException : public std::exception
45{
46
47 protected:
48 /// Contains the what() string
49 char m_whatstr[4096];
50
51 /// The source of the exception, such as stdlib or cfitisio or the function name
52 std::string m_source{ "" };
53
54 /// The mxlib error code
55 int m_code{ 0 };
56
57 /// The name of the error code
58 std::string m_codeName{ "" };
59
60 /// The errno error code (only used if non-zero)
61 int m_errno{ 0 };
62
63 /// The source file where the exception originated
64 std::string m_file{ "" };
65
66 /// The line number of the file where the exception originated
67 int m_line{ 0 };
68
69 /// The long explanation of the error
70 std::string m_explanation{ "" };
71
72 public:
73 /// Default constructor
74 mxException() noexcept
75 {
76 build_what();
77 }
78
79 /// Copy constructor
80 mxException( const mxException &e ) noexcept
81 : m_source( e.m_source ), m_code( e.m_code ), m_codeName( e.m_codeName ), m_file( e.m_file ),
82 m_line( e.m_line ), m_explanation( e.m_explanation )
83 {
84 build_what();
85 }
86
87 /// Construct and fill in each of the values, except errno
88 mxException( const std::string &esrc, ///< [in] the source of the exception, typically the class and function
89 const int &ec, ///< [in] the error code
90 const std::string &emnem, ///< [in] the name of the error code
91 const std::string &efile, ///< [in] the source file in which the exception occurred, normally __FILE__
92 const int &line, ///< [in] the line number where the exception was thrown
93 const std::string &expl ///< [in] the explanation for why the exception was thrown
94 )
95 : m_source( esrc ), m_code( ec ), m_codeName( emnem ), m_errno( 0 ), m_file( efile ), m_line( line ),
96 m_explanation( expl )
97 {
98 build_what();
99 }
100
101 /// Construct and fill in each of the values, including errno
102 mxException( const std::string &esrc, ///< [in] the source of the exception, typically the class and function
103 const int &ec, ///< [in] the error code
104 const std::string &emnem, ///< [in] the name of the error code
105 const int &en, ///< [in] the value of errno
106 const std::string &efile, ///< [in] the source file in which the exception occurred, normally __FILE__
107 const int &line, ///< [in] the line number where the exception was thrown
108 const std::string &expl ///< [in] the explanation for why the exception was thrown
109 )
110 : m_source( esrc ), m_code( ec ), m_codeName( emnem ), m_errno( en ), m_file( efile ), m_line( line ),
111 m_explanation( expl )
112 {
113 build_what();
114 }
115
116 /// Assignment operator
117 mxException &operator=( const mxException &e ) noexcept
118 {
119 m_source = e.m_source;
120 m_code = e.m_code;
121 m_codeName = e.m_codeName;
122 m_errno = e.m_errno;
123 m_file = e.m_file;
124 m_line = e.m_line;
125 m_explanation = e.m_explanation;
126
127 build_what();
128
129 return *this;
130 }
131
132 /// Destructor
133 virtual ~mxException() throw()
134 {
135 }
136
137 /// Build the what string.
138 /** Must be called after updating any values, since the what() method is const const.
139 */
140 virtual void build_what()
141 {
142 std::ostringstream s;
143 s.str( "" );
144
145 if( m_explanation != "" )
146 s << " " << m_explanation;
147 if( m_source != "" )
148 s << "\n source: " << m_source;
149 if( m_code != 0 )
150 {
151 s << "\n code: " << m_code;
152 if( m_codeName != "" )
153 s << " (" << m_codeName << ")";
154 }
155 if( m_errno != 0 )
156 {
157 s << "\n errno: " << m_errno << " (" << errno_CodeToName( m_errno ) << ")";
158 }
159 if( m_file != "" )
160 s << "\n in file: " << m_file;
161 if( m_line != 0 )
162 s << "\n at line: " << m_line;
163
164 if( m_errno != 0 )
165 {
166 s << "\n " << strerror( m_errno );
167 }
168 snprintf( m_whatstr, sizeof( m_whatstr ), "%s", s.str().c_str() );
169 }
170
171 /// Return the details of the exception as a single string.
172 virtual const char *what() const noexcept
173 {
174 return m_whatstr;
175 }
176};
177
178/// mxException for invalid arguments
179/**
180 * \ingroup exceptions
181 */
183{
184 public:
185 invalidarg( const std::string &esrc, ///< [in] the source of the exception, typically the class and function
186 const std::string &efile, ///< [in] the source file in which the exception occurred, normally __FILE__
187 const int &line, ///< [in] the line number where the exception was thrown
188 const std::string &expl ///< [in] the explanation for why the exception was thrown
189 )
190 : mxException( esrc, MXE_INVALIDARG, MXE_INVALIDARG_NAME, efile, line, expl )
191 {
192 }
193};
194
195/// mxException for invalid config settings
196/**
197 * \ingroup exceptions
198 */
200{
201 public:
203 const std::string &esrc, ///< [in] the source of the exception, typically the class and function
204 const std::string &efile, ///< [in] the source file in which the exception occurred, normally __FILE__
205 const int &line, ///< [in] the line number where the exception was thrown
206 const std::string &expl ///< [in] the explanation for why the exception was thrown
207 )
208 : mxException( esrc, MXE_INVALIDCONFIG, MXE_INVALIDCONFIG_NAME, efile, line, expl )
209 {
210 }
211};
212
213/// mxException for not implemented features
214/**
215 * \ingroup exceptions
216 */
217class notimpl : public mxException
218{
219 public:
220 notimpl( const std::string &esrc, ///< [in] the source of the exception, typically the class and function
221 const std::string &efile, ///< [in] the source file in which the exception occurred, normally __FILE__
222 const int &line, ///< [in] the line number where the exception was thrown
223 const std::string &expl ///< [in] the explanation for why the exception was thrown
224 )
225 : mxException( esrc, MXE_NOTIMPL, MXE_NOTIMPL_NAME, efile, line, expl )
226 {
227 }
228};
229
230/// mxException for parameters which aren't set
231/**
232 * \ingroup exceptions
233 */
235{
236 public:
237 paramnotset( const std::string &esrc, ///< [in] the source of the exception, typically the class and function
238 const std::string &efile, ///< [in] the source file in which the exception occurred, normally __FILE__
239 const int &line, ///< [in] the line number where the exception was thrown
240 const std::string &expl ///< [in] the explanation for why the exception was thrown
241 )
242 : mxException( esrc, MXE_PARAMNOTSET, MXE_PARAMNOTSET_NAME, efile, line, expl )
243 {
244 }
245};
246
247/// mxException for a size error
248/**
249 * \ingroup exceptions
250 */
251class sizeerr : public mxException
252{
253 public:
254 sizeerr( const std::string &esrc, ///< [in] the source of the exception, typically the class and function
255 const std::string &efile, ///< [in] the source file in which the exception occurred, normally __FILE__
256 const int &line, ///< [in] the line number where the exception was thrown
257 const std::string &expl ///< [in] the explanation for why the exception was thrown
258 )
259 : mxException( esrc, MXE_SIZEERR, MXE_SIZEERR_NAME, efile, line, expl )
260 {
261 }
262};
263
264/// mxException for an allocation error
265/**
266 * \ingroup exceptions
267 */
268class allocerr : public mxException
269{
270 public:
271 allocerr( const std::string &esrc, ///< [in] the source of the exception, typically the class and function
272 const std::string &efile, ///< [in] the source file in which the exception occurred, normally __FILE__
273 const int &line, ///< [in] the line number where the exception was thrown
274 const std::string &expl ///< [in] the explanation for why the exception was thrown
275 )
276 : mxException( esrc, MXE_ALLOCERR, MXE_ALLOCERR_NAME, efile, line, expl )
277 {
278 }
279};
280
281/// mxException for errors on opening a file
282/**
283 * \ingroup exceptions
284 */
285class fileoerr : public mxException
286{
287 public:
288 fileoerr( const std::string &esrc, ///< [in] the source of the exception, typically the class and function
289 const std::string &efile, ///< [in] the source file in which the exception occurred, normally __FILE__
290 const int &line, ///< [in] the line number where the exception was thrown
291 const std::string &expl ///< [in] the explanation for why the exception was thrown
292 )
293 : mxException( esrc, MXE_FILEOERR, MXE_FILEOERR_NAME, efile, line, expl )
294 {
295 }
296 fileoerr( const std::string &esrc, ///< [in] the source of the exception, typically the class and function
297 const int &en, ///< [in] the value of errno
298 const std::string &efile, ///< [in] the source file in which the exception occurred, normally __FILE__
299 const int &line, ///< [in] the line number where the exception was thrown
300 const std::string &expl ///< [in] the explanation for why the exception was thrown
301 )
302 : mxException( esrc, MXE_FILEOERR, MXE_FILEOERR_NAME, en, efile, line, expl )
303 {
304 }
305};
306
307/// mxException for errors reading from a file
308/**
309 * \ingroup exceptions
310 */
311class filererr : public mxException
312{
313 public:
314 filererr( const std::string &esrc, ///< [in] the source of the exception, typically the class and function
315 const std::string &efile, ///< [in] the source file in which the exception occurred, normally __FILE__
316 const int &line, ///< [in] the line number where the exception was thrown
317 const std::string &expl ///< [in] the explanation for why the exception was thrown
318 )
319 : mxException( esrc, MXE_FILERERR, MXE_FILERERR_NAME, efile, line, expl )
320 {
321 }
322 filererr( const std::string &esrc, ///< [in] the source of the exception, typically the class and function
323 const int &en, ///< [in] the value of errno
324 const std::string &efile, ///< [in] the source file in which the exception occurred, normally __FILE__
325 const int &line, ///< [in] the line number where the exception was thrown
326 const std::string &expl ///< [in] the explanation for why the exception was thrown
327 )
328 : mxException( esrc, MXE_FILERERR, MXE_FILERERR_NAME, en, efile, line, expl )
329 {
330 }
331};
332
333/// mxException for errors writing to a file
334/**
335 * \ingroup exceptions
336 */
337class filewerr : public mxException
338{
339 public:
340 filewerr( const std::string &esrc, ///< [in] the source of the exception, typically the class and function
341 const std::string &efile, ///< [in] the source file in which the exception occurred, normally __FILE__
342 const int &line, ///< [in] the line number where the exception was thrown
343 const std::string &expl ///< [in] the explanation for why the exception was thrown
344 )
345 : mxException( esrc, MXE_FILEWERR, MXE_FILEWERR_NAME, efile, line, expl )
346 {
347 }
348 filewerr( const std::string &esrc, ///< [in] the source of the exception, typically the class and function
349 const int &en, ///< [in] the value of errno
350 const std::string &efile, ///< [in] the source file in which the exception occurred, normally __FILE__
351 const int &line, ///< [in] the line number where the exception was thrown
352 const std::string &expl ///< [in] the explanation for why the exception was thrown
353 )
354 : mxException( esrc, MXE_FILEWERR, MXE_FILEWERR_NAME, en, efile, line, expl )
355 {
356 }
357};
358
359/// mxException for errors closing a file
360/**
361 * \ingroup exceptions
362 */
363class filecerr : public mxException
364{
365 public:
366 filecerr( const std::string &esrc, ///< [in] the source of the exception, typically the class and function
367 const std::string &efile, ///< [in] the source file in which the exception occurred, normally __FILE__
368 const int &line, ///< [in] the line number where the exception was thrown
369 const std::string &expl ///< [in] the explanation for why the exception was thrown
370 )
371 : mxException( esrc, MXE_FILECERR, MXE_FILECERR_NAME, efile, line, expl )
372 {
373 }
374 filecerr( const std::string &esrc, ///< [in] the source of the exception, typically the class and function
375 const int &en, ///< [in] the value of errno
376 const std::string &efile, ///< [in] the source file in which the exception occurred, normally __FILE__
377 const int &line, ///< [in] the line number where the exception was thrown
378 const std::string &expl ///< [in] the explanation for why the exception was thrown
379 )
380 : mxException( esrc, MXE_FILECERR, MXE_FILECERR_NAME, en, efile, line, expl )
381 {
382 }
383};
384
385/// mxException for errors returned by a library call
386/**
387 * \ingroup exceptions
388 */
389class liberr : public mxException
390{
391 public:
392 liberr( const std::string &esrc, ///< [in] the source of the exception, typically the class and function
393 const std::string &efile, ///< [in] the source file in which the exception occurred, normally __FILE__
394 const int &line, ///< [in] the line number where the exception was thrown
395 const std::string &expl ///< [in] the explanation for why the exception was thrown
396 )
397 : mxException( esrc, MXE_LIBERR, MXE_LIBERR_NAME, efile, line, expl )
398 {
399 }
400};
401
402/// Throw an exception. This macro takes care of the file and line.
403/** \ingroup exceptions
404 */
405#define mxThrowException( extype, src, expl ) throw extype( src, __FILE__, __LINE__, expl );
406
407#define mxThrowExceptionErrno( extype, en, src, expl ) throw extype( src, en, __FILE__, __LINE__, expl );
408
409} // namespace err
410} // namespace mx
411
412#endif // mxException_hpp
mxException for an allocation error
allocerr(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
mxException for errors closing a file
filecerr(const std::string &esrc, const int &en, const std::string &efile, const int &line, const std::string &expl)
filecerr(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
mxException for errors on opening a file
fileoerr(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
fileoerr(const std::string &esrc, const int &en, const std::string &efile, const int &line, const std::string &expl)
mxException for errors reading from a file
filererr(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
filererr(const std::string &esrc, const int &en, const std::string &efile, const int &line, const std::string &expl)
mxException for errors writing to a file
filewerr(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
filewerr(const std::string &esrc, const int &en, const std::string &efile, const int &line, const std::string &expl)
mxException for invalid arguments
invalidarg(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
mxException for invalid config settings
invalidconfig(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
mxException for errors returned by a library call
liberr(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
The mxlib exception class.
std::string m_file
The source file where the exception originated.
std::string m_source
The source of the exception, such as stdlib or cfitisio or the function name.
mxException(const std::string &esrc, const int &ec, const std::string &emnem, const int &en, const std::string &efile, const int &line, const std::string &expl)
Construct and fill in each of the values, including errno.
mxException(const mxException &e) noexcept
Copy constructor.
mxException & operator=(const mxException &e) noexcept
Assignment operator.
int m_line
The line number of the file where the exception originated.
std::string m_codeName
The name of the error code.
char m_whatstr[4096]
Contains the what() string.
mxException(const std::string &esrc, const int &ec, const std::string &emnem, const std::string &efile, const int &line, const std::string &expl)
Construct and fill in each of the values, except errno.
virtual ~mxException()
Destructor.
int m_errno
The errno error code (only used if non-zero)
std::string m_explanation
The long explanation of the error.
int m_code
The mxlib error code.
virtual const char * what() const noexcept
Return the details of the exception as a single string.
virtual void build_what()
Build the what string.
mxException() noexcept
Default constructor.
mxException for not implemented features
notimpl(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
mxException for parameters which aren't set
paramnotset(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
mxException for a size error
sizeerr(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
std::string errno_CodeToName(int ec)
Return the macro name and a message for a standard errno code.
Definition mxError.cpp:132
Declares and defines the mxlib error reporting system.
The mxlib c++ namespace.
Definition mxError.hpp:106