2013-11-25 17:56:27 +08:00
|
|
|
// The MIT License (MIT)
|
|
|
|
|
2015-07-22 07:51:17 +08:00
|
|
|
// Copyright (c) 2013-2015 Rapptz and contributors
|
2013-11-25 17:56:27 +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_REFERENCE_HPP
|
|
|
|
#define SOL_REFERENCE_HPP
|
|
|
|
|
|
|
|
#include "types.hpp"
|
|
|
|
|
|
|
|
namespace sol {
|
|
|
|
class reference {
|
|
|
|
private:
|
|
|
|
lua_State* L = nullptr; // non-owning
|
|
|
|
int ref = LUA_NOREF;
|
|
|
|
|
|
|
|
int copy() const {
|
2015-10-22 23:20:32 +08:00
|
|
|
if (ref == LUA_NOREF)
|
|
|
|
return LUA_NOREF;
|
2013-11-25 17:56:27 +08:00
|
|
|
push();
|
|
|
|
return luaL_ref(L, LUA_REGISTRYINDEX);
|
|
|
|
}
|
|
|
|
public:
|
2013-11-25 18:20:14 +08:00
|
|
|
reference() noexcept = default;
|
2013-11-25 17:56:27 +08:00
|
|
|
|
|
|
|
reference(lua_State* L, int index): L(L) {
|
|
|
|
lua_pushvalue(L, index);
|
|
|
|
ref = luaL_ref(L, LUA_REGISTRYINDEX);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~reference() {
|
|
|
|
luaL_unref(L, LUA_REGISTRYINDEX, ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
reference(reference&& o) noexcept {
|
|
|
|
L = o.L;
|
|
|
|
ref = o.ref;
|
|
|
|
|
|
|
|
o.L = nullptr;
|
|
|
|
o.ref = LUA_NOREF;
|
|
|
|
}
|
|
|
|
|
|
|
|
reference& operator=(reference&& o) noexcept {
|
|
|
|
L = o.L;
|
|
|
|
ref = o.ref;
|
|
|
|
|
|
|
|
o.L = nullptr;
|
|
|
|
o.ref = LUA_NOREF;
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
reference(const reference& o) noexcept {
|
|
|
|
L = o.L;
|
|
|
|
ref = o.copy();
|
|
|
|
}
|
|
|
|
|
|
|
|
reference& operator=(const reference& o) noexcept {
|
|
|
|
L = o.L;
|
|
|
|
ref = o.copy();
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2015-10-22 23:20:32 +08:00
|
|
|
int push() const noexcept {
|
|
|
|
lua_rawgeti(L, LUA_REGISTRYINDEX, ref);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int get_index() const {
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool valid () const {
|
|
|
|
return !(ref == LUA_NOREF);
|
|
|
|
}
|
|
|
|
|
2015-03-02 10:14:42 +08:00
|
|
|
type get_type() const {
|
2013-11-25 17:56:27 +08:00
|
|
|
push();
|
|
|
|
int result = lua_type(L, -1);
|
|
|
|
lua_pop(L, 1);
|
|
|
|
return static_cast<type>(result);
|
|
|
|
}
|
|
|
|
|
2016-01-09 05:16:06 +08:00
|
|
|
lua_State* lua_state() const noexcept {
|
2013-11-25 17:56:27 +08:00
|
|
|
return L;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} // sol
|
|
|
|
|
2015-05-16 00:41:45 +08:00
|
|
|
#endif // SOL_REFERENCE_HPP
|