2016-03-14 21:53:24 +08:00
|
|
|
// The MIT License (MIT)
|
2013-12-03 03:22:51 +08:00
|
|
|
|
2016-02-27 15:43:53 +08:00
|
|
|
// Copyright (c) 2013-2016 Rapptz, ThePhD and contributors
|
2013-12-03 03:22:51 +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
|
|
|
|
|
2016-01-30 17:21:33 +08:00
|
|
|
#include "state_view.hpp"
|
2013-12-03 03:22:51 +08:00
|
|
|
|
|
|
|
namespace sol {
|
2016-04-07 17:21:49 +08:00
|
|
|
inline int default_at_panic(lua_State* L) {
|
|
|
|
#ifdef SOL_NO_EXCEPTIONS
|
|
|
|
(void)L;
|
|
|
|
return -1;
|
|
|
|
#else
|
|
|
|
const char* message = lua_tostring(L, -1);
|
|
|
|
std::string err = message ? message : "An unexpected error occurred and forced the lua state to call atpanic";
|
|
|
|
throw error(err);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-01-30 17:21:33 +08:00
|
|
|
class state : private std::unique_ptr<lua_State, void(*)(lua_State*)>, public state_view {
|
2013-12-03 03:22:51 +08:00
|
|
|
private:
|
2016-01-30 17:21:33 +08:00
|
|
|
typedef std::unique_ptr<lua_State, void(*)(lua_State*)> unique_base;
|
2013-12-03 03:22:51 +08:00
|
|
|
public:
|
2016-04-07 17:21:49 +08:00
|
|
|
state(lua_CFunction panic = default_at_panic) : unique_base(luaL_newstate(), lua_close),
|
|
|
|
state_view(unique_base::get()) {
|
|
|
|
set_panic(panic);
|
|
|
|
stack::luajit_exception_handler(unique_base::get());
|
|
|
|
}
|
|
|
|
|
|
|
|
state(lua_CFunction panic, lua_Alloc alfunc, void* alpointer = nullptr) : unique_base(lua_newstate(alfunc, alpointer), lua_close),
|
2016-01-30 17:21:33 +08:00
|
|
|
state_view(unique_base::get()) {
|
2015-10-23 09:53:12 +08:00
|
|
|
set_panic(panic);
|
2016-03-12 00:34:44 +08:00
|
|
|
stack::luajit_exception_handler(unique_base::get());
|
2013-12-03 03:22:51 +08:00
|
|
|
}
|
2016-02-27 15:43:53 +08:00
|
|
|
|
|
|
|
using state_view::get;
|
2013-12-03 03:22:51 +08:00
|
|
|
};
|
|
|
|
} // sol
|
|
|
|
|
2014-05-31 03:30:14 +08:00
|
|
|
#endif // SOL_STATE_HPP
|