XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
exception.hpp
Go to the documentation of this file.
1 
7 #pragma once
8 
9 #include <xtd/xtd.hpp>
10 
11 #include <exception>
12 #include <xtd/source_location.hpp>
13 #include <xtd/string.hpp>
22 #define throw_if(_test, _expression) _throw_if(here(), _test, _expression, #_test)
23 
24 namespace xtd{
25 
27  class exception : public std::exception{
28  public:
30  using _super_t = std::exception;
31 
42  template <typename _ReturnT, typename _ExpressionT>
43  inline static _ReturnT _throw_if(const xtd::source_location& source, _ReturnT ret, _ExpressionT exp, const char* expstr){
44  if (exp(ret)){
45  throw exception(source, expstr);
46  }
47  return ret;
48  }
49 
51  exception(const source_location& Source, const std::string& What)
52  : _super_t()
53  , _errnum(errno)
54  , _source(Source)
55  , _what(What){}
56  exception(const exception& src)
57  : _super_t()
58  , _errnum(src._errnum)
59  , _source(src._source)
60  , _what(src._what){}
62  : _super_t()
63  , _errnum(src._errnum)
64  , _source(std::move(src._source))
65  , _what(std::move(src._what)){}
67 
69  const char * what() const
70  #if (XTD_COMPILER_GCC & XTD_COMPILER)
71  noexcept
72  #endif
73  override{
74  return _what.c_str();
75  }
76 
78  virtual const source_location& location() const
79  #if (XTD_COMPILER_GCC & XTD_COMPILER)
80  noexcept
81  #endif
82  {
83  return _source;
84  }
85 
86  protected:
87  //_errnum needs to be in the base class before heap allocations such as std::string in _what
88  int _errnum;
90  std::string _what;
91  };
92 
94  class crt_exception : public xtd::exception{
95  public:
96  template <typename _ReturnT, typename _ExpressionT>
97  inline static _ReturnT _throw_if(const xtd::source_location& source, _ReturnT ret, _ExpressionT exp, const char* expstr){
98  if (exp(ret)){
99  throw crt_exception(source, expstr);
100  }
101  return ret;
102  }
103 
106  crt_exception(const source_location& Source, const std::string& What) : xtd::exception(Source, What){
107  if (!_errnum){
108  return;
109  }
110  _what += " : ";
111 
112 #if (XTD_COMPILER_MSVC & XTD_COMPILER)
113  _what.resize(_what.size() + 100);
114  strerror_s(&_what[_what.size() - 100], 100, _errnum);
115  _what.resize(strlen(_what.c_str()));
116 #else
117  _what += strerror(_errnum);
118 #endif
119  }
120  crt_exception(const crt_exception& ex) : xtd::exception(ex){}
121  crt_exception(crt_exception&& ex) : xtd::exception(std::move(ex)){}
123 
127  int errnum() const { return _errnum; }
128  };
129 
130 #if ((XTD_OS_MINGW | XTD_OS_WINDOWS) & XTD_OS)
131  namespace windows{
132  struct exception : xtd::exception{
133  public:
134  template <typename _ReturnT, typename _ExpressionT>
135  inline static _ReturnT _throw_if(const xtd::source_location& source, _ReturnT ret, _ExpressionT exp, const char* expstr){
136  if (exp(ret)){
137  throw exception(source, expstr);
138  }
139  return ret;
140  }
141 
142  exception(const xtd::source_location& source, const std::string&) :xtd::exception(source, ""), _last_error(GetLastError()){
143  const char * sTemp = nullptr;
144  FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, nullptr, _last_error, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), reinterpret_cast<LPSTR>(&sTemp), 0, nullptr);
145  _what = sTemp;
146  LocalFree((HLOCAL)sTemp);
147  }
148  private:
149  DWORD _last_error;
150  };
151  }
152 #endif
153 
154 
155 }
const source_location & _source
Constructors.
Definition: exception.hpp:89
std::exception _super_t
shortcut typedef of the super class
Definition: exception.hpp:30
exception(const source_location &Source, const std::string &What)
Constructors.
Definition: exception.hpp:51
exception(const exception &src)
Constructors.
Definition: exception.hpp:56
crt_exception(crt_exception &&ex)
constructors
Definition: exception.hpp:121
exception(exception &&src)
Constructors.
Definition: exception.hpp:61
const char * what() const noexceptoverride
}@
Definition: exception.hpp:69
static _ReturnT _throw_if(const xtd::source_location &source, _ReturnT ret, _ExpressionT exp, const char *expstr)
Helper function template to test for an expression and throw an exception Throws exception if the tes...
Definition: exception.hpp:43
int errnum() const
Error number associated with the CRT exception.
Definition: exception.hpp:127
crt_exception(const crt_exception &ex)
constructors
Definition: exception.hpp:120
int _errnum
Constructors.
Definition: exception.hpp:88
specializations of std::basic_string for advanced and common string handling
host, target and build configurations and settings Various components are purpose built for specific ...
maintains info about locations within source code
Base exception for XTL.
Definition: exception.hpp:27
virtual const source_location & location() const noexcept
location in source that caused the exception
Definition: exception.hpp:78
std::string _what
Constructors.
Definition: exception.hpp:90
crt_exception(const source_location &Source, const std::string &What)
constructors
Definition: exception.hpp:106
Contains information about the location of source code Used in error reporting and logging...
c++ wrapper around legacy errno based errors from the CRT
Definition: exception.hpp:94