ProteoWizard
Exception.hpp
Go to the documentation of this file.
1 //
2 // $Id: Exception.hpp 4010 2012-10-17 20:22:16Z chambm $
3 //
4 //
5 // Original author: Matt Chambers <matt.chambers .@. vanderbilt.edu>
6 //
7 // Copyright 2008 Spielberg Family Center for Applied Proteomics
8 // Cedars Sinai Medical Center, Los Angeles, California 90048
9 // Copyright 2008 Vanderbilt University - Nashville, TN 37232
10 //
11 // Licensed under the Apache License, Version 2.0 (the "License");
12 // you may not use this file except in compliance with the License.
13 // You may obtain a copy of the License at
14 //
15 // http://www.apache.org/licenses/LICENSE-2.0
16 //
17 // Unless required by applicable law or agreed to in writing, software
18 // distributed under the License is distributed on an "AS IS" BASIS,
19 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 // See the License for the specific language governing permissions and
21 // limitations under the License.
22 //
23 
24 #ifndef _EXCEPTION_HPP_
25 #define _EXCEPTION_HPP_
26 
27 
28 #include <stdexcept>
29 #include <string>
30 
31 
32 namespace pwiz {
33 namespace util {
34 
35 class usage_exception : public std::runtime_error
36 {
37  public: usage_exception(const std::string& usage) : std::runtime_error(usage) {}
38 };
39 
40 class user_error : public std::runtime_error
41 {
42  public: user_error(const std::string& what) : std::runtime_error(what) {}
43 };
44 
45 } // namespace util
46 } // namespace pwiz
47 
48 
49 // make debug assertions throw exceptions in MSVC
50 #ifdef _DEBUG
51 #include <crtdbg.h>
52 #include <iostream>
53 #include <locale>
54 #include <sstream>
55 
56 // preprocessed prototype of SetErrorMode so windows.h doesn't have to be included;
57 // this requires linking to the shared runtime but pwiz always does that on Windows
58 extern "C" __declspec(dllimport) unsigned int __stdcall SetErrorMode(unsigned int uMode);
59 
60 namespace {
61 
62 inline std::string narrow(const std::wstring& str)
63 {
64  std::ostringstream oss;
65  const std::ctype<wchar_t>& ctfacet = std::use_facet< std::ctype<wchar_t> >(oss.getloc());
66  for (size_t i=0; i < str.size(); ++i)
67  oss << ctfacet.narrow(str[i], 0);
68  return oss.str();
69 }
70 
71 inline int CrtReportHook(int reportType, char *message, int *returnValue)
72 {
73  throw std::runtime_error(message);
74 }
75 
76 inline int CrtReportHookW(int reportType, wchar_t *message, int *returnValue)
77 {
78  throw std::runtime_error(narrow(message));
79 }
80 
81 } // namespace
82 
83 struct ReportHooker
84 {
85  ReportHooker()
86  {
87  SetErrorMode(SetErrorMode(0) | 0x0002); // SEM_NOGPFAULTERRORBOX
88  _CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_FILE);
89  _CrtSetReportFile(_CRT_ASSERT, _CRTDBG_FILE_STDERR);
90  _CrtSetReportHook2(_CRT_RPTHOOK_INSTALL, &CrtReportHook);
91  _CrtSetReportHookW2(_CRT_RPTHOOK_INSTALL, &CrtReportHookW);
92  }
93 
94  ~ReportHooker()
95  {
96  _CrtSetReportHook2(_CRT_RPTHOOK_REMOVE, &CrtReportHook);
97  _CrtSetReportHookW2(_CRT_RPTHOOK_REMOVE, &CrtReportHookW);
98  }
99 };
100 static ReportHooker reportHooker;
101 #endif // _DEBUG
102 
103 
104 // make Boost assertions throw exceptions
105 #if !defined(NDEBUG)
106 #define BOOST_ENABLE_ASSERT_HANDLER
107 #include <sstream>
108 namespace boost
109 {
110  inline void assertion_failed(char const * expr, char const * function, char const * file, long line) // user defined
111  {
112  std::ostringstream oss;
113  oss << "[" << file << ":" << line << "] Assertion failed: " << expr;
114  throw std::runtime_error(oss.str());
115  }
116 
117  inline void assertion_failed_msg(char const * expr, char const * msg, char const * function, char const * file, long line) // user defined
118  {
119  std::ostringstream oss;
120  oss << "[" << file << ":" << line << "] Assertion failed: " << expr << " (" << msg << ")";
121  throw std::runtime_error(oss.str());
122  }
123 } // namespace boost
124 #endif // !defined(NDEBUG)
125 
126 
127 #endif // _EXCEPTION_HPP_