1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
// This is mul/mbl/mbl_exception.cxx
#include "mbl_exception.h"
//:
// \file
// \brief Exceptions thrown by mbl, and a mechanism for turning them off.
// \author Ian Scott.
#include <vcl_cerrno.h>
#include <vcl_cstring.h>
#if 0 // should be #ifdef VCL_VC, but it doesn't work yet - I can't get it to link
#pragma comment(lib, "user32")
#pragma comment (lib, "dbghelp")
#include <vxl_config.h>
#define AFX_STACK_DUMP_TARGET_CLIPBOARD 0x0002
#define CF_OEMTEXT 7
#define AFXAPI __stdcall
#define WINAPI __stdcall
typedef vxl_uint_32 DWORD;
typedef void * HANDLE;
typedef unsigned int UINT;
#if (!defined(_USER32_) && (defined(_M_IX86) || defined(_M_IA64) || defined(_M_AMD64)))
#define WINUSERAPI __declspec(dllimport)
#else
#define WINUSERAPI
#endif
#if (!defined(_KERNEL32_) && (defined(_M_IX86) || defined(_M_IA64) || defined(_M_AMD64)))
#define WINBASEAPI __declspec(dllimport)
#else
#define WINBASEAPI
#endif
void AFXAPI AfxDumpStack(DWORD);
WINUSERAPI bool WINAPI OpenClipboard(HANDLE hWndNewOwner);
WINUSERAPI bool WINAPI CloseClipboard(void);
WINUSERAPI HANDLE WINAPI GetClipboardData(UINT uFormat);
WINBASEAPI void * WINAPI GlobalLock(HANDLE hMem);
static vcl_string LotsOfInfo()
{
vcl_string text;
text = "Stack: ";
::AfxDumpStack(AFX_STACK_DUMP_TARGET_CLIPBOARD);
if ( !::OpenClipboard(0) )
text += "Failed to open clipboard to retrieve stack trace.\n";
HANDLE hglb = ::GetClipboardData(CF_OEMTEXT);
if (hglb == NULL)
text += "Failed to retrieve stack trace from clipboard.\n";
const char* str = static_cast<const char *>(::GlobalLock(hglb));
if (str == NULL)
text += "Failed to convert stack trace from clipboard.\n";
else
text += str;
::CloseClipboard();
return text;
}
#else // 0, should be VCL_VC
static vcl_string LotsOfInfo()
{
return "";
}
#endif // 0, should be VCL_VC
#if !VCL_HAS_EXCEPTIONS
mbl_exception_abort::mbl_exception_abort(const vcl_string& comment):
msg_(comment + LotsOfInfo()) {}
#else
mbl_exception_abort::mbl_exception_abort(const vcl_string& comment):
vcl_logic_error(comment + LotsOfInfo()) {}
#endif
mbl_exception_os_error::mbl_exception_os_error(int errnum, const vcl_string &file_name,
const vcl_string &comment/*=""*/):
#if !VCL_HAS_EXCEPTIONS
msg_(file_name + " " + vcl_strerror(errnum) + "\n" + comment),
errno(errnum), error_message(vcl_strerror(errnum)), filename(file_name),
additional_comment(comment) {}
#else
vcl_runtime_error(vcl_string("\"") + file_name + "\" " + vcl_strerror(errnum) + "\n" + comment),
err_no(errnum), error_message(vcl_strerror(errnum)), filename(file_name),
additional_comment(comment) {}
#endif
void mbl_exception_throw_os_error(const vcl_string& filename,
const vcl_string& additional_comment /*=""*/)
{
switch (errno)
{
case ENOENT:
mbl_exception_warning(mbl_exception_os_no_such_file_or_directory(ENOENT, filename, additional_comment));
break;
case EACCES:
mbl_exception_warning(mbl_exception_os_permission_denied(EACCES, filename, additional_comment));
break;
case EEXIST:
mbl_exception_warning(mbl_exception_os_file_exists(EEXIST, filename, additional_comment));
break;
case ENOTDIR:
mbl_exception_warning(mbl_exception_os_not_a_directory(ENOTDIR, filename, additional_comment));
break;
case EISDIR:
mbl_exception_warning(mbl_exception_os_is_a_directory(EISDIR, filename, additional_comment));
break;
case ENOSPC:
mbl_exception_warning(mbl_exception_os_no_space_left_on_device(ENOSPC, filename, additional_comment));
break;
case EINVAL:
mbl_exception_warning(mbl_exception_os_invalid_value(EINVAL, filename, additional_comment));
break;
default:
mbl_exception_warning(mbl_exception_os_error(errno, filename, additional_comment));
break;
}
}
|