2017-12-20 17:58:32 +08:00
|
|
|
// sol2
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
// The MIT License (MIT)
|
2016-12-27 02:50:08 +08:00
|
|
|
|
2017-05-15 22:41:50 +08:00
|
|
|
// Copyright (c) 2013-2017 Rapptz, ThePhD and contributors
|
2016-12-27 02:50:08 +08:00
|
|
|
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
// this software and associated documentation files (the "Software"), to deal in
|
|
|
|
// the Software without restriction, including without limitation the rights to
|
|
|
|
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
// the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
// subject to the following conditions:
|
|
|
|
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
#ifndef SOL_STATE_HPP
|
|
|
|
#define SOL_STATE_HPP
|
|
|
|
|
|
|
|
#include "state_view.hpp"
|
2017-09-13 07:15:23 +08:00
|
|
|
#include "thread.hpp"
|
2016-12-27 02:50:08 +08:00
|
|
|
|
|
|
|
namespace sol {
|
2017-08-06 07:20:28 +08:00
|
|
|
|
|
|
|
namespace detail {
|
|
|
|
inline int default_at_panic(lua_State* L) {
|
2016-12-27 02:50:08 +08:00
|
|
|
#ifdef SOL_NO_EXCEPTIONS
|
2017-08-06 07:20:28 +08:00
|
|
|
(void)L;
|
|
|
|
return -1;
|
2016-12-27 02:50:08 +08:00
|
|
|
#else
|
2017-08-22 03:25:43 +08:00
|
|
|
size_t messagesize;
|
|
|
|
const char* message = lua_tolstring(L, -1, &messagesize);
|
2017-08-06 07:20:28 +08:00
|
|
|
if (message) {
|
2017-08-22 03:25:43 +08:00
|
|
|
std::string err(message, messagesize);
|
2017-08-06 07:20:28 +08:00
|
|
|
lua_settop(L, 0);
|
|
|
|
throw error(err);
|
|
|
|
}
|
2017-04-10 07:37:45 +08:00
|
|
|
lua_settop(L, 0);
|
2017-08-06 07:20:28 +08:00
|
|
|
throw error(std::string("An unexpected error occurred and forced the lua state to call atpanic"));
|
2016-12-27 02:50:08 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
inline int default_traceback_error_handler(lua_State* L) {
|
2017-08-06 07:20:28 +08:00
|
|
|
using namespace sol;
|
|
|
|
std::string msg = "An unknown error has triggered the default error handler";
|
2017-09-06 08:29:21 +08:00
|
|
|
optional<string_view> maybetopmsg = stack::check_get<string_view>(L, 1);
|
2017-08-06 07:20:28 +08:00
|
|
|
if (maybetopmsg) {
|
2017-09-06 08:29:21 +08:00
|
|
|
const string_view& topmsg = maybetopmsg.value();
|
2017-08-06 07:20:28 +08:00
|
|
|
msg.assign(topmsg.data(), topmsg.size());
|
|
|
|
}
|
|
|
|
luaL_traceback(L, L, msg.c_str(), 1);
|
2017-09-06 08:29:21 +08:00
|
|
|
optional<string_view> maybetraceback = stack::check_get<string_view>(L, -1);
|
2017-08-06 07:20:28 +08:00
|
|
|
if (maybetraceback) {
|
2017-09-06 08:29:21 +08:00
|
|
|
const string_view& traceback = maybetraceback.value();
|
2017-08-06 07:20:28 +08:00
|
|
|
msg.assign(traceback.data(), traceback.size());
|
|
|
|
}
|
|
|
|
return stack::push(L, msg);
|
|
|
|
}
|
2017-09-13 14:46:56 +08:00
|
|
|
} // namespace detail
|
2016-12-27 02:50:08 +08:00
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
class state : private std::unique_ptr<lua_State, void (*)(lua_State*)>, public state_view {
|
2016-12-27 02:50:08 +08:00
|
|
|
private:
|
2017-09-13 14:46:56 +08:00
|
|
|
typedef std::unique_ptr<lua_State, void (*)(lua_State*)> unique_base;
|
|
|
|
|
2016-12-27 02:50:08 +08:00
|
|
|
public:
|
2017-09-13 14:46:56 +08:00
|
|
|
state(lua_CFunction panic = detail::default_at_panic)
|
|
|
|
: unique_base(luaL_newstate(), lua_close), state_view(unique_base::get()) {
|
2016-12-27 02:50:08 +08:00
|
|
|
set_panic(panic);
|
2017-08-06 07:20:28 +08:00
|
|
|
lua_CFunction f = c_call<decltype(&detail::default_traceback_error_handler), &detail::default_traceback_error_handler>;
|
2017-09-14 12:35:40 +08:00
|
|
|
protected_function::set_default_handler(object(lua_state(), in_place, f));
|
2017-09-13 07:15:23 +08:00
|
|
|
stack::register_main_thread(unique_base::get());
|
2016-12-27 02:50:08 +08:00
|
|
|
stack::luajit_exception_handler(unique_base::get());
|
|
|
|
}
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
state(lua_CFunction panic, lua_Alloc alfunc, void* alpointer = nullptr)
|
|
|
|
: unique_base(lua_newstate(alfunc, alpointer), lua_close), state_view(unique_base::get()) {
|
2016-12-27 02:50:08 +08:00
|
|
|
set_panic(panic);
|
2017-08-06 07:20:28 +08:00
|
|
|
lua_CFunction f = c_call<decltype(&detail::default_traceback_error_handler), &detail::default_traceback_error_handler>;
|
2017-09-14 12:35:40 +08:00
|
|
|
protected_function::set_default_handler(object(lua_state(), in_place, f));
|
2017-09-13 07:15:23 +08:00
|
|
|
stack::register_main_thread(unique_base::get());
|
2016-12-27 02:50:08 +08:00
|
|
|
stack::luajit_exception_handler(unique_base::get());
|
|
|
|
}
|
|
|
|
|
|
|
|
state(const state&) = delete;
|
|
|
|
state(state&&) = default;
|
|
|
|
state& operator=(const state&) = delete;
|
2017-02-15 18:42:44 +08:00
|
|
|
state& operator=(state&& that) {
|
|
|
|
state_view::operator=(std::move(that));
|
|
|
|
unique_base::operator=(std::move(that));
|
|
|
|
return *this;
|
|
|
|
}
|
2016-12-27 02:50:08 +08:00
|
|
|
|
|
|
|
using state_view::get;
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
~state() {
|
|
|
|
}
|
2016-12-27 02:50:08 +08:00
|
|
|
};
|
2017-09-13 14:46:56 +08:00
|
|
|
} // namespace sol
|
2016-12-27 02:50:08 +08:00
|
|
|
|
|
|
|
#endif // SOL_STATE_HPP
|