2013-12-22 08:30:30 +08:00
|
|
|
// The MIT License (MIT)
|
|
|
|
|
2016-02-01 16:27:06 +08:00
|
|
|
// Copyright (c) 2013-2016 Rapptz 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-01-30 17:21:33 +08:00
|
|
|
Table tbl;
|
2015-10-21 09:38:28 +08:00
|
|
|
If<std::is_array<Unqualified<Key>>, Key&, Unqualified<Key>> key;
|
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) {
|
|
|
|
tbl.set(key, std::forward<T>(item));
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-06-01 10:04:10 +08:00
|
|
|
template<typename U, EnableIf<Function<Unqualified<U>>> = 0>
|
2015-10-21 09:38:28 +08:00
|
|
|
proxy& operator=(U&& other) {
|
2013-12-22 11:11:20 +08:00
|
|
|
tbl.set_function(key, std::forward<U>(other));
|
2015-10-21 09:38:28 +08:00
|
|
|
return *this;
|
2013-12-22 11:11:20 +08:00
|
|
|
}
|
|
|
|
|
2014-06-01 10:04:10 +08:00
|
|
|
template<typename U, DisableIf<Function<Unqualified<U>>> = 0>
|
2015-10-21 09:38:28 +08:00
|
|
|
proxy& operator=(U&& other) {
|
2013-12-22 11:11:20 +08:00
|
|
|
tbl.set(key, std::forward<U>(other));
|
2015-10-21 09:38:28 +08:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
2016-01-16 15:30:49 +08:00
|
|
|
decltype(auto) get() const {
|
2015-10-21 09:38:28 +08:00
|
|
|
return tbl.template get<T>( key );
|
2013-12-22 11:11:20 +08:00
|
|
|
}
|
|
|
|
|
2016-01-24 22:19:36 +08:00
|
|
|
template <typename K>
|
|
|
|
decltype(auto) operator[](K&& key) const {
|
2016-01-29 08:57:02 +08:00
|
|
|
return get<table>()[std::forward<K>(key)];
|
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) {
|
|
|
|
return get<function>().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
|