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
|
// Copyright Daniel Wallin 2008. Use, modification and distribution is
// subject to the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#include "test.hpp"
#include <luabind/luabind.hpp>
#include <luabind/exception_handler.hpp>
struct my_exception {};
void translate_my_exception(lua_State* L, my_exception const&)
{
lua_pushstring(L, "my_exception");
}
struct derived_std_exception : std::exception
{
char const* what() const throw()
{
return "derived_std_exception";
}
};
void translate_derived_exception(lua_State* L, derived_std_exception const&)
{
lua_pushstring(L, "derived_std_exception");
}
void raise()
{
throw my_exception();
}
void raise_derived()
{
throw derived_std_exception();
}
void test_main(lua_State* L)
{
using namespace luabind;
register_exception_handler<my_exception>(&translate_my_exception);
module(L) [
def("raise", &raise),
def("raise_derived", &raise_derived)
];
DOSTRING(L,
"status, msg = pcall(raise)\n"
"assert(status == false)\n"
"assert(msg == 'my_exception')\n");
DOSTRING(L,
"status, msg = pcall(raise_derived)\n"
"assert(status == false)\n"
"assert(msg == 'std::exception: \\'derived_std_exception\\'')\n");
register_exception_handler<derived_std_exception>(&translate_derived_exception);
DOSTRING(L,
"status, msg = pcall(raise_derived)\n"
"assert(status == false)\n"
"assert(msg == 'derived_std_exception')\n");
}
|