netgen/libsrc/core/exception.hpp

110 lines
3.7 KiB
C++
Raw Normal View History

2018-12-28 19:54:04 +05:00
#ifndef NETGEN_CORE_EXCEPTION_HPP
#define NETGEN_CORE_EXCEPTION_HPP
#include <sstream> // for stringstream
#include <stdexcept> // for exception
#include <string> // for string
#include "ngcore_api.hpp" // for NGCORE_API
2019-09-23 17:01:35 +05:00
2018-12-28 19:54:04 +05:00
namespace ngcore
{
2019-09-23 17:01:35 +05:00
NGCORE_API std::string GetBackTrace();
2018-12-28 19:54:04 +05:00
// Exception for code that shouldn't be executed
class NGCORE_API UnreachableCodeException : public std::exception
{
const char* what() const noexcept override
{
return "Shouldn't get here, something went wrong!";
}
};
// Default exception class
class NGCORE_API Exception : public std::exception
{
/// a verbal description of the exception
std::string m_what;
public:
Exception() = default;
Exception(const Exception&) = default;
Exception(Exception&&) = default;
Exception(const std::string& s); // : m_what(s) {}
Exception(const char* s); // : m_what(s) {}
2018-12-28 19:54:04 +05:00
~Exception() override = default;
Exception& operator =(const Exception&) = default;
Exception& operator =(Exception&&) noexcept = default;
/// append string to description
Exception & Append (const std::string & s) { m_what += s; return *this; }
/// append string to description
Exception & Append (const char * s) { m_what += s; return *this; }
/// verbal description of exception
const std::string & What() const { return m_what; }
/// implement virtual function of std::exception
const char* what() const noexcept override { return m_what.c_str(); }
};
NGCORE_API void ThrowException(const std::string & s);
NGCORE_API void ThrowException(const char * s);
2018-12-28 19:54:04 +05:00
// Out of Range exception
class NGCORE_API RangeException : public Exception
{
public:
/// where it occurs, index, minimal and maximal indices
RangeException (const std::string & where,
2018-12-28 19:54:04 +05:00
int ind, int imin, int imax) : Exception("")
{
std::stringstream str;
2019-08-05 15:48:08 +05:00
str << where << ": index " << ind << " out of range [" << imin << "," << imax << ")\n";
2018-12-28 19:54:04 +05:00
Append (str.str());
2019-09-23 17:01:35 +05:00
Append (GetBackTrace());
2018-12-28 19:54:04 +05:00
}
template<typename T>
RangeException(const std::string& where, const T& value)
{
std::stringstream str;
str << where << " called with wrong value " << value << "\n";
Append(str.str());
}
2018-12-28 19:54:04 +05:00
};
// Exception used if no simd implementation is available to fall back to standard evaluation
class NGCORE_API ExceptionNOSIMD : public Exception
{ public: using Exception::Exception; };
} // namespace ngcore
#define NETGEN_CORE_NGEXEPTION_STR_HELPER(x) #x
#define NETGEN_CORE_NGEXEPTION_STR(x) NETGEN_CORE_NGEXEPTION_STR_HELPER(x)
// Convenience macro to append file name and line of exception origin to the string
#define NG_EXCEPTION(s) ngcore::Exception(__FILE__ ":" NETGEN_CORE_NGEXEPTION_STR(__LINE__) "\t"+std::string(s))
2023-02-16 16:55:12 +05:00
#if defined(NETGEN_ENABLE_CHECK_RANGE) && !defined(__CUDA_ARCH__)
2019-08-05 15:48:08 +05:00
#define NETGEN_CHECK_RANGE(value, min, max_plus_one) \
{ if ((value)<(min) || (value)>=(max_plus_one)) \
2023-08-14 15:25:56 +05:00
throw ngcore::RangeException(__FILE__ ":" NETGEN_CORE_NGEXEPTION_STR(__LINE__) "\t", int(value), int(min), int(max_plus_one)); }
2022-05-01 14:56:22 +05:00
#define NETGEN_CHECK_SHAPE(a,b) \
{ if(a.Shape() != b.Shape()) \
throw ngcore::Exception(__FILE__": shape don't match"); }
2023-08-21 09:13:13 +05:00
#define NETGEN_CHECK_SAME(a,b) \
{ if(a != b) \
throw ngcore::Exception(__FILE__": not the same, a="+ToString(a) + ", b="+ToString(b)); }
2023-08-04 12:22:34 +05:00
#define NETGEN_NOEXCEPT
2023-02-16 16:55:12 +05:00
#else // defined(NETGEN_ENABLE_CHECK_RANGE) && !defined(__CUDA_ARCH__)
#define NETGEN_CHECK_RANGE(value, min, max)
2023-08-21 09:13:13 +05:00
#define NETGEN_CHECK_SAME(a,b)
2022-05-01 14:56:22 +05:00
#define NETGEN_CHECK_SHAPE(a,b)
2023-08-04 12:22:34 +05:00
#define NETGEN_NOEXCEPT noexcept
2023-02-16 16:55:12 +05:00
#endif // defined(NETGEN_ENABLE_CHECK_RANGE) && !defined(__CUDA_ARCH__)
2022-05-01 14:56:22 +05:00
2018-12-28 19:54:04 +05:00
#endif // NETGEN_CORE_EXCEPTION_HPP