Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
///////////////////////////////////////////////////////////////////////////////
//
// File ErrorUtil.hpp
//
// For more information, please see: http://www.nektar.info
//
// The MIT License
//
// Copyright (c) 2006 Division of Applied Mathematics, Brown University (USA),
// Department of Aeronautics, Imperial College London (UK), and Scientific
// Computing and Imaging Institute, University of Utah (USA).
//
// License for the specific language governing rights and limitations under
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//
// Description: error related utilities
//
///////////////////////////////////////////////////////////////////////////////
#ifndef ERRORUTIL_HPP
#define ERRORUTIL_HPP
#include <stdexcept>
Blake Nelson
committed
#include <LibUtilities/LibUtilitiesDeclspec.h>
Spencer Sherwin
committed
#if defined(NEKTAR_USE_MPI)
#include <mpi.h>
#endif
#ifndef _WIN32
#include <execinfo.h>
#endif
public:
NekError(const std::string& message) : std::runtime_error(message)
{
}
};
inline static void SetErrorStream(std::ostream& o)
inline static void SetPrintBacktrace(bool b)
{
m_printBacktrace = b;
}
}
inline static void Error(ErrType type,
const char *routine,
int lineNumber,
const char *msg,
unsigned int level,
bool DoComm = false)
{
// The user of outStream is primarily for the unit tests. The unit
// tests often generate errors on purpose to make sure invalid usage is
// flagged appropriately. Printing the error messages to cerr made the
// unit test output hard to parse.
Dave Moxey
committed
std::string baseMsg = "Level " + std::to_string(level) +
" assertion violation\n";
#if defined(NEKTAR_DEBUG) || defined(NEKTAR_FULLDEBUG)
Dave Moxey
committed
baseMsg += "Where : " + std::string(routine) + "[" +
Dave Moxey
committed
baseMsg += std::string(msg);
// Default rank is zero. If MPI used and initialised, populate with
// the correct rank. Messages are only printed on rank zero.
int rank = 0;
#if defined(NEKTAR_USE_MPI) && !defined(NEKTAR_USE_CWIPI)
Spencer Sherwin
committed
int flag = 0;
if(DoComm)
Spencer Sherwin
committed
{
Spencer Sherwin
committed
MPI_Initialized(&flag);
if(flag)
{
MPI_Comm_rank(MPI_COMM_WORLD,&rank);
}
Spencer Sherwin
committed
}
#endif
std::string btMessage("");
#if defined(NEKTAR_FULLDEBUG)
#ifndef _WIN32
if (m_printBacktrace)
{
void *btArray[40];
int btSize;
char **btStrings;
btSize = backtrace(btArray, 40);
btStrings = backtrace_symbols(btArray, btSize);
for (int i = 0 ; i < btSize ; ++i)
{
btMessage += std::string(btStrings[i]) + "\n";
}
free(btStrings);
Spencer Sherwin
committed
Spencer Sherwin
committed
{
if (m_printBacktrace)
{
(*m_outStream) << btMessage;
}
(*m_outStream) << "Fatal : " << baseMsg << std::endl;
#if defined(NEKTAR_USE_MPI) && !defined(NEKTAR_USE_CWIPI)
Spencer Sherwin
committed
if(DoComm)
Spencer Sherwin
committed
if (flag)
{
MPI_Barrier(MPI_COMM_WORLD);
}
throw NekError(baseMsg);
break;
case ewarning:
if (m_printBacktrace)
{
(*m_outStream) << btMessage;
}
(*m_outStream) << "Warning: " << baseMsg << std::endl;
Spencer Sherwin
committed
}
(*m_outStream) << "Unknown warning type: " << baseMsg << std::endl;
inline static void Error(ErrType type, const char *routine, int lineNumber, const std::string& msg, unsigned int level)
{
Error(type, routine, lineNumber, msg.c_str(), level);
}
inline static void Error(ErrType type, const char *routine, int lineNumber, const char *msg)
{
Error(type, routine, lineNumber, msg, 0);
}
LIB_UTILITIES_EXPORT static std::ostream *m_outStream;
LIB_UTILITIES_EXPORT static bool m_printBacktrace;
/// Assert Level 0 -- Fundamental assert which
/// is used whether in FULLDEBUG, DEBUG or OPT
/// compilation mode. This level assert is
/// considered code critical, even under
/// optimized compilation.
Dave Moxey
committed
#define NEKERROR(type, msg) \
Nektar::ErrorUtil::Error(type, __FILE__, __LINE__, msg, 0);
Spencer Sherwin
committed
Dave Moxey
committed
#define ROOTONLY_NEKERROR(type, msg) \
Nektar::ErrorUtil::Error(type, __FILE__, __LINE__, msg, 0, true);
Dave Moxey
committed
#define ASSERTL0(condition,msg) \
if(!(condition)) \
{ \
Nektar::ErrorUtil::Error( \
Nektar::ErrorUtil::efatal, __FILE__, __LINE__, msg, 0); \
}
Dave Moxey
committed
#define WARNINGL0(condition,msg) \
if(!(condition)) \
{ \
Nektar::ErrorUtil::Error( \
Nektar::ErrorUtil::ewarning, __FILE__, __LINE__, msg, 0); \
}
/// Assert Level 1 -- Debugging which is used whether in FULLDEBUG or
/// DEBUG compilation mode. This level assert is designed for aiding
/// in standard debug (-g) mode
#if defined(NEKTAR_DEBUG) || defined(NEKTAR_FULLDEBUG)
Dave Moxey
committed
#define ASSERTL1(condition,msg) \
if(!(condition)) \
{ \
Nektar::ErrorUtil::Error( \
Nektar::ErrorUtil::efatal, __FILE__, __LINE__, msg, 1); \
}
#define WARNINGL1(condition,msg) \
if(!(condition)) \
{ \
Nektar::ErrorUtil::Error( \
Nektar::ErrorUtil::ewarning, __FILE__, __LINE__, msg, 1); \
}
#else //defined(NEKTAR_DEBUG) || defined(NEKTAR_FULLDEBUG)
#define WARNINGL1(condition,msg)
#endif //defined(NEKTAR_DEBUG) || defined(NEKTAR_FULLDEBUG)
/// Assert Level 2 -- Debugging which is used FULLDEBUG compilation
/// mode. This level assert is designed to provide addition safety
/// checks within the code (such as bounds checking, etc.).
Dave Moxey
committed
#define ASSERTL2(condition,msg) \
if(!(condition)) \
{ \
Nektar::ErrorUtil::Error( \
Nektar::ErrorUtil::efatal, __FILE__, __LINE__, msg, 2); \
}
#define WARNINGL2(condition,msg) \
if(!(condition)) \
{ \
Nektar::ErrorUtil::Error( \
Nektar::ErrorUtil::ewarning, __FILE__, __LINE__, msg, 2); \
}
#define WARNINGL2(condition,msg)