| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557 |
- // sol2
- // The MIT License (MIT)
- // Copyright (c) 2013-2022 Rapptz, ThePhD 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_TYPES_HPP
- #define SOL_TYPES_HPP
- #include <sol/error.hpp>
- #include <sol/optional.hpp>
- #include <sol/compatibility.hpp>
- #include <sol/forward.hpp>
- #include <sol/forward_detail.hpp>
- #include <sol/traits.hpp>
- #include <sol/string_view.hpp>
- #include <sol/raii.hpp>
- #include <sol/policies.hpp>
- #include <sol/ebco.hpp>
- #include <array>
- #include <initializer_list>
- #include <string>
- #include <string_view>
- #include <limits>
- #include <optional>
- #include <memory>
- #if SOL_IS_ON(SOL_STD_VARIANT)
- #include <variant>
- #endif // variant shenanigans (thanks, Mac OSX)
- namespace sol {
- namespace d {
- // shortest possible hidden detail namespace
- // when types are transcribed, this saves
- // quite a bit of space, actually.
- // it's a little unfortunate, but here we are?
- template <typename T>
- struct u { };
- } // namespace d
- namespace detail {
- #if SOL_IS_ON(SOL_USE_NOEXCEPT_FUNCTION_TYPE)
- typedef int (*lua_CFunction_noexcept)(lua_State* L) noexcept;
- #else
- typedef int (*lua_CFunction_noexcept)(lua_State* L);
- #endif // noexcept function type for lua_CFunction
- template <typename T>
- struct implicit_wrapper {
- T& value;
- implicit_wrapper(T* value_) : value(*value_) {
- }
- implicit_wrapper(T& value_) : value(value_) {
- }
- operator T&() {
- return value;
- }
- operator T*() {
- return std::addressof(value);
- }
- };
- struct yield_tag_t { };
- inline constexpr yield_tag_t yield_tag {};
- } // namespace detail
- struct lua_nil_t { };
- inline constexpr lua_nil_t lua_nil {};
- inline bool operator==(lua_nil_t, lua_nil_t) {
- return true;
- }
- inline bool operator!=(lua_nil_t, lua_nil_t) {
- return false;
- }
- #if SOL_IS_ON(SOL_NIL)
- using nil_t = lua_nil_t;
- inline constexpr const nil_t& nil = lua_nil;
- #endif
- namespace detail {
- struct non_lua_nil_t { };
- } // namespace detail
- struct metatable_key_t { };
- inline constexpr metatable_key_t metatable_key {};
- struct global_tag_t {
- } inline constexpr global_tag {};
- struct env_key_t { };
- inline constexpr env_key_t env_key {};
- struct no_metatable_t { };
- inline constexpr no_metatable_t no_metatable {};
- template <typename T>
- struct yielding_t {
- T func;
- yielding_t() = default;
- yielding_t(const yielding_t&) = default;
- yielding_t(yielding_t&&) = default;
- yielding_t& operator=(const yielding_t&) = default;
- yielding_t& operator=(yielding_t&&) = default;
- template <typename Arg,
- meta::enable<meta::neg<std::is_same<meta::unqualified_t<Arg>, yielding_t>>,
- meta::neg<std::is_base_of<proxy_base_tag, meta::unqualified_t<Arg>>>> = meta::enabler>
- yielding_t(Arg&& arg) : func(std::forward<Arg>(arg)) {
- }
- template <typename Arg0, typename Arg1, typename... Args>
- yielding_t(Arg0&& arg0, Arg1&& arg1, Args&&... args) : func(std::forward<Arg0>(arg0), std::forward<Arg1>(arg1), std::forward<Args>(args)...) {
- }
- };
- template <typename F>
- inline yielding_t<std::decay_t<F>> yielding(F&& f) {
- return yielding_t<std::decay_t<F>>(std::forward<F>(f));
- }
- typedef std::remove_pointer_t<lua_CFunction> lua_CFunction_ref;
- template <typename T>
- struct non_null { };
- template <typename... Args>
- struct function_sig { };
- struct upvalue_index {
- int index;
- upvalue_index(int idx) : index(lua_upvalueindex(idx)) {
- }
- operator int() const {
- return index;
- }
- };
- struct raw_index {
- int index;
- raw_index(int i) : index(i) {
- }
- operator int() const {
- return index;
- }
- };
- struct absolute_index {
- int index;
- absolute_index(lua_State* L, int idx) : index(lua_absindex(L, idx)) {
- }
- operator int() const {
- return index;
- }
- };
- struct ref_index {
- int index;
- ref_index(int idx) : index(idx) {
- }
- operator int() const {
- return index;
- }
- };
- struct stack_count {
- int count;
- stack_count(int cnt) : count(cnt) {
- }
- };
- struct lightuserdata_value {
- void* value;
- lightuserdata_value(void* data) : value(data) {
- }
- operator void*() const {
- return value;
- }
- };
- struct userdata_value {
- private:
- void* m_value;
- public:
- userdata_value(void* data) : m_value(data) {
- }
- void* value() const {
- return m_value;
- }
- operator void*() const {
- return value();
- }
- };
- template <typename T>
- struct light {
- private:
- static_assert(!std::is_void_v<T>, "the type for light will never be void");
- T* m_value;
- public:
- light(T& x) : m_value(std::addressof(x)) {
- }
- light(T* x) : m_value(x) {
- }
- explicit light(void* x) : m_value(static_cast<T*>(x)) {
- }
- T* value() const {
- return m_value;
- }
- operator T*() const {
- return m_value;
- }
- operator T&() const {
- return *m_value;
- }
- void* void_value() const {
- return m_value;
- }
- };
- template <typename T>
- auto make_light(T& l) {
- typedef meta::unwrapped_t<std::remove_pointer_t<std::remove_pointer_t<T>>> L;
- return light<L>(l);
- }
- template <typename T>
- struct user : private detail::ebco<T> {
- private:
- using base_t = detail::ebco<T>;
- public:
- using base_t::base_t;
- using base_t::value;
- operator std::add_pointer_t<std::remove_reference_t<T>>() {
- return std::addressof(this->base_t::value());
- }
- operator std::add_pointer_t<std::add_const_t<std::remove_reference_t<T>>>() const {
- return std::addressof(this->base_t::value());
- }
- operator std::add_lvalue_reference_t<T>() {
- return this->base_t::value();
- }
- operator std::add_const_t<std::add_lvalue_reference_t<T>>&() const {
- return this->base_t::value();
- }
- };
- template <typename T>
- auto make_user(T&& u) {
- typedef meta::unwrapped_t<meta::unqualified_t<T>> U;
- return user<U>(std::forward<T>(u));
- }
- template <typename T>
- struct metatable_registry_key : private detail::ebco<T> {
- private:
- using base_t = detail::ebco<T>;
- public:
- using base_t::base_t;
- using base_t::value;
- };
- template <typename T>
- auto meta_registry_key(T&& key) {
- typedef meta::unqualified_t<T> K;
- return metatable_registry_key<K>(std::forward<T>(key));
- }
- template <typename... Upvalues>
- struct closure {
- lua_CFunction c_function;
- std::tuple<Upvalues...> upvalues;
- closure(lua_CFunction f, Upvalues... targetupvalues) : c_function(f), upvalues(std::forward<Upvalues>(targetupvalues)...) {
- }
- };
- template <>
- struct closure<> {
- lua_CFunction c_function;
- int upvalues;
- closure(lua_CFunction f, int upvalue_count = 0) : c_function(f), upvalues(upvalue_count) {
- }
- };
- typedef closure<> c_closure;
- template <typename... Args>
- closure<Args...> make_closure(lua_CFunction f, Args&&... args) {
- return closure<Args...>(f, std::forward<Args>(args)...);
- }
- template <typename Sig, typename... Ps>
- struct function_arguments {
- std::tuple<Ps...> arguments;
- template <typename Arg, typename... Args, meta::disable<std::is_same<meta::unqualified_t<Arg>, function_arguments>> = meta::enabler>
- function_arguments(Arg&& arg, Args&&... args) : arguments(std::forward<Arg>(arg), std::forward<Args>(args)...) {
- }
- };
- template <typename Sig = function_sig<>, typename... Args>
- auto as_function(Args&&... args) {
- return function_arguments<Sig, std::decay_t<Args>...>(std::forward<Args>(args)...);
- }
- template <typename Sig = function_sig<>, typename... Args>
- auto as_function_reference(Args&&... args) {
- return function_arguments<Sig, Args...>(std::forward<Args>(args)...);
- }
- template <typename T>
- struct as_table_t : private detail::ebco<T> {
- private:
- using base_t = detail::ebco<T>;
- public:
- as_table_t() = default;
- as_table_t(const as_table_t&) = default;
- as_table_t(as_table_t&&) = default;
- as_table_t& operator=(const as_table_t&) = default;
- as_table_t& operator=(as_table_t&&) = default;
- as_table_t(const meta::unqualified_t<T>& obj) noexcept(std::is_nothrow_constructible_v<base_t, const meta::unqualified_t<T>&>) : base_t(obj) {
- }
- as_table_t(meta::unqualified_t<T>&& obj) noexcept(std::is_nothrow_constructible_v<base_t, meta::unqualified_t<T>&&>) : base_t(std::move(obj)) {
- }
- template <typename Arg, typename... Args,
- std::enable_if_t<
- !std::is_same_v<as_table_t, meta::unqualified_t<Arg>> && !std::is_same_v<meta::unqualified_t<T>, meta::unqualified_t<Arg>>>* = nullptr>
- as_table_t(Arg&& arg, Args&&... args) noexcept(std::is_nothrow_constructible_v<base_t, Arg, Args...>)
- : base_t(std::forward<Arg>(arg), std::forward<Args>(args)...) {
- }
- using base_t::value;
- operator std::add_lvalue_reference_t<T>() {
- return this->base_t::value();
- }
- operator std::add_const_t<std::add_lvalue_reference_t<T>>() const {
- return this->base_t::value();
- }
- };
- template <typename T>
- struct nested : private detail::ebco<T> {
- private:
- using base_t = detail::ebco<T>;
- public:
- using nested_type = T;
- nested() = default;
- nested(const nested&) = default;
- nested(nested&&) = default;
- nested& operator=(const nested&) = default;
- nested& operator=(nested&&) = default;
- nested(const meta::unqualified_t<T>& obj) noexcept(std::is_nothrow_constructible_v<base_t, const meta::unqualified_t<T>&>) : base_t(obj) {
- }
- nested(meta::unqualified_t<T>&& obj) noexcept(std::is_nothrow_constructible_v<base_t, meta::unqualified_t<T>&&>) : base_t(std::move(obj)) {
- }
- template <typename Arg, typename... Args,
- std::enable_if_t<
- !std::is_same_v<nested, meta::unqualified_t<Arg>> && !std::is_same_v<meta::unqualified_t<T>, meta::unqualified_t<Arg>>>* = nullptr>
- nested(Arg&& arg, Args&&... args) noexcept(std::is_nothrow_constructible_v<base_t, Arg, Args...>)
- : base_t(std::forward<Arg>(arg), std::forward<Args>(args)...) {
- }
- using base_t::value;
- operator std::add_lvalue_reference_t<T>() {
- return this->base_t::value();
- }
- operator std::add_const_t<std::add_lvalue_reference_t<T>>() const {
- return this->base_t::value();
- }
- };
- struct nested_tag_t { };
- constexpr inline nested_tag_t nested_tag {};
- template <typename T>
- as_table_t<T> as_table_ref(T&& container) {
- return as_table_t<T>(std::forward<T>(container));
- }
- template <typename T>
- as_table_t<meta::unqualified_t<T>> as_table(T&& container) {
- return as_table_t<meta::unqualified_t<T>>(std::forward<T>(container));
- }
- template <typename T>
- nested<T> as_nested_ref(T&& container) {
- return nested<T>(std::forward<T>(container));
- }
- template <typename T>
- nested<meta::unqualified_t<T>> as_nested(T&& container) {
- return nested<meta::unqualified_t<T>>(std::forward<T>(container));
- }
- template <typename T>
- struct as_container_t : private detail::ebco<T> {
- private:
- using base_t = detail::ebco<T>;
- public:
- using type = T;
- as_container_t() = default;
- as_container_t(const as_container_t&) = default;
- as_container_t(as_container_t&&) = default;
- as_container_t& operator=(const as_container_t&) = default;
- as_container_t& operator=(as_container_t&&) = default;
- using base_t::base_t;
- using base_t::value;
- operator std::add_lvalue_reference_t<T>() {
- return value();
- }
- };
- template <typename T>
- auto as_container(T&& value) {
- return as_container_t<T>(std::forward<T>(value));
- }
- template <typename T, std::size_t Limit = 15>
- struct exhaustive_until : private detail::ebco<T> {
- private:
- using base_t = detail::ebco<T>;
- public:
- using base_t::base_t;
- using base_t::value;
- operator std::add_pointer_t<std::remove_reference_t<T>>() {
- return std::addressof(this->base_t::value());
- }
- operator std::add_pointer_t<std::add_const_t<std::remove_reference_t<T>>>() const {
- return std::addressof(this->base_t::value());
- }
- operator std::add_lvalue_reference_t<T>() {
- return this->base_t::value();
- }
- operator std::add_const_t<std::add_lvalue_reference_t<T>>&() const {
- return this->base_t::value();
- }
- };
- template <typename T>
- using exhaustive = exhaustive_until<T, (std::numeric_limits<size_t>::max)()>;
- template <typename T>
- struct non_exhaustive : private detail::ebco<T> {
- private:
- using base_t = detail::ebco<T>;
- public:
- using base_t::base_t;
- using base_t::value;
- operator std::add_pointer_t<std::remove_reference_t<T>>() {
- return std::addressof(this->base_t::value());
- }
- operator std::add_pointer_t<std::add_const_t<std::remove_reference_t<T>>>() const {
- return std::addressof(this->base_t::value());
- }
- operator std::add_lvalue_reference_t<T>() {
- return this->base_t::value();
- }
- operator std::add_const_t<std::add_lvalue_reference_t<T>>&() const {
- return this->base_t::value();
- }
- };
- template <typename T>
- struct push_invoke_t : private detail::ebco<T> {
- private:
- using base_t = detail::ebco<T>;
- public:
- push_invoke_t() = default;
- push_invoke_t(const push_invoke_t&) = default;
- push_invoke_t(push_invoke_t&&) = default;
- push_invoke_t& operator=(const push_invoke_t&) = default;
- push_invoke_t& operator=(push_invoke_t&&) = default;
- using base_t::base_t;
- using base_t::value;
- };
- template <typename Fx>
- auto push_invoke(Fx&& fx) {
- return push_invoke_t<Fx>(std::forward<Fx>(fx));
- }
- template <typename T>
- struct forward_as_value_t : private detail::ebco<T> {
- private:
- using base_t = detail::ebco<T>;
- public:
- forward_as_value_t() = default;
- forward_as_value_t(const forward_as_value_t&) = default;
- forward_as_value_t(forward_as_value_t&&) = default;
- forward_as_value_t& operator=(const forward_as_value_t&) = default;
- forward_as_value_t& operator=(forward_as_value_t&&) = default;
- using base_t::base_t;
- using base_t::value;
- };
- template <typename T>
- auto pass_as_value(T& value_ref_) {
- return forward_as_value_t<T>(value_ref_);
- }
- struct override_value_t { };
- constexpr inline override_value_t override_value = override_value_t();
- struct update_if_empty_t { };
- constexpr inline update_if_empty_t update_if_empty = update_if_empty_t();
- struct create_if_nil_t { };
- constexpr inline create_if_nil_t create_if_nil = create_if_nil_t();
- namespace detail {
- enum insert_mode { none = 0x0, update_if_empty = 0x01, override_value = 0x02, create_if_nil = 0x04 };
- template <typename T, typename...>
- using is_insert_mode = std::integral_constant<bool,
- std::is_same_v<T, override_value_t> || std::is_same_v<T, update_if_empty_t> || std::is_same_v<T, create_if_nil_t>>;
- template <typename T, typename...>
- using is_not_insert_mode = meta::neg<is_insert_mode<T>>;
- } // namespace detail
- struct this_state {
- lua_State* L;
- this_state(lua_State* Ls) : L(Ls) {
- }
- operator lua_State*() const noexcept {
- return lua_state();
- }
- lua_State* operator->() const noexcept {
- return lua_state();
- }
- lua_State* lua_state() const noexcept {
- return L;
- }
- };
- struct this_main_state {
- lua_State* L;
- this_main_state(lua_State* Ls) : L(Ls) {
- }
- operator lua_State*() const noexcept {
- return lua_state();
- }
- lua_State* operator->() const noexcept {
- return lua_state();
- }
- lua_State* lua_state() const noexcept {
- return L;
- }
- };
- struct new_table {
- int sequence_hint = 0;
- int map_hint = 0;
- new_table() = default;
- new_table(const new_table&) = default;
- new_table(new_table&&) = default;
- new_table& operator=(const new_table&) = default;
- new_table& operator=(new_table&&) = default;
- new_table(int sequence_hint_, int map_hint_ = 0) noexcept : sequence_hint(sequence_hint_), map_hint(map_hint_) {
- }
- };
- const new_table create = {};
- enum class lib : unsigned char {
- // print, assert, and other base functions
- base,
- // require and other package functions
- package,
- // coroutine functions and utilities
- coroutine,
- // string library
- string,
- // functionality from the OS
- os,
- // all things math
- math,
- // the table manipulator and observer functions
- table,
- // the debug library
- debug,
- // the bit library: different based on which you're using
- bit32,
- // input/output library
- io,
- // LuaJIT only
- ffi,
- // LuaJIT only
- jit,
- // library for handling utf8: new to Lua
- utf8,
- // do not use
- count
- };
- enum class call_syntax { dot = 0, colon = 1 };
- enum class load_mode {
- any = 0,
- text = 1,
- binary = 2,
- };
- enum class call_status : int {
- ok = LUA_OK,
- yielded = LUA_YIELD,
- runtime = LUA_ERRRUN,
- memory = LUA_ERRMEM,
- handler = LUA_ERRERR,
- gc = LUA_ERRGCMM,
- syntax = LUA_ERRSYNTAX,
- file = LUA_ERRFILE,
- };
- enum class thread_status : int {
- ok = LUA_OK,
- yielded = LUA_YIELD,
- runtime = LUA_ERRRUN,
- memory = LUA_ERRMEM,
- gc = LUA_ERRGCMM,
- handler = LUA_ERRERR,
- dead = -1,
- };
- enum class load_status : int {
- ok = LUA_OK,
- syntax = LUA_ERRSYNTAX,
- memory = LUA_ERRMEM,
- gc = LUA_ERRGCMM,
- file = LUA_ERRFILE,
- };
- enum class gc_mode : int {
- incremental = 0,
- generational = 1,
- default_value = incremental,
- };
- enum class type : int {
- none = LUA_TNONE,
- lua_nil = LUA_TNIL,
- #if SOL_IS_ON(SOL_NIL)
- nil = lua_nil,
- #endif // Objective C/C++ Keyword that's found in OSX SDK and OBJC -- check for all forms to protect
- string = LUA_TSTRING,
- number = LUA_TNUMBER,
- thread = LUA_TTHREAD,
- boolean = LUA_TBOOLEAN,
- function = LUA_TFUNCTION,
- userdata = LUA_TUSERDATA,
- lightuserdata = LUA_TLIGHTUSERDATA,
- table = LUA_TTABLE,
- poly = -0xFFFF
- };
- inline const std::string& to_string(call_status c) {
- static const std::array<std::string, 10> names { { "ok",
- "yielded",
- "runtime",
- "memory",
- "handler",
- "gc",
- "syntax",
- "file",
- "CRITICAL_EXCEPTION_FAILURE",
- "CRITICAL_INDETERMINATE_STATE_FAILURE" } };
- switch (c) {
- case call_status::ok:
- return names[0];
- case call_status::yielded:
- return names[1];
- case call_status::runtime:
- return names[2];
- case call_status::memory:
- return names[3];
- case call_status::handler:
- return names[4];
- case call_status::gc:
- return names[5];
- case call_status::syntax:
- return names[6];
- case call_status::file:
- return names[7];
- }
- if (static_cast<std::ptrdiff_t>(c) == -1) {
- // One of the many cases where a critical exception error has occurred
- return names[8];
- }
- return names[9];
- }
- inline bool is_indeterminate_call_failure(call_status c) {
- switch (c) {
- case call_status::ok:
- case call_status::yielded:
- case call_status::runtime:
- case call_status::memory:
- case call_status::handler:
- case call_status::gc:
- case call_status::syntax:
- case call_status::file:
- return false;
- }
- return true;
- }
- inline const std::string& to_string(load_status c) {
- static const std::array<std::string, 7> names {
- { "ok", "memory", "gc", "syntax", "file", "CRITICAL_EXCEPTION_FAILURE", "CRITICAL_INDETERMINATE_STATE_FAILURE" }
- };
- switch (c) {
- case load_status::ok:
- return names[0];
- case load_status::memory:
- return names[1];
- case load_status::gc:
- return names[2];
- case load_status::syntax:
- return names[3];
- case load_status::file:
- return names[4];
- }
- if (static_cast<int>(c) == -1) {
- // One of the many cases where a critical exception error has occurred
- return names[5];
- }
- return names[6];
- }
- inline const std::string& to_string(load_mode c) {
- static const std::array<std::string, 3> names { {
- "bt",
- "t",
- "b",
- } };
- return names[static_cast<std::size_t>(c)];
- }
- enum class meta_function : unsigned {
- construct,
- index,
- new_index,
- mode,
- call,
- call_function = call,
- metatable,
- to_string,
- length,
- unary_minus,
- addition,
- subtraction,
- multiplication,
- division,
- modulus,
- power_of,
- involution = power_of,
- concatenation,
- equal_to,
- less_than,
- less_than_or_equal_to,
- garbage_collect,
- floor_division,
- bitwise_left_shift,
- bitwise_right_shift,
- bitwise_not,
- bitwise_and,
- bitwise_or,
- bitwise_xor,
- pairs,
- ipairs,
- next,
- type,
- type_info,
- call_construct,
- storage,
- gc_names,
- static_index,
- static_new_index,
- };
- typedef meta_function meta_method;
- inline const std::array<std::string, 37>& meta_function_names() {
- static const std::array<std::string, 37> names = { { "new",
- "__index",
- "__newindex",
- "__mode",
- "__call",
- "__metatable",
- "__tostring",
- "__len",
- "__unm",
- "__add",
- "__sub",
- "__mul",
- "__div",
- "__mod",
- "__pow",
- "__concat",
- "__eq",
- "__lt",
- "__le",
- "__gc",
- "__idiv",
- "__shl",
- "__shr",
- "__bnot",
- "__band",
- "__bor",
- "__bxor",
- "__pairs",
- "__ipairs",
- "next",
- "__type",
- "__typeinfo",
- "__sol.call_new",
- "__sol.storage",
- "__sol.gc_names",
- "__sol.static_index",
- "__sol.static_new_index" } };
- return names;
- }
- inline const std::string& to_string(meta_function mf) {
- return meta_function_names()[static_cast<std::size_t>(mf)];
- }
- inline type type_of(lua_State* L, int index) {
- return static_cast<type>(lua_type(L, index));
- }
- inline std::string type_name(lua_State* L, type t) {
- return lua_typename(L, static_cast<int>(t));
- }
- template <typename T>
- struct is_stateless_lua_reference
- : std::integral_constant<bool,
- (std::is_base_of_v<stateless_stack_reference, T> || std::is_base_of_v<stateless_reference, T>)&&(
- !std::is_base_of_v<stack_reference, T> && !std::is_base_of_v<reference, T> && !std::is_base_of_v<main_reference, T>)> { };
- template <typename T>
- inline constexpr bool is_stateless_lua_reference_v = is_stateless_lua_reference<T>::value;
- template <typename T>
- struct is_lua_reference
- : std::integral_constant<bool,
- std::is_base_of_v<reference,
- T> || std::is_base_of_v<main_reference, T> || std::is_base_of_v<stack_reference, T> || std::is_base_of_v<stateless_stack_reference, T> || std::is_base_of_v<stateless_reference, T>> {
- };
- template <typename T>
- inline constexpr bool is_lua_reference_v = is_lua_reference<T>::value;
- template <typename T>
- struct is_lua_reference_or_proxy : std::integral_constant<bool, is_lua_reference_v<T> || meta::is_specialization_of_v<T, table_proxy>> { };
- template <typename T>
- inline constexpr bool is_lua_reference_or_proxy_v = is_lua_reference_or_proxy<T>::value;
- template <typename T>
- struct is_transparent_argument
- : std::integral_constant<bool,
- std::is_same_v<meta::unqualified_t<T>,
- this_state> || std::is_same_v<meta::unqualified_t<T>, this_main_state> || std::is_same_v<meta::unqualified_t<T>, this_environment> || std::is_same_v<meta::unqualified_t<T>, variadic_args>> {
- };
- template <typename T>
- constexpr inline bool is_transparent_argument_v = is_transparent_argument<T>::value;
- template <typename T>
- struct is_variadic_arguments : meta::any<std::is_same<T, variadic_args>, meta::is_optional<T>> { };
- template <typename T>
- struct is_container
- : std::integral_constant<bool,
- !std::is_same_v<state_view,
- T> && !std::is_same_v<state, T> && !meta::is_initializer_list_v<T> && !meta::is_string_like_v<T> && !meta::is_string_literal_array_v<T> && !is_transparent_argument_v<T> && !is_lua_reference_v<T> && (meta::has_begin_end_v<T> || std::is_array_v<T>)> {
- };
- template <typename T>
- constexpr inline bool is_container_v = is_container<T>::value;
- template <typename T>
- struct is_to_stringable : meta::any<meta::supports_to_string_member<meta::unqualified_t<T>>, meta::supports_adl_to_string<meta::unqualified_t<T>>,
- meta::supports_op_left_shift<std::ostream, meta::unqualified_t<T>>> { };
- template <typename T>
- inline constexpr bool is_to_stringable_v = is_to_stringable<T>::value;
- template <typename T>
- struct is_callable : std::true_type { };
- template <typename T>
- inline constexpr bool is_callable_v = is_callable<T>::value;
- namespace detail {
- template <typename T, typename = void>
- struct lua_type_of : std::integral_constant<type, type::userdata> { };
- template <typename C, typename T, typename A>
- struct lua_type_of<std::basic_string<C, T, A>> : std::integral_constant<type, type::string> { };
- template <typename C, typename T>
- struct lua_type_of<basic_string_view<C, T>> : std::integral_constant<type, type::string> { };
- template <std::size_t N>
- struct lua_type_of<char[N]> : std::integral_constant<type, type::string> { };
- template <std::size_t N>
- struct lua_type_of<wchar_t[N]> : std::integral_constant<type, type::string> { };
- #if SOL_IS_ON(SOL_CHAR8_T)
- template <std::size_t N>
- struct lua_type_of<char8_t[N]> : std::integral_constant<type, type::string> { };
- #endif
- template <std::size_t N>
- struct lua_type_of<char16_t[N]> : std::integral_constant<type, type::string> { };
- template <std::size_t N>
- struct lua_type_of<char32_t[N]> : std::integral_constant<type, type::string> { };
- template <>
- struct lua_type_of<char> : std::integral_constant<type, type::string> { };
- template <>
- struct lua_type_of<wchar_t> : std::integral_constant<type, type::string> { };
- #if SOL_IS_ON(SOL_CHAR8_T)
- template <>
- struct lua_type_of<char8_t> : std::integral_constant<type, type::string> { };
- #endif
- template <>
- struct lua_type_of<char16_t> : std::integral_constant<type, type::string> { };
- template <>
- struct lua_type_of<char32_t> : std::integral_constant<type, type::string> { };
- template <>
- struct lua_type_of<const char*> : std::integral_constant<type, type::string> { };
- template <>
- struct lua_type_of<const wchar_t*> : std::integral_constant<type, type::string> { };
- #if SOL_IS_ON(SOL_CHAR8_T)
- template <>
- struct lua_type_of<const char8_t*> : std::integral_constant<type, type::string> { };
- #endif
- template <>
- struct lua_type_of<const char16_t*> : std::integral_constant<type, type::string> { };
- template <>
- struct lua_type_of<const char32_t*> : std::integral_constant<type, type::string> { };
- template <>
- struct lua_type_of<bool> : std::integral_constant<type, type::boolean> { };
- template <>
- struct lua_type_of<lua_nil_t> : std::integral_constant<type, type::lua_nil> { };
- template <>
- struct lua_type_of<nullopt_t> : std::integral_constant<type, type::lua_nil> { };
- template <>
- struct lua_type_of<lua_value> : std::integral_constant<type, type::poly> { };
- template <>
- struct lua_type_of<detail::non_lua_nil_t> : std::integral_constant<type, type::poly> { };
- template <>
- struct lua_type_of<std::nullptr_t> : std::integral_constant<type, type::lua_nil> { };
- template <>
- struct lua_type_of<error> : std::integral_constant<type, type::string> { };
- template <bool b, typename Base>
- struct lua_type_of<basic_table_core<b, Base>> : std::integral_constant<type, type::table> { };
- template <typename Base>
- struct lua_type_of<basic_lua_table<Base>> : std::integral_constant<type, type::table> { };
- template <typename Base>
- struct lua_type_of<basic_metatable<Base>> : std::integral_constant<type, type::table> { };
- template <typename T, typename Base>
- struct lua_type_of<basic_usertype<T, Base>> : std::integral_constant<type, type::table> { };
- template <>
- struct lua_type_of<metatable_key_t> : std::integral_constant<type, type::table> { };
- template <typename B>
- struct lua_type_of<basic_environment<B>> : std::integral_constant<type, type::poly> { };
- template <>
- struct lua_type_of<env_key_t> : std::integral_constant<type, type::poly> { };
- template <>
- struct lua_type_of<new_table> : std::integral_constant<type, type::table> { };
- template <typename T>
- struct lua_type_of<as_table_t<T>> : std::integral_constant<type, type::table> { };
- template <typename T>
- struct lua_type_of<std::initializer_list<T>> : std::integral_constant<type, type::table> { };
- template <bool b>
- struct lua_type_of<basic_reference<b>> : std::integral_constant<type, type::poly> { };
- template <>
- struct lua_type_of<stack_reference> : std::integral_constant<type, type::poly> { };
- template <typename Base>
- struct lua_type_of<basic_object<Base>> : std::integral_constant<type, type::poly> { };
- template <typename... Args>
- struct lua_type_of<std::tuple<Args...>> : std::integral_constant<type, type::poly> { };
- template <typename A, typename B>
- struct lua_type_of<std::pair<A, B>> : std::integral_constant<type, type::poly> { };
- template <>
- struct lua_type_of<void*> : std::integral_constant<type, type::lightuserdata> { };
- template <>
- struct lua_type_of<const void*> : std::integral_constant<type, type::lightuserdata> { };
- template <>
- struct lua_type_of<lightuserdata_value> : std::integral_constant<type, type::lightuserdata> { };
- template <>
- struct lua_type_of<userdata_value> : std::integral_constant<type, type::userdata> { };
- template <typename T>
- struct lua_type_of<light<T>> : std::integral_constant<type, type::lightuserdata> { };
- template <typename T>
- struct lua_type_of<user<T>> : std::integral_constant<type, type::userdata> { };
- template <typename Base>
- struct lua_type_of<basic_lightuserdata<Base>> : std::integral_constant<type, type::lightuserdata> { };
- template <typename Base>
- struct lua_type_of<basic_userdata<Base>> : std::integral_constant<type, type::userdata> { };
- template <>
- struct lua_type_of<lua_CFunction> : std::integral_constant<type, type::function> { };
- template <>
- struct lua_type_of<std::remove_pointer_t<lua_CFunction>> : std::integral_constant<type, type::function> { };
- template <typename Base, bool aligned>
- struct lua_type_of<basic_function<Base, aligned>> : std::integral_constant<type, type::function> { };
- template <typename Base, bool aligned, typename Handler>
- struct lua_type_of<basic_protected_function<Base, aligned, Handler>> : std::integral_constant<type, type::function> { };
- template <typename Base>
- struct lua_type_of<basic_coroutine<Base>> : std::integral_constant<type, type::function> { };
- template <typename Base>
- struct lua_type_of<basic_thread<Base>> : std::integral_constant<type, type::thread> { };
- template <typename Signature>
- struct lua_type_of<std::function<Signature>> : std::integral_constant<type, type::function> { };
- template <typename T>
- struct lua_type_of<optional<T>> : std::integral_constant<type, type::poly> { };
- template <typename T>
- struct lua_type_of<std::optional<T>> : std::integral_constant<type, type::poly> { };
- template <>
- struct lua_type_of<variadic_args> : std::integral_constant<type, type::poly> { };
- template <>
- struct lua_type_of<variadic_results> : std::integral_constant<type, type::poly> { };
- template <>
- struct lua_type_of<stack_count> : std::integral_constant<type, type::poly> { };
- template <>
- struct lua_type_of<this_state> : std::integral_constant<type, type::poly> { };
- template <>
- struct lua_type_of<this_main_state> : std::integral_constant<type, type::poly> { };
- template <>
- struct lua_type_of<this_environment> : std::integral_constant<type, type::poly> { };
- template <>
- struct lua_type_of<type> : std::integral_constant<type, type::poly> { };
- #if SOL_IS_ON(SOL_GET_FUNCTION_POINTER_UNSAFE)
- template <typename T>
- struct lua_type_of<T*> : std::integral_constant<type, std::is_function_v<T> ? type::function : type::userdata> { };
- #else
- template <typename T>
- struct lua_type_of<T*> : std::integral_constant<type, type::userdata> { };
- #endif
- template <typename T>
- struct lua_type_of<T, std::enable_if_t<std::is_arithmetic_v<T> || std::is_same_v<T, lua_Number> || std::is_same_v<T, lua_Integer>>>
- : std::integral_constant<type, type::number> { };
- template <typename T>
- struct lua_type_of<T, std::enable_if_t<std::is_function_v<T>>> : std::integral_constant<type, type::function> { };
- template <typename T>
- struct lua_type_of<T, std::enable_if_t<std::is_enum_v<T>>> : std::integral_constant<type, type::number> { };
- template <>
- struct lua_type_of<meta_function> : std::integral_constant<type, type::string> { };
- #if SOL_IS_ON(SOL_STD_VARIANT)
- template <typename... Tn>
- struct lua_type_of<std::variant<Tn...>> : std::integral_constant<type, type::poly> { };
- #endif // std::variant deployment sucks on Clang
- template <typename T>
- struct lua_type_of<nested<T>> : meta::conditional_t<::sol::is_container_v<T>, std::integral_constant<type, type::table>, lua_type_of<T>> { };
- template <typename C, C v, template <typename...> class V, typename... Args>
- struct accumulate : std::integral_constant<C, v> { };
- template <typename C, C v, template <typename...> class V, typename T, typename... Args>
- struct accumulate<C, v, V, T, Args...> : accumulate<C, v + V<T>::value, V, Args...> { };
- template <typename C, C v, template <typename...> class V, typename List>
- struct accumulate_list;
- template <typename C, C v, template <typename...> class V, typename... Args>
- struct accumulate_list<C, v, V, types<Args...>> : accumulate<C, v, V, Args...> { };
- } // namespace detail
- template <typename T>
- struct lua_type_of : detail::lua_type_of<T> {
- typedef int SOL_INTERNAL_UNSPECIALIZED_MARKER_;
- };
- template <typename T>
- inline constexpr type lua_type_of_v = lua_type_of<T>::value;
- template <typename T>
- struct lua_size : std::integral_constant<int, 1> {
- typedef int SOL_INTERNAL_UNSPECIALIZED_MARKER_;
- };
- template <typename A, typename B>
- struct lua_size<std::pair<A, B>> : std::integral_constant<int, lua_size<A>::value + lua_size<B>::value> { };
- template <typename... Args>
- struct lua_size<std::tuple<Args...>> : std::integral_constant<int, detail::accumulate<int, 0, lua_size, Args...>::value> { };
- template <typename T>
- inline constexpr int lua_size_v = lua_size<T>::value;
- namespace detail {
- // MSVC's decltype detection is broken, which breaks other
- // parts of the code. So we add more workarounds. The moment it's fixed,
- // we take it away and break everyone that doesn't upgrade.
- template <typename T>
- using is_msvc_callable_rigged = meta::any<meta::is_specialization_of<T, push_invoke_t>, meta::is_specialization_of<T, as_table_t>,
- meta::is_specialization_of<T, forward_as_value_t>, meta::is_specialization_of<T, as_container_t>, meta::is_specialization_of<T, nested>,
- meta::is_specialization_of<T, yielding_t>>;
- template <typename T>
- inline constexpr bool is_msvc_callable_rigged_v = is_msvc_callable_rigged<T>::value;
- } // namespace detail
- template <typename T>
- struct is_lua_primitive : std::integral_constant<bool,
- type::userdata != lua_type_of_v<T> // cf
- || ((type::userdata == lua_type_of_v<T>) // cf
- &&meta::meta_detail::has_internal_marker_v<lua_type_of<T>> // cf
- && !meta::meta_detail::has_internal_marker_v<lua_size<T>>) // cf
- || is_lua_reference_or_proxy_v<T> // cf
- || meta::is_specialization_of_v<T, std::tuple> // cf
- || meta::is_specialization_of_v<T, std::pair>> { };
- template <typename T>
- constexpr inline bool is_lua_primitive_v = is_lua_primitive<T>::value;
- template <typename T>
- struct is_value_semantic_for_function
- #if SOL_IS_ON(SOL_FUNCTION_CALL_VALUE_SEMANTICS)
- : std::true_type {
- };
- #else
- : std::false_type {
- };
- #endif
- template <typename T>
- constexpr inline bool is_value_semantic_for_function_v = is_value_semantic_for_function<T>::value;
- template <typename T>
- struct is_main_threaded : std::is_base_of<main_reference, T> { };
- template <typename T>
- inline constexpr bool is_main_threaded_v = is_main_threaded<T>::value;
- template <typename T>
- struct is_stack_based : std::is_base_of<stack_reference, T> { };
- template <>
- struct is_stack_based<variadic_args> : std::true_type { };
- template <>
- struct is_stack_based<unsafe_function_result> : std::true_type { };
- template <>
- struct is_stack_based<protected_function_result> : std::true_type { };
- template <>
- struct is_stack_based<stack_proxy> : std::true_type { };
- template <>
- struct is_stack_based<stack_proxy_base> : std::true_type { };
- template <>
- struct is_stack_based<stack_count> : std::true_type { };
- template <typename T>
- constexpr inline bool is_stack_based_v = is_stack_based<T>::value;
- template <typename T>
- struct is_lua_primitive<T*> : std::true_type { };
- template <>
- struct is_lua_primitive<unsafe_function_result> : std::true_type { };
- template <>
- struct is_lua_primitive<protected_function_result> : std::true_type { };
- template <typename T>
- struct is_lua_primitive<std::reference_wrapper<T>> : std::true_type { };
- template <typename T>
- struct is_lua_primitive<user<T>> : std::true_type { };
- template <typename T>
- struct is_lua_primitive<light<T>> : is_lua_primitive<T*> { };
- template <typename T>
- struct is_lua_primitive<optional<T>> : std::true_type { };
- template <typename T>
- struct is_lua_primitive<std::optional<T>> : std::true_type { };
- template <typename T>
- struct is_lua_primitive<as_table_t<T>> : std::true_type { };
- template <typename T>
- struct is_lua_primitive<nested<T>> : std::true_type { };
- template <>
- struct is_lua_primitive<userdata_value> : std::true_type { };
- template <>
- struct is_lua_primitive<lightuserdata_value> : std::true_type { };
- template <>
- struct is_lua_primitive<stack_proxy> : std::true_type { };
- template <>
- struct is_lua_primitive<stack_proxy_base> : std::true_type { };
- template <typename T>
- struct is_lua_primitive<non_null<T>> : is_lua_primitive<T*> { };
- template <typename T>
- struct is_lua_index : std::is_integral<T> { };
- template <>
- struct is_lua_index<raw_index> : std::true_type { };
- template <>
- struct is_lua_index<absolute_index> : std::true_type { };
- template <>
- struct is_lua_index<ref_index> : std::true_type { };
- template <>
- struct is_lua_index<upvalue_index> : std::true_type { };
- template <typename Signature>
- struct lua_bind_traits : meta::bind_traits<Signature> {
- private:
- typedef meta::bind_traits<Signature> base_t;
- public:
- typedef std::integral_constant<bool, meta::count_for<is_variadic_arguments, typename base_t::args_list>::value != 0> runtime_variadics_t;
- static const std::size_t true_arity = base_t::arity;
- static const std::size_t arity = detail::accumulate_list<std::size_t, 0, lua_size, typename base_t::args_list>::value
- - meta::count_for<is_transparent_argument, typename base_t::args_list>::value;
- static const std::size_t true_free_arity = base_t::free_arity;
- static const std::size_t free_arity = detail::accumulate_list<std::size_t, 0, lua_size, typename base_t::free_args_list>::value
- - meta::count_for<is_transparent_argument, typename base_t::args_list>::value;
- };
- template <typename T>
- struct is_table : std::false_type { };
- template <bool x, typename T>
- struct is_table<basic_table_core<x, T>> : std::true_type { };
- template <typename T>
- struct is_table<basic_lua_table<T>> : std::true_type { };
- template <typename T>
- inline constexpr bool is_table_v = is_table<T>::value;
- template <typename T>
- struct is_global_table : std::false_type { };
- template <typename T>
- struct is_global_table<basic_table_core<true, T>> : std::true_type { };
- template <typename T>
- inline constexpr bool is_global_table_v = is_global_table<T>::value;
- template <typename T>
- struct is_stack_table : std::false_type { };
- template <bool x, typename T>
- struct is_stack_table<basic_table_core<x, T>> : std::integral_constant<bool, std::is_base_of_v<stack_reference, T>> { };
- template <typename T>
- struct is_stack_table<basic_lua_table<T>> : std::integral_constant<bool, std::is_base_of_v<stack_reference, T>> { };
- template <typename T>
- inline constexpr bool is_stack_table_v = is_stack_table<T>::value;
- template <typename T>
- struct is_function : std::false_type { };
- template <typename T, bool aligned>
- struct is_function<basic_function<T, aligned>> : std::true_type { };
- template <typename T, bool aligned, typename Handler>
- struct is_function<basic_protected_function<T, aligned, Handler>> : std::true_type { };
- template <typename T>
- using is_lightuserdata = meta::is_specialization_of<T, basic_lightuserdata>;
- template <typename T>
- inline constexpr bool is_lightuserdata_v = is_lightuserdata<T>::value;
- template <typename T>
- using is_userdata = meta::is_specialization_of<T, basic_userdata>;
- template <typename T>
- inline constexpr bool is_userdata_v = is_userdata<T>::value;
- template <typename T>
- using is_environment = std::integral_constant<bool, is_userdata_v<T> || is_table_v<T> || meta::is_specialization_of_v<T, basic_environment>>;
- template <typename T>
- inline constexpr bool is_environment_v = is_environment<T>::value;
- template <typename T>
- using is_table_like = std::integral_constant<bool, is_table_v<T> || is_environment_v<T> || is_userdata_v<T>>;
- template <typename T>
- inline constexpr bool is_table_like_v = is_table_like<T>::value;
- template <typename T>
- struct is_automagical
- : std::integral_constant<bool,
- (SOL_IS_ON(SOL_DEFAULT_AUTOMAGICAL_USERTYPES))
- || (std::is_array_v<
- meta::unqualified_t<T>> || (!std::is_same_v<meta::unqualified_t<T>, state> && !std::is_same_v<meta::unqualified_t<T>, state_view>))> {
- };
- template <typename T>
- inline type type_of() {
- return lua_type_of<meta::unqualified_t<T>>::value;
- }
- namespace detail {
- template <typename T>
- struct is_non_factory_constructor : std::false_type { };
- template <typename... Args>
- struct is_non_factory_constructor<constructors<Args...>> : std::true_type { };
- template <typename... Args>
- struct is_non_factory_constructor<constructor_wrapper<Args...>> : std::true_type { };
- template <>
- struct is_non_factory_constructor<no_construction> : std::true_type { };
- template <typename T>
- inline constexpr bool is_non_factory_constructor_v = is_non_factory_constructor<T>::value;
- template <typename T>
- struct is_constructor : is_non_factory_constructor<T> { };
- template <typename... Args>
- struct is_constructor<factory_wrapper<Args...>> : std::true_type { };
- template <typename T>
- struct is_constructor<protect_t<T>> : is_constructor<meta::unqualified_t<T>> { };
- template <typename F, typename... Policies>
- struct is_constructor<policy_wrapper<F, Policies...>> : is_constructor<meta::unqualified_t<F>> { };
- template <typename T>
- inline constexpr bool is_constructor_v = is_constructor<T>::value;
- template <typename... Args>
- using any_is_constructor = meta::any<is_constructor<meta::unqualified_t<Args>>...>;
- template <typename... Args>
- inline constexpr bool any_is_constructor_v = any_is_constructor<Args...>::value;
- template <typename T>
- struct is_destructor : std::false_type { };
- template <typename Fx>
- struct is_destructor<destructor_wrapper<Fx>> : std::true_type { };
- template <typename... Args>
- using any_is_destructor = meta::any<is_destructor<meta::unqualified_t<Args>>...>;
- template <typename... Args>
- inline constexpr bool any_is_destructor_v = any_is_destructor<Args...>::value;
- } // namespace detail
- template <typename T>
- using is_lua_c_function = meta::any<std::is_same<lua_CFunction, T>, std::is_same<detail::lua_CFunction_noexcept, T>, std::is_same<lua_CFunction_ref, T>>;
- template <typename T>
- inline constexpr bool is_lua_c_function_v = is_lua_c_function<T>::value;
- enum class automagic_flags : unsigned {
- none = 0x000u,
- default_constructor = 0x001,
- destructor = 0x002u,
- pairs_operator = 0x004u,
- to_string_operator = 0x008u,
- call_operator = 0x010u,
- less_than_operator = 0x020u,
- less_than_or_equal_to_operator = 0x040u,
- length_operator = 0x080u,
- equal_to_operator = 0x100u,
- all = default_constructor | destructor | pairs_operator | to_string_operator | call_operator | less_than_operator | less_than_or_equal_to_operator
- | length_operator | equal_to_operator
- };
- inline constexpr automagic_flags operator|(automagic_flags left, automagic_flags right) noexcept {
- return static_cast<automagic_flags>(
- static_cast<std::underlying_type_t<automagic_flags>>(left) | static_cast<std::underlying_type_t<automagic_flags>>(right));
- }
- inline constexpr automagic_flags operator&(automagic_flags left, automagic_flags right) noexcept {
- return static_cast<automagic_flags>(
- static_cast<std::underlying_type_t<automagic_flags>>(left) & static_cast<std::underlying_type_t<automagic_flags>>(right));
- }
- inline constexpr automagic_flags& operator|=(automagic_flags& left, automagic_flags right) noexcept {
- left = left | right;
- return left;
- }
- inline constexpr automagic_flags& operator&=(automagic_flags& left, automagic_flags right) noexcept {
- left = left & right;
- return left;
- }
- template <typename Left, typename Right>
- constexpr bool has_flag(Left left, Right right) noexcept {
- return (left & right) == right;
- }
- template <typename Left, typename Right>
- constexpr bool has_any_flag(Left left, Right right) noexcept {
- return (left & right) != static_cast<Left>(static_cast<std::underlying_type_t<Left>>(0));
- }
- template <typename Left, typename Right>
- constexpr auto clear_flags(Left left, Right right) noexcept {
- return static_cast<Left>(static_cast<std::underlying_type_t<Left>>(left) & ~static_cast<std::underlying_type_t<Right>>(right));
- }
- struct automagic_enrollments {
- bool default_constructor = true;
- bool destructor = true;
- bool pairs_operator = true;
- bool to_string_operator = true;
- bool call_operator = true;
- bool less_than_operator = true;
- bool less_than_or_equal_to_operator = true;
- bool length_operator = true;
- bool equal_to_operator = true;
- };
- template <automagic_flags compile_time_defaults = automagic_flags::all>
- struct constant_automagic_enrollments : public automagic_enrollments { };
- } // namespace sol
- #endif // SOL_TYPES_HPP
|