00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #include "data/exception.hpp"
00035
00036 #include <cstdlib>
00037 #include <cstdio>
00038 #include <cstring>
00039 #include <cwchar>
00040 #include <cstdarg>
00041
00042
00043 #ifdef WIN32
00044 #pragma warning (disable:4251)
00045 #pragma warning (disable:4996)
00046 #endif
00047
00048
00049 namespace gsgl
00050 {
00051
00052 #define BUF_SIZE 1024
00053
00054 #define MAKE_MESSAGE() \
00055 { \
00056 wchar_t buf[BUF_SIZE]; \
00057 va_list args; \
00058 va_start(args, format); \
00059 ::vswprintf(buf, BUF_SIZE, format, args); \
00060 va_end(args); \
00061 message = ::wcsdup(buf); \
00062 }
00063
00064 #define MAKE_MESSAGE_INTERNAL() \
00065 { \
00066 wchar_t buf[BUF_SIZE]; \
00067 va_list args; \
00068 va_start(args, format); \
00069 ::vswprintf(buf, BUF_SIZE, format, args); \
00070 va_end(args); \
00071 message = ::wcsdup(buf); \
00072 ::swprintf(buf, BUF_SIZE, L"%hs: %d: %ls \n(%ls).", fname, line, message, L"Please contact the developer"); \
00073 ::free(message); \
00074 message = ::wcsdup(buf); \
00075 }
00076
00077
00078
00079 exception::exception()
00080 : message(0)
00081 {
00082 }
00083
00084 exception::exception(const wchar_t *format, ...)
00085 : message(0)
00086 {
00087 MAKE_MESSAGE();
00088 }
00089
00090 exception::~exception()
00091 {
00092 ::free(message);
00093 }
00094
00095 const wchar_t *exception::get_message() const
00096 {
00097 return message;
00098 }
00099
00100
00101
00102 internal_exception::internal_exception(const char *fname, const int line)
00103 : exception(), fname(::strdup(fname)), line(line)
00104 {
00105 }
00106
00107 internal_exception::internal_exception(const char *fname, const int line, const wchar_t *format, ...)
00108 : exception(), fname(::strdup(fname)), line(line)
00109 {
00110 MAKE_MESSAGE_INTERNAL();
00111 }
00112
00113 internal_exception::~internal_exception()
00114 {
00115 ::free(fname);
00116 }
00117
00118
00119
00120 memory_exception::memory_exception(const char *fname, const int line, const wchar_t *format, ...)
00121 : internal_exception(fname, line)
00122 {
00123 MAKE_MESSAGE_INTERNAL();
00124 }
00125
00126
00127
00128 assert_exception::assert_exception(const char *fname, const int line, const char *message)
00129 : internal_exception(fname, line, L"%hs", message)
00130 {
00131 }
00132
00133
00134
00135 opengl_exception::opengl_exception(const char *fname, const int line, const wchar_t *format, ...)
00136 : internal_exception(fname, line)
00137 {
00138 MAKE_MESSAGE_INTERNAL();
00139 }
00140
00141
00142
00143 runtime_exception::runtime_exception()
00144 : exception()
00145 {
00146 };
00147
00148 runtime_exception::runtime_exception(const wchar_t *format, ...)
00149 : exception()
00150 {
00151 MAKE_MESSAGE();
00152 }
00153
00154
00155
00156 io_exception::io_exception(const wchar_t *format, ...)
00157 : runtime_exception()
00158 {
00159 MAKE_MESSAGE();
00160 }
00161
00162 }