]> git.sesse.net Git - casparcg/blob - common/exception/win32_exception.cpp
chroma feature: MIXER 1-1 CHROMA GREEN|BLUE 0.10 0.04
[casparcg] / common / exception / win32_exception.cpp
1 /*\r
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 * This file is part of CasparCG (www.casparcg.com).\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 * Author: Robert Nagy, ronag89@gmail.com\r
20 */\r
21 \r
22 #include "../stdafx.h"\r
23 \r
24 #include "win32_exception.h"\r
25 \r
26 #include "../log/log.h"\r
27 \r
28 namespace caspar {\r
29 \r
30 void win32_exception::install_handler() \r
31 {\r
32 //#ifndef _DEBUG\r
33         _set_se_translator(win32_exception::Handler);\r
34 //#endif\r
35 }\r
36 \r
37 void win32_exception::Handler(unsigned int errorCode, EXCEPTION_POINTERS* pInfo) {\r
38         switch(errorCode)\r
39         {\r
40         case EXCEPTION_ACCESS_VIOLATION:\r
41                 throw win32_access_violation(*(pInfo->ExceptionRecord));\r
42                 break;\r
43 \r
44         default:\r
45                 throw win32_exception(*(pInfo->ExceptionRecord));\r
46         }\r
47 }\r
48 \r
49 win32_exception::win32_exception(const EXCEPTION_RECORD& info) : message_("Win32 exception"), location_(info.ExceptionAddress), errorCode_(info.ExceptionCode)\r
50 {\r
51         switch(info.ExceptionCode)\r
52         {\r
53         case EXCEPTION_ACCESS_VIOLATION:\r
54                 message_ = "Access violation";\r
55                 break;\r
56         case EXCEPTION_FLT_DIVIDE_BY_ZERO:\r
57         case EXCEPTION_INT_DIVIDE_BY_ZERO:\r
58                 message_ = "Divide by zero";\r
59                 break;\r
60         }\r
61 }\r
62 \r
63 win32_access_violation::win32_access_violation(const EXCEPTION_RECORD& info) : win32_exception(info), isWrite_(false), badAddress_(0) \r
64 {\r
65         isWrite_ = info.ExceptionInformation[0] == 1;\r
66         badAddress_ = reinterpret_cast<win32_exception::address>(info.ExceptionInformation[1]);\r
67 }\r
68 \r
69 const char* win32_access_violation::what() const\r
70 {\r
71         sprintf_s<>(messageBuffer_, "Access violation at %p, trying to %s %p", location(), isWrite_?"write":"read", badAddress_);\r
72 \r
73         return messageBuffer_;\r
74 }\r
75 \r
76 }