53#ifdef MX_NO_ERROR_REPORTS
58#define mxError( esrc, ecode, expl )
59#define mxPError( esrc, ecode, expl )
78#define mxError( esrc, ecode, expl ) \
79 std::cerr << "\n" << mx::error_report( esrc, ecode, __FILE__, __LINE__, expl ) << "\n";
96#define mxPError( esrc, ecode, expl ) \
97 std::cerr << "\n" << mx::errno_report( esrc, ecode, __FILE__, __LINE__, expl ) << "\n";
115#define MXE_INVALIDARG 25
116#define MXE_INVALIDARG_NAME "MXE_INVALIDARG"
117#define MXE_INVALIDARG_MSG "An argument was invalid."
123#define MXE_INVALIDCONFIG 27
124#define MXE_INVALIDCONFIG_NAME "MXE_INVALIDCONFIG"
125#define MXE_INVALIDCONFIG_MSG "A config setting was invalid."
131#define MXE_NOTIMPL 30
132#define MXE_NOTIMPL_NAME "MXE_NOTIMPL"
133#define MXE_NOTIMPL_MSG "A component or technique is not implemented."
139#define MXE_PARAMNOTSET 35
140#define MXE_PARAMNOTSET_NAME "MXE_PARAMNOTSET"
141#define MXE_PARAMNOTSET_MSG "A parameter was not set."
147#define MXE_ENVNOTSET 36
148#define MXE_ENVNOTSET_NAME "MXE_ENVNOTSET"
149#define MXE_ENVNOTSET_MSG "An environment variable is not set."
155#define MXE_NOTFOUND 40
156#define MXE_NOTFOUND_NAME "MXE_NOTFOUND"
157#define MXE_NOTFOUND_MSG "An item was not found."
163#define MXE_SIZEERR 55
164#define MXE_SIZEERR_NAME "MXE_SIZEERR"
165#define MXE_SIZEERR_MSG "A size was invalid or calculated incorrectly."
171#define MXE_ALLOCERR 60
172#define MXE_ALLOCERR_NAME "MXE_ALLOCERR"
173#define MXE_ALLOCERR_MSG "An error occurred during memory allocation."
179#define MXE_FREEERR 65
180#define MXE_FREEERR_NAME "MXE_FREEERR"
181#define MXE_FREEERR_MSG "An error occurred during memory de-allocation."
187#define MXE_PARSEERR 75
188#define MXE_PARSEERR_NAME "MXE_PARSEERR"
189#define MXE_PARSEERR_MSG "A parsing error occurred."
195#define MXE_FILEOERR 1034
196#define MXE_FILEOERR_NAME "MXE_FILEOERR"
197#define MXE_FILEOERR_MSG "An error occurred while opening a file."
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."
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."
219#define MXE_FILECERR 1054
220#define MXE_FILECERR_NAME "MXE_FILECERR"
221#define MXE_FILECERR_MSG "An error occurred while closing a file."
227#define MXE_FILENOTFOUND 1059
228#define MXE_FILENOTFOUND_NAME "MXE_FILENOTFOUND"
229#define MXE_FILENOTFOUND_MSG "The file was not found."
235#define MXE_PROCERR 2001
236#define MXE_PROCERR_NAME "MXE_PROCERR"
237#define MXE_PROCERR_MSG "An error occured while starting a process."
243#define MXE_TIMEOUT 2322
244#define MXE_TIMEOUT_NAME "MXE_TIMEOUT"
245#define MXE_TIMEOUT_MSG "A timeout occurred."
251#define MXE_LIBERR 4000
252#define MXE_LIBERR_NAME "MXE_LIBERR"
253#define MXE_LIBERR_MSG "An error was returned by a library."
259#define MXE_GNUPLOTERR 4567
260#define MXE_GNUPLOTERR_NAME "MXE_GNUPLOTERR"
261#define MXE_GNUPLOTERR_MSG "An error was returned by gnuplot."
267#define MXE_LAPACKERR 6890
268#define MXE_LAPACKERR_NAME "MXE_LAPACKERR"
269#define MXE_LAPACKERR_MSG "An error was returned by Lapack."
306 const std::string &source,
308 const std::string &file,
310 const std::string &expl =
""
320 const std::string &source,
322 const std::string &file,
324 const std::string &expl =
""
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.
std::string MXE_CodeToName(int ec)
Return the name for an mxlib error code.
std::string errno_CodeToName(int ec)
Return the macro name and a message for a standard errno code.
std::string MXE_CodeToDescription(int ec)
Return the description for an mxlib error code.
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.