2017-12-20 17:58:32 +08:00
|
|
|
// sol2
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
// The MIT License (MIT)
|
2017-02-01 19:54:30 +08:00
|
|
|
|
2017-05-15 22:41:50 +08:00
|
|
|
// Copyright (c) 2013-2017 Rapptz, ThePhD and contributors
|
2017-02-01 19:54:30 +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_PROXY_HPP
|
|
|
|
#define SOL_PROXY_HPP
|
|
|
|
|
|
|
|
#include "traits.hpp"
|
|
|
|
#include "function.hpp"
|
|
|
|
#include "protected_function.hpp"
|
|
|
|
#include "proxy_base.hpp"
|
|
|
|
|
|
|
|
namespace sol {
|
2017-09-13 14:46:56 +08:00
|
|
|
template <typename Table, typename Key>
|
2017-02-01 19:54:30 +08:00
|
|
|
struct proxy : public proxy_base<proxy<Table, Key>> {
|
|
|
|
private:
|
|
|
|
typedef meta::condition<meta::is_specialization_of<std::tuple, Key>, Key, std::tuple<meta::condition<std::is_array<meta::unqualified_t<Key>>, Key&, meta::unqualified_t<Key>>>> key_type;
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
template <typename T, std::size_t... I>
|
2017-02-01 19:54:30 +08:00
|
|
|
decltype(auto) tuple_get(std::index_sequence<I...>) const {
|
|
|
|
return tbl.template traverse_get<T>(std::get<I>(key)...);
|
|
|
|
}
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
template <std::size_t... I, typename T>
|
2017-02-01 19:54:30 +08:00
|
|
|
void tuple_set(std::index_sequence<I...>, T&& value) {
|
|
|
|
tbl.traverse_set(std::get<I>(key)..., std::forward<T>(value));
|
|
|
|
}
|
|
|
|
|
2017-08-22 03:25:43 +08:00
|
|
|
auto setup_table(std::true_type) {
|
|
|
|
auto p = stack::probe_get_field<std::is_same<meta::unqualified_t<Table>, global_table>::value>(lua_state(), key, tbl.stack_index());
|
|
|
|
lua_pop(lua_state(), p.levels);
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_valid(std::false_type) {
|
|
|
|
auto pp = stack::push_pop(tbl);
|
|
|
|
auto p = stack::probe_get_field<std::is_same<meta::unqualified_t<Table>, global_table>::value>(lua_state(), key, lua_gettop(lua_state()));
|
|
|
|
lua_pop(lua_state(), p.levels);
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2017-02-01 19:54:30 +08:00
|
|
|
public:
|
|
|
|
Table tbl;
|
|
|
|
key_type key;
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
template <typename T>
|
|
|
|
proxy(Table table, T&& k)
|
|
|
|
: tbl(table), key(std::forward<T>(k)) {
|
|
|
|
}
|
2017-02-01 19:54:30 +08:00
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
template <typename T>
|
2017-02-01 19:54:30 +08:00
|
|
|
proxy& set(T&& item) {
|
|
|
|
tuple_set(std::make_index_sequence<std::tuple_size<meta::unqualified_t<key_type>>::value>(), std::forward<T>(item));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
template <typename... Args>
|
2017-02-01 19:54:30 +08:00
|
|
|
proxy& set_function(Args&&... args) {
|
|
|
|
tbl.set_function(key, std::forward<Args>(args)...);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2017-09-14 12:35:40 +08:00
|
|
|
template <typename U, meta::enable<meta::neg<is_lua_reference_or_proxy<meta::unwrap_unqualified_t<U>>>, meta::is_callable<meta::unwrap_unqualified_t<U>>> = meta::enabler>
|
2017-02-01 19:54:30 +08:00
|
|
|
proxy& operator=(U&& other) {
|
|
|
|
return set_function(std::forward<U>(other));
|
|
|
|
}
|
|
|
|
|
2017-09-14 12:35:40 +08:00
|
|
|
template <typename U, meta::disable<meta::neg<is_lua_reference_or_proxy<meta::unwrap_unqualified_t<U>>>, meta::is_callable<meta::unwrap_unqualified_t<U>>> = meta::enabler>
|
2017-02-01 19:54:30 +08:00
|
|
|
proxy& operator=(U&& other) {
|
|
|
|
return set(std::forward<U>(other));
|
|
|
|
}
|
|
|
|
|
2017-09-23 06:54:33 +08:00
|
|
|
template <typename T>
|
|
|
|
proxy& operator=(std::initializer_list<T> other) {
|
|
|
|
return set(std::move(other));
|
|
|
|
}
|
|
|
|
|
2018-02-05 08:23:24 +08:00
|
|
|
int push() const noexcept {
|
|
|
|
return get<reference>().push(L);
|
|
|
|
}
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
template <typename T>
|
2017-02-01 19:54:30 +08:00
|
|
|
decltype(auto) get() const {
|
|
|
|
return tuple_get<T>(std::make_index_sequence<std::tuple_size<meta::unqualified_t<key_type>>::value>());
|
|
|
|
}
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
template <typename T>
|
2017-02-01 19:54:30 +08:00
|
|
|
decltype(auto) get_or(T&& otherwise) const {
|
|
|
|
typedef decltype(get<T>()) U;
|
2017-05-15 22:41:50 +08:00
|
|
|
optional<U> option = get<optional<U>>();
|
2017-02-01 19:54:30 +08:00
|
|
|
if (option) {
|
|
|
|
return static_cast<U>(option.value());
|
|
|
|
}
|
|
|
|
return static_cast<U>(std::forward<T>(otherwise));
|
|
|
|
}
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
template <typename T, typename D>
|
2017-02-01 19:54:30 +08:00
|
|
|
decltype(auto) get_or(D&& otherwise) const {
|
2017-05-15 22:41:50 +08:00
|
|
|
optional<T> option = get<optional<T>>();
|
2017-02-01 19:54:30 +08:00
|
|
|
if (option) {
|
|
|
|
return static_cast<T>(option.value());
|
|
|
|
}
|
|
|
|
return static_cast<T>(std::forward<D>(otherwise));
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename K>
|
|
|
|
decltype(auto) operator[](K&& k) const {
|
|
|
|
auto keys = meta::tuplefy(key, std::forward<K>(k));
|
|
|
|
return proxy<Table, decltype(keys)>(tbl, std::move(keys));
|
|
|
|
}
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
template <typename... Ret, typename... Args>
|
2017-02-01 19:54:30 +08:00
|
|
|
decltype(auto) call(Args&&... args) {
|
2018-02-05 08:23:24 +08:00
|
|
|
#ifdef SOL_SAFE_FUNCTION
|
|
|
|
return get<protected_function>().template call<Ret...>(std::forward<Args>(args)...);
|
|
|
|
#else
|
2017-02-01 19:54:30 +08:00
|
|
|
return get<function>().template call<Ret...>(std::forward<Args>(args)...);
|
2018-02-05 08:23:24 +08:00
|
|
|
#endif // Safe function usage
|
2017-02-01 19:54:30 +08:00
|
|
|
}
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
template <typename... Args>
|
2017-02-01 19:54:30 +08:00
|
|
|
decltype(auto) operator()(Args&&... args) {
|
|
|
|
return call<>(std::forward<Args>(args)...);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool valid() const {
|
|
|
|
auto pp = stack::push_pop(tbl);
|
2017-08-06 07:20:28 +08:00
|
|
|
auto p = stack::probe_get_field<std::is_same<meta::unqualified_t<Table>, global_table>::value>(lua_state(), key, lua_gettop(lua_state()));
|
|
|
|
lua_pop(lua_state(), p.levels);
|
2017-02-01 19:54:30 +08:00
|
|
|
return p;
|
|
|
|
}
|
2017-07-10 00:00:57 +08:00
|
|
|
|
|
|
|
type get_type() const {
|
|
|
|
type t = type::none;
|
|
|
|
auto pp = stack::push_pop(tbl);
|
2017-08-06 07:20:28 +08:00
|
|
|
auto p = stack::probe_get_field<std::is_same<meta::unqualified_t<Table>, global_table>::value>(lua_state(), key, lua_gettop(lua_state()));
|
2017-07-10 00:00:57 +08:00
|
|
|
if (p) {
|
2017-08-06 07:20:28 +08:00
|
|
|
t = type_of(lua_state(), -1);
|
2017-07-10 00:00:57 +08:00
|
|
|
}
|
2017-08-06 07:20:28 +08:00
|
|
|
lua_pop(lua_state(), p.levels);
|
2017-07-10 00:00:57 +08:00
|
|
|
return t;
|
|
|
|
}
|
2017-08-06 07:20:28 +08:00
|
|
|
|
|
|
|
lua_State* lua_state() const {
|
|
|
|
return tbl.lua_state();
|
|
|
|
}
|
2017-02-01 19:54:30 +08:00
|
|
|
};
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
template <typename Table, typename Key, typename T>
|
2017-02-01 19:54:30 +08:00
|
|
|
inline bool operator==(T&& left, const proxy<Table, Key>& right) {
|
|
|
|
typedef decltype(stack::get<T>(nullptr, 0)) U;
|
|
|
|
return right.template get<optional<U>>() == left;
|
|
|
|
}
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
template <typename Table, typename Key, typename T>
|
2017-02-01 19:54:30 +08:00
|
|
|
inline bool operator==(const proxy<Table, Key>& right, T&& left) {
|
|
|
|
typedef decltype(stack::get<T>(nullptr, 0)) U;
|
|
|
|
return right.template get<optional<U>>() == left;
|
|
|
|
}
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
template <typename Table, typename Key, typename T>
|
2017-02-01 19:54:30 +08:00
|
|
|
inline bool operator!=(T&& left, const proxy<Table, Key>& right) {
|
|
|
|
typedef decltype(stack::get<T>(nullptr, 0)) U;
|
2017-10-17 07:28:43 +08:00
|
|
|
return right.template get<optional<U>>() != left;
|
2017-02-01 19:54:30 +08:00
|
|
|
}
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
template <typename Table, typename Key, typename T>
|
2017-02-01 19:54:30 +08:00
|
|
|
inline bool operator!=(const proxy<Table, Key>& right, T&& left) {
|
|
|
|
typedef decltype(stack::get<T>(nullptr, 0)) U;
|
2017-10-17 07:28:43 +08:00
|
|
|
return right.template get<optional<U>>() != left;
|
2017-02-01 19:54:30 +08:00
|
|
|
}
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
template <typename Table, typename Key>
|
2017-02-01 19:54:30 +08:00
|
|
|
inline bool operator==(lua_nil_t, const proxy<Table, Key>& right) {
|
|
|
|
return !right.valid();
|
|
|
|
}
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
template <typename Table, typename Key>
|
2017-02-01 19:54:30 +08:00
|
|
|
inline bool operator==(const proxy<Table, Key>& right, lua_nil_t) {
|
|
|
|
return !right.valid();
|
|
|
|
}
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
template <typename Table, typename Key>
|
2017-02-01 19:54:30 +08:00
|
|
|
inline bool operator!=(lua_nil_t, const proxy<Table, Key>& right) {
|
|
|
|
return right.valid();
|
|
|
|
}
|
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
template <typename Table, typename Key>
|
2017-02-01 19:54:30 +08:00
|
|
|
inline bool operator!=(const proxy<Table, Key>& right, lua_nil_t) {
|
|
|
|
return right.valid();
|
|
|
|
}
|
|
|
|
|
2017-09-14 12:35:40 +08:00
|
|
|
template <bool b>
|
|
|
|
template <typename Super>
|
|
|
|
basic_reference<b>& basic_reference<b>::operator=(proxy_base<Super>&& r) {
|
2017-12-07 21:24:50 +08:00
|
|
|
basic_reference<b> v = r;
|
|
|
|
this->operator=(std::move(v));
|
2017-09-14 12:35:40 +08:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <bool b>
|
|
|
|
template <typename Super>
|
|
|
|
basic_reference<b>& basic_reference<b>::operator=(const proxy_base<Super>& r) {
|
2017-12-07 21:24:50 +08:00
|
|
|
basic_reference<b> v = r;
|
|
|
|
this->operator=(std::move(v));
|
2017-09-14 12:35:40 +08:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2017-02-01 19:54:30 +08:00
|
|
|
namespace stack {
|
|
|
|
template <typename Table, typename Key>
|
|
|
|
struct pusher<proxy<Table, Key>> {
|
|
|
|
static int push(lua_State* L, const proxy<Table, Key>& p) {
|
2017-09-14 12:35:40 +08:00
|
|
|
reference r = p;
|
2017-02-01 19:54:30 +08:00
|
|
|
return r.push(L);
|
|
|
|
}
|
|
|
|
};
|
2017-09-13 14:46:56 +08:00
|
|
|
} // namespace stack
|
|
|
|
} // namespace sol
|
2017-02-01 19:54:30 +08:00
|
|
|
|
|
|
|
#endif // SOL_PROXY_HPP
|