2013-12-22 08:30:30 +08:00
|
|
|
// The MIT License (MIT)
|
|
|
|
|
2016-02-27 15:43:53 +08:00
|
|
|
// Copyright (c) 2013-2016 Rapptz, ThePhD and contributors
|
2013-12-22 08:30: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.
|
|
|
|
|
2014-06-01 06:07:50 +08:00
|
|
|
#ifndef SOL_PROXY_HPP
|
|
|
|
#define SOL_PROXY_HPP
|
|
|
|
|
2013-12-22 08:30:30 +08:00
|
|
|
#include "traits.hpp"
|
|
|
|
#include "object.hpp"
|
|
|
|
#include "function.hpp"
|
2016-02-01 16:27:06 +08:00
|
|
|
#include "proxy_base.hpp"
|
2013-12-22 08:30:30 +08:00
|
|
|
|
|
|
|
namespace sol {
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename Table, typename Key>
|
2016-02-01 16:27:06 +08:00
|
|
|
struct proxy : public proxy_base<proxy<Table, Key>> {
|
2013-12-22 08:30:30 +08:00
|
|
|
private:
|
2016-02-24 12:39:46 +08:00
|
|
|
typedef meta::If<meta::is_specialization_of<Key, std::tuple>, Key, std::tuple<meta::If<std::is_array<meta::Unqualified<Key>>, Key&, meta::Unqualified<Key>>>> key_type;
|
2016-01-30 17:21:33 +08:00
|
|
|
Table tbl;
|
2016-02-14 09:14:31 +08:00
|
|
|
key_type key;
|
|
|
|
|
|
|
|
template<typename T, std::size_t... I>
|
|
|
|
decltype(auto) tuple_get(std::index_sequence<I...>) const {
|
|
|
|
return tbl.template traverse_get<T>( std::get<I>(key)... );
|
|
|
|
}
|
|
|
|
|
|
|
|
template<std::size_t... I, typename T>
|
|
|
|
void tuple_set(std::index_sequence<I...>, T&& value) const {
|
|
|
|
tbl.traverse_set( std::get<I>(key)..., std::forward<T>(value) );
|
|
|
|
}
|
2013-12-22 08:30:30 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename T>
|
2016-01-30 17:21:33 +08:00
|
|
|
proxy(Table table, T&& key) : tbl(table), key(std::forward<T>(key)) {}
|
2013-12-22 11:11:20 +08:00
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
proxy& set(T&& item) {
|
2016-02-24 12:39:46 +08:00
|
|
|
tuple_set( std::make_index_sequence<std::tuple_size<meta::Unqualified<key_type>>::value>(), std::forward<T>(item) );
|
2013-12-22 11:11:20 +08:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
proxy& set_function(Args&&... args) {
|
|
|
|
tbl.set_function(key, std::forward<Args>(args)...);
|
2016-01-29 08:57:02 +08:00
|
|
|
return *this;
|
2013-12-22 11:11:20 +08:00
|
|
|
}
|
|
|
|
|
2016-02-24 12:39:46 +08:00
|
|
|
template<typename U, meta::EnableIf<meta::Function<meta::Unqualified<U>>> = 0>
|
2015-10-21 09:38:28 +08:00
|
|
|
proxy& operator=(U&& other) {
|
2016-02-14 09:14:31 +08:00
|
|
|
return set_function(std::forward<U>(other));
|
2013-12-22 11:11:20 +08:00
|
|
|
}
|
|
|
|
|
2016-02-24 12:39:46 +08:00
|
|
|
template<typename U, meta::DisableIf<meta::Function<meta::Unqualified<U>>> = 0>
|
2015-10-21 09:38:28 +08:00
|
|
|
proxy& operator=(U&& other) {
|
2016-02-14 09:14:31 +08:00
|
|
|
return set(std::forward<U>(other));
|
2015-10-21 09:38:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
2016-01-16 15:30:49 +08:00
|
|
|
decltype(auto) get() const {
|
2016-02-24 12:39:46 +08:00
|
|
|
return tuple_get<T>( std::make_index_sequence<std::tuple_size<meta::Unqualified<key_type>>::value>() );
|
2013-12-22 11:11:20 +08:00
|
|
|
}
|
|
|
|
|
2016-01-24 22:19:36 +08:00
|
|
|
template <typename K>
|
2016-02-14 09:14:31 +08:00
|
|
|
decltype(auto) operator[](K&& k) const {
|
2016-02-24 12:39:46 +08:00
|
|
|
auto keys = meta::tuplefy(key, std::forward<K>(k));
|
2016-02-14 09:14:31 +08:00
|
|
|
return proxy<Table, decltype(keys)>(tbl, std::move(keys));
|
2016-01-24 22:19:36 +08:00
|
|
|
}
|
|
|
|
|
2016-01-16 15:30:49 +08:00
|
|
|
template<typename... Ret, typename... Args>
|
|
|
|
decltype(auto) call(Args&&... args) {
|
2016-02-25 02:59:17 +08:00
|
|
|
return get<function>().template call<Ret...>(std::forward<Args>(args)...);
|
2015-07-22 14:54:43 +08:00
|
|
|
}
|
2016-01-24 22:19:36 +08:00
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
decltype(auto) operator()(Args&&... args) {
|
|
|
|
return call<>(std::forward<Args>(args)...);
|
|
|
|
}
|
2013-12-22 08:30:30 +08:00
|
|
|
};
|
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename Table, typename Key, typename T>
|
2014-06-26 05:07:21 +08:00
|
|
|
inline bool operator==(T&& left, const proxy<Table, Key>& right) {
|
2016-02-09 16:38:11 +08:00
|
|
|
return left == right.template get<std::decay_t<T>>();
|
2013-12-22 08:30:30 +08:00
|
|
|
}
|
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename Table, typename Key, typename T>
|
2014-06-26 05:07:21 +08:00
|
|
|
inline bool operator==(const proxy<Table, Key>& right, T&& left) {
|
2016-02-09 16:38:11 +08:00
|
|
|
return right.template get<std::decay_t<T>>() == left;
|
2013-12-22 08:30:30 +08:00
|
|
|
}
|
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename Table, typename Key, typename T>
|
2014-06-26 05:07:21 +08:00
|
|
|
inline bool operator!=(T&& left, const proxy<Table, Key>& right) {
|
2016-02-09 16:38:11 +08:00
|
|
|
return right.template get<std::decay_t<T>>() != left;
|
2013-12-22 08:30:30 +08:00
|
|
|
}
|
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename Table, typename Key, typename T>
|
2014-06-26 05:07:21 +08:00
|
|
|
inline bool operator!=(const proxy<Table, Key>& right, T&& left) {
|
2016-02-09 16:38:11 +08:00
|
|
|
return right.template get<std::decay_t<T>>() != left;
|
2013-12-22 08:30:30 +08:00
|
|
|
}
|
2014-06-01 10:04:10 +08:00
|
|
|
} // sol
|
|
|
|
|
2014-06-01 06:07:50 +08:00
|
|
|
#endif // SOL_PROXY_HPP
|