// The MIT License (MIT) // Copyright (c) 2013-2016 Rapptz and contributors // 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 "object.hpp" #include "function.hpp" #include "proxy_base.hpp" namespace sol { template struct proxy : public proxy_base> { private: typedef meta::If, Key, std::tuple>, Key&, meta::Unqualified>>> key_type; Table tbl; key_type key; template decltype(auto) tuple_get(std::index_sequence) const { return tbl.template traverse_get( std::get(key)... ); } template void tuple_set(std::index_sequence, T&& value) const { tbl.traverse_set( std::get(key)..., std::forward(value) ); } public: template proxy(Table table, T&& key) : tbl(table), key(std::forward(key)) {} template proxy& set(T&& item) { tuple_set( std::make_index_sequence>::value>(), std::forward(item) ); return *this; } template proxy& set_function(Args&&... args) { tbl.set_function(key, std::forward(args)...); return *this; } template>> = 0> proxy& operator=(U&& other) { return set_function(std::forward(other)); } template>> = 0> proxy& operator=(U&& other) { return set(std::forward(other)); } template decltype(auto) get() const { return tuple_get( std::make_index_sequence>::value>() ); } template decltype(auto) operator[](K&& k) const { auto keys = meta::tuplefy(key, std::forward(k)); return proxy(tbl, std::move(keys)); } template decltype(auto) call(Args&&... args) { return get().template call(std::forward(args)...); } template decltype(auto) operator()(Args&&... args) { return call<>(std::forward(args)...); } }; template inline bool operator==(T&& left, const proxy& right) { return left == right.template get>(); } template inline bool operator==(const proxy& right, T&& left) { return right.template get>() == left; } template inline bool operator!=(T&& left, const proxy& right) { return right.template get>() != left; } template inline bool operator!=(const proxy& right, T&& left) { return right.template get>() != left; } } // sol #endif // SOL_PROXY_HPP