Cantera
2.2.1
|
These classes and related functions are used to handle errors and unknown events within Cantera. More...
Classes | |
class | CanteraError |
Base class for exceptions thrown by Cantera classes. More... | |
class | ArraySizeError |
Array size error. More... | |
class | IndexError |
An array index is out of range. More... | |
Macros | |
#define | AssertTrace(expr) ((expr) ? (void) 0 : throw Cantera::CanteraError(STR_TRACE, std::string("failed assert: ") + #expr)) |
Assertion must be true or an error is thrown. More... | |
#define | AssertThrow(expr, procedure) ((expr) ? (void) 0 : throw Cantera::CanteraError(procedure, std::string("failed assert: ") + #expr)) |
Assertion must be true or an error is thrown. More... | |
#define | AssertThrowMsg(expr, procedure, message) ((expr) ? (void) 0 : throw Cantera::CanteraError(procedure + std::string(": at failed assert: \"") + std::string(#expr) + std::string("\""), message)) |
Assertion must be true or an error is thrown. More... | |
Functions | |
void | addError (const std::string &r, const std::string &msg) |
Set an error condition in the application class without throwing an exception. More... | |
int | getErrorCount () |
Return the number of errors that have been encountered so far. More... | |
void | popError () |
Discard the last error message. More... | |
std::string | lastErrorMessage () |
Retrieve the last error message in a string. More... | |
void | getErrors (std::ostream &f) |
Prints all of the error messages to an ostream. More... | |
void | logErrors () |
Prints all of the error messages using writelog. More... | |
int | nErrors () |
Return the number of errors that have been encountered so far. More... | |
These classes and related functions are used to handle errors and unknown events within Cantera.
The general idea is that exceptions are thrown using the common base class called CanteraError. Derived types of CanteraError characterize what type of error is thrown. A list of all of the thrown errors is kept in the Application class.
Any exceptions which are not caught cause a fatal error exit from the program.
Below is an example of how to catch errors that throw the CanteraError class. In general, all Cantera C++ programs will have this basic structure.
The function showErrors() will print out the fatal error condition to standard output.
A group of defines may be used during debugging to assert conditions which should be true. These are named AssertTrace(), AssertThrow(), and AssertThrowMsg(). Examples of their usage is given below.
Their first argument is a boolean. If the boolean is not true, a CanteraError is thrown, with descriptive information indicating where the error occurred. The Assert* checks are skipped if the NDEBUG preprocessor symbol is defined, e.g. with the compiler option -DNDEBUG.
#define AssertTrace | ( | expr | ) | ((expr) ? (void) 0 : throw Cantera::CanteraError(STR_TRACE, std::string("failed assert: ") + #expr)) |
Assertion must be true or an error is thrown.
Assertion must be true or else a CanteraError is thrown. A diagnostic string containing the file and line number, indicating where the error occurred is added to the thrown object.
expr | Boolean expression that must be true |
Definition at line 270 of file ctexceptions.h.
Referenced by HMWSoln::applyphScale(), IonsFromNeutralVPSSTP::calcNeutralMoleculeMoleFractions(), Phase::entropyElement298(), Elements::entropyElement298(), NasaThermo::fixDiscontinuities(), IonsFromNeutralVPSSTP::getNeutralMoleculeMoleGrads(), Cantera::importPhase(), VPStandardStateTP::initThermoXML(), WaterTransport::initTP(), RxnMolChange::RxnMolChange(), HMWSoln::s_updateScaling_pHScaling(), HMWSoln::s_updateScaling_pHScaling_dP(), HMWSoln::s_updateScaling_pHScaling_dT(), and HMWSoln::s_updateScaling_pHScaling_dT2().
#define AssertThrow | ( | expr, | |
procedure | |||
) | ((expr) ? (void) 0 : throw Cantera::CanteraError(procedure, std::string("failed assert: ") + #expr)) |
Assertion must be true or an error is thrown.
Assertion must be true or else a CanteraError is thrown. A diagnostic string indicating where the error occurred is added to the thrown object.
expr | Boolean expression that must be true |
procedure | Character string or std:string expression indicating the procedure where the assertion failed |
Definition at line 283 of file ctexceptions.h.
Referenced by vcs_VolPhase::elemGlobalIndex(), MolalityVPSSTP::getActivityCoefficients(), IdealMolalSoln::getChemPotentials(), SimpleTransport::getSpeciesFluxesExt(), STITbyPDSS::initAllPtrs(), PDSS::initPtrs(), PDSS::initThermo(), PDSS::initThermoXML(), GeneralSpeciesThermo::install_STIT(), vcs_VolPhase::setElemGlobalIndex(), RootFind::solve(), and ElectrodeKinetics::updateROP().
#define AssertThrowMsg | ( | expr, | |
procedure, | |||
message | |||
) | ((expr) ? (void) 0 : throw Cantera::CanteraError(procedure + std::string(": at failed assert: \"") + std::string(#expr) + std::string("\""), message)) |
Assertion must be true or an error is thrown.
Assertion must be true or else a CanteraError is thrown. A diagnostic string indicating where the error occurred is added to the thrown object.
expr | Boolean expression that must be true |
procedure | Character string or std:string expression indicating the procedure where the assertion failed |
message | Character string or std:string expression containing a descriptive message is added to the thrown error condition. |
Definition at line 301 of file ctexceptions.h.
Referenced by VPStandardStateTP::_updateStandardStateThermo(), VCS_PROB::addOnePhaseSpecies(), HMWSoln::calc_thetas(), VCS_SOLVE::delta_species(), Phase::entropyElement298(), Elements::entropyElement298(), vcs_VolPhase::resize(), vcs_VolPhase::setMolesFromVCS(), MolalityVPSSTP::setSolvent(), vcs_VolPhase::setTotalMoles(), Sim1D::setValue(), Plog::update_C(), STITbyPDSS::updatePropertiesTemp(), Sim1D::value(), VCS_SOLVE::vcs_birthGuess(), VCS_SOLVE::vcs_chemPotPhase(), VCS_SOLVE::vcs_deltag_Phase(), VCS_SOLVE::vcs_dfe(), VCS_SOLVE::vcs_popPhaseID(), VCS_SOLVE::vcs_popPhasePossible(), VCS_SOLVE::vcs_popPhaseRxnStepSizes(), VCS_SOLVE::vcs_switch_elem_pos(), and VCS_SOLVE::vcs_switch_pos().
void addError | ( | const std::string & | r, |
const std::string & | msg | ||
) |
Set an error condition in the application class without throwing an exception.
This routine adds an error message to the end of the stack of errors that Cantera accumulates in the Application class.
r | Procedure name which is generating the error condition |
msg | Descriptive message of the error condition. |
Definition at line 103 of file application.cpp.
Referenced by Application::addError().
int getErrorCount | ( | ) |
Return the number of errors that have been encountered so far.
Definition at line 109 of file application.cpp.
Referenced by Application::getErrorCount().
void popError | ( | ) |
Discard the last error message.
Cantera saves a stack of exceptions that it has caught in the Application class. This routine eliminates the last exception to be added to that stack.
Definition at line 341 of file application.cpp.
References Application::Messages::errorMessage, and Application::Messages::errorRoutine.
Referenced by Application::popError().
std::string lastErrorMessage | ( | ) |
Retrieve the last error message in a string.
This routine will retrieve the last error message and return it in the return string.
Definition at line 349 of file application.cpp.
Referenced by Application::lastErrorMessage().
void getErrors | ( | std::ostream & | f | ) |
Prints all of the error messages to an ostream.
Write out all of the saved error messages to the ostream f using the function Logger::writelog. Cantera saves a stack of exceptions that it has caught in the Application class. This routine writes out all of the error messages to the ostream and then clears them from internal storage.
f | ostream which will receive the error messages |
Definition at line 363 of file application.cpp.
Referenced by Application::getErrors().
void logErrors | ( | ) |
Prints all of the error messages using writelog.
Print all of the error messages using function writelog. Cantera saves a stack of exceptions that it has caught in the Application class. This routine writes out all of the error messages and then clears them from internal storage.
Definition at line 384 of file application.cpp.
References Application::writelog().
Referenced by Application::logErrors().
int nErrors | ( | ) |
Return the number of errors that have been encountered so far.
Definition at line 121 of file global.cpp.
References Cantera::app(), and Application::getErrorCount().