1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557
|
// 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
|