]> git.sesse.net Git - casparcg/blob - common/exception/win32_exception.cpp
git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/branches...
[casparcg] / common / exception / win32_exception.cpp
1 /*\r
2 * copyright (c) 2010 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 *  This file is part of CasparCG.\r
5 *\r
6 *    CasparCG is free software: you can redistribute it and/or modify\r
7 *    it under the terms of the GNU General Public License as published by\r
8 *    the Free Software Foundation, either version 3 of the License, or\r
9 *    (at your option) any later version.\r
10 *\r
11 *    CasparCG is distributed in the hope that it will be useful,\r
12 *    but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14 *    GNU General Public License for more details.\r
15 \r
16 *    You should have received a copy of the GNU General Public License\r
17 *    along with CasparCG.  If not, see <http://www.gnu.org/licenses/>.\r
18 *\r
19 */\r
20  \r
21 #include "../stdafx.h"\r
22 \r
23 #include "win32_exception.h"\r
24 \r
25 #include "../log/log.h"\r
26 \r
27 namespace caspar {\r
28 \r
29 void win32_exception::install_handler() \r
30 {\r
31 //#ifndef _DEBUG\r
32         _set_se_translator(win32_exception::Handler);\r
33 //#endif\r
34 }\r
35 \r
36 void win32_exception::Handler(unsigned int errorCode, EXCEPTION_POINTERS* pInfo) {\r
37         switch(errorCode)\r
38         {\r
39         case EXCEPTION_ACCESS_VIOLATION:\r
40                 throw win32_access_violation(*(pInfo->ExceptionRecord));\r
41                 break;\r
42 \r
43         default:\r
44                 throw win32_exception(*(pInfo->ExceptionRecord));\r
45         }\r
46 }\r
47 \r
48 win32_exception::win32_exception(const EXCEPTION_RECORD& info) : message_("Win32 exception"), location_(info.ExceptionAddress), errorCode_(info.ExceptionCode)\r
49 {\r
50         switch(info.ExceptionCode)\r
51         {\r
52         case EXCEPTION_ACCESS_VIOLATION:\r
53                 message_ = "Access violation";\r
54                 break;\r
55         case EXCEPTION_FLT_DIVIDE_BY_ZERO:\r
56         case EXCEPTION_INT_DIVIDE_BY_ZERO:\r
57                 message_ = "Divide by zero";\r
58                 break;\r
59         }\r
60 }\r
61 \r
62 win32_access_violation::win32_access_violation(const EXCEPTION_RECORD& info) : win32_exception(info), isWrite_(false), badAddress_(0) \r
63 {\r
64         isWrite_ = info.ExceptionInformation[0] == 1;\r
65         badAddress_ = reinterpret_cast<win32_exception::address>(info.ExceptionInformation[1]);\r
66 }\r
67 \r
68 const char* win32_access_violation::what() const\r
69 {\r
70         sprintf_s<>(messageBuffer_, "Access violation at %p, trying to %s %p", location(), isWrite_?"write":"read", badAddress_);\r
71 \r
72         return messageBuffer_;\r
73 }\r
74 \r
75 }