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 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016
|
/*
* Copyright 2025 Vsevolod Stakhov
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* Copyright (c) 2014, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL AUTHOR BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/**
* @file lua ucl bindings
*/
#include "ucl.h"
#include "ucl_internal.h"
#include "lua_ucl.h"
#include "kvec.h"
#include <strings.h>
/***
* @module ucl
* This lua module allows to parse objects from strings and to store data into
* ucl objects. It uses `libucl` C library to parse and manipulate with ucl objects.
* @example
local ucl = require("ucl")
local parser = ucl.parser()
local res,err = parser:parse_string('{key=value}')
if not res then
print('parser error: ' .. err)
else
local obj = parser:get_object()
local got = ucl.to_format(obj, 'json')
endif
local table = {
str = 'value',
num = 100500,
null = ucl.null,
func = function ()
return 'huh'
end
}
print(ucl.to_format(table, 'ucl'))
-- Output:
--[[
num = 100500;
str = "value";
null = null;
func = "huh";
--]]
*/
#define PARSER_META "ucl.parser.meta"
#define EMITTER_META "ucl.emitter.meta"
#define NULL_META "ucl.null.meta"
#define ITER_META "ucl.object.iter"
#define OBJECT_META "ucl.object.meta"
#define UCL_OBJECT_TYPE_META "ucl.type.object"
#define UCL_ARRAY_TYPE_META "ucl.type.array"
#define UCL_IMPL_ARRAY_TYPE_META "ucl.type.impl_array"
static int ucl_object_lua_push_array(lua_State *L, const ucl_object_t *obj, int flags);
static int ucl_object_lua_push_scalar(lua_State *L, const ucl_object_t *obj, int flags);
static int ucl_object_push_lua_common(lua_State *L, const ucl_object_t *obj, int flags);
static ucl_object_t *ucl_object_lua_fromtable(lua_State *L, int idx, ucl_string_flags_t flags);
static ucl_object_t *ucl_object_lua_fromelt(lua_State *L, int idx, ucl_string_flags_t flags);
static ucl_object_t *lua_ucl_object_get(lua_State *L, int index);
static int lua_ucl_type(lua_State *L);
static int lua_ucl_pairs(lua_State *L);
static int lua_ucl_ipairs(lua_State *L);
static int lua_ucl_len(lua_State *L);
static int lua_ucl_index(lua_State *L);
static int lua_ucl_newindex(lua_State *L);
static int lua_ucl_object_tostring(lua_State *L);
static int lua_ucl_object_unwrap(lua_State *L);
static int lua_ucl_object_validate(lua_State *L);
static void *ucl_null;
struct rspamd_compat_lua_text {
const char *start;
unsigned int len;
unsigned int flags;
};
enum lua_ucl_push_flags {
LUA_UCL_DEFAULT_FLAGS = 0,
LUA_UCL_ALLOW_ARRAY = (1u << 0u),
LUA_UCL_CONVERT_NIL = (1u << 1u),
};
/**
* Push a single element of an object to lua
* @param L
* @param key
* @param obj
*/
static void
ucl_object_lua_push_element(lua_State *L, const char *key,
const ucl_object_t *obj, int flags)
{
lua_pushstring(L, key);
ucl_object_push_lua_common(L, obj, flags | LUA_UCL_ALLOW_ARRAY);
lua_settable(L, -3);
}
static void
lua_ucl_userdata_dtor(void *ud)
{
struct ucl_lua_funcdata *fd = (struct ucl_lua_funcdata *) ud;
luaL_unref(fd->L, LUA_REGISTRYINDEX, fd->idx);
if (fd->ret != NULL) {
free(fd->ret);
}
free(fd);
}
static const char *
lua_ucl_userdata_emitter(void *ud)
{
struct ucl_lua_funcdata *fd = (struct ucl_lua_funcdata *) ud;
const char *out = "";
lua_rawgeti(fd->L, LUA_REGISTRYINDEX, fd->idx);
lua_pcall(fd->L, 0, 1, 0);
out = lua_tostring(fd->L, -1);
if (out != NULL) {
/* We need to store temporary string in a more appropriate place */
if (fd->ret) {
free(fd->ret);
}
fd->ret = strdup(out);
}
lua_settop(fd->L, 0);
return fd->ret;
}
/**
* Push a single object to lua
* @param L
* @param obj
* @return
*/
static int
ucl_object_lua_push_object(lua_State *L, const ucl_object_t *obj,
int flags)
{
const ucl_object_t *cur;
ucl_object_iter_t it = NULL;
if ((flags & LUA_UCL_ALLOW_ARRAY) && obj->next != NULL) {
/* Actually we need to push this as an array */
return ucl_object_lua_push_array(L, obj, flags);
}
lua_createtable(L, 0, obj->len);
it = NULL;
while ((cur = ucl_object_iterate(obj, &it, true)) != NULL) {
ucl_object_lua_push_element(L, ucl_object_key(cur), cur, flags);
}
luaL_getmetatable(L, UCL_OBJECT_TYPE_META);
lua_setmetatable(L, -2);
return 1;
}
/**
* Push an array to lua as table indexed by integers
* @param L
* @param obj
* @return
*/
static int
ucl_object_lua_push_array(lua_State *L, const ucl_object_t *obj, int flags)
{
const ucl_object_t *cur;
ucl_object_iter_t it;
int i = 1, nelt = 0;
if (obj->type == UCL_ARRAY) {
nelt = obj->len;
it = ucl_object_iterate_new(obj);
lua_createtable(L, nelt, 0);
while ((cur = ucl_object_iterate_safe(it, true))) {
ucl_object_push_lua(L, cur, (flags & ~LUA_UCL_ALLOW_ARRAY));
lua_rawseti(L, -2, i);
i++;
}
luaL_getmetatable(L, UCL_ARRAY_TYPE_META);
lua_setmetatable(L, -2);
ucl_object_iterate_free(it);
}
else {
/* Optimize allocation by preallocation of table */
LL_FOREACH(obj, cur)
{
nelt++;
}
lua_createtable(L, nelt, 0);
LL_FOREACH(obj, cur)
{
ucl_object_push_lua(L, cur, (flags & ~LUA_UCL_ALLOW_ARRAY));
lua_rawseti(L, -2, i);
i++;
}
luaL_getmetatable(L, UCL_IMPL_ARRAY_TYPE_META);
lua_setmetatable(L, -2);
}
return 1;
}
/**
* Push a simple object to lua depending on its actual type
*/
static int
ucl_object_lua_push_scalar(lua_State *L, const ucl_object_t *obj,
int flags)
{
struct ucl_lua_funcdata *fd;
if ((flags & LUA_UCL_ALLOW_ARRAY) && obj->next != NULL) {
/* Actually we need to push this as an array */
return ucl_object_lua_push_array(L, obj, flags);
}
switch (obj->type) {
case UCL_BOOLEAN:
lua_pushboolean(L, ucl_obj_toboolean(obj));
break;
case UCL_STRING:
lua_pushlstring(L, ucl_obj_tostring(obj), obj->len);
break;
case UCL_INT:
#if LUA_VERSION_NUM >= 501
lua_pushinteger(L, ucl_obj_toint(obj));
#else
lua_pushnumber(L, ucl_obj_toint(obj));
#endif
break;
case UCL_FLOAT:
case UCL_TIME:
lua_pushnumber(L, ucl_obj_todouble(obj));
break;
case UCL_NULL:
if (flags & LUA_UCL_CONVERT_NIL) {
lua_pushboolean(L, false);
}
else {
lua_getfield(L, LUA_REGISTRYINDEX, "ucl.null");
}
break;
case UCL_USERDATA:
fd = (struct ucl_lua_funcdata *) obj->value.ud;
lua_rawgeti(L, LUA_REGISTRYINDEX, fd->idx);
break;
default:
lua_pushnil(L);
break;
}
return 1;
}
static int
ucl_object_push_lua_common(lua_State *L, const ucl_object_t *obj, int flags)
{
switch (obj->type) {
case UCL_OBJECT:
return ucl_object_lua_push_object(L, obj, flags);
case UCL_ARRAY:
return ucl_object_lua_push_array(L, obj, flags);
default:
return ucl_object_lua_push_scalar(L, obj, flags);
}
}
/***
* @function ucl_object_push_lua(L, obj, allow_array)
* This is a `C` function to push `UCL` object as lua variable. This function
* converts `obj` to lua representation using the following conversions:
*
* - *scalar* values are directly presented by lua objects
* - *userdata* values are converted to lua function objects using `LUA_REGISTRYINDEX`,
* this can be used to pass functions from lua to c and vice-versa
* - *arrays* are converted to lua tables with numeric indicies suitable for `ipairs` iterations
* - *objects* are converted to lua tables with string indicies
* @param {lua_State} L lua state pointer
* @param {ucl_object_t} obj object to push
* @param {bool} allow_array expand implicit arrays (should be true for all but partial arrays)
* @return {int} `1` if an object is pushed to lua
*/
int ucl_object_push_lua(lua_State *L, const ucl_object_t *obj, bool allow_array)
{
return ucl_object_push_lua_common(L, obj,
allow_array ? LUA_UCL_ALLOW_ARRAY : LUA_UCL_DEFAULT_FLAGS);
}
int ucl_object_push_lua_filter_nil(lua_State *L, const ucl_object_t *obj, bool allow_array)
{
return ucl_object_push_lua_common(L, obj,
allow_array ? (LUA_UCL_ALLOW_ARRAY | LUA_UCL_CONVERT_NIL) : (LUA_UCL_DEFAULT_FLAGS | LUA_UCL_CONVERT_NIL));
}
/**
* Parse lua table into object top
* @param L
* @param top
* @param idx
*/
static ucl_object_t *
ucl_object_lua_fromtable(lua_State *L, int idx, ucl_string_flags_t flags)
{
ucl_object_t *obj, *top = NULL, *cur;
size_t keylen;
const char *k;
bool is_array = true, is_implicit = false, found_mt = false;
size_t max = 0, nelts = 0;
if (idx < 0) {
/* For negative indicies we want to invert them */
idx = lua_gettop(L) + idx + 1;
}
/* First, we check from metatable */
if (luaL_getmetafield(L, idx, "class") != 0) {
if (lua_type(L, -1) == LUA_TSTRING) {
const char *classname = lua_tostring(L, -1);
if (strcmp(classname, UCL_OBJECT_TYPE_META) == 0) {
is_array = false;
found_mt = true;
}
else if (strcmp(classname, UCL_ARRAY_TYPE_META) == 0) {
is_array = true;
found_mt = true;
#if LUA_VERSION_NUM >= 502
max = lua_rawlen(L, idx);
#else
max = lua_objlen(L, idx);
#endif
nelts = max;
}
else if (strcmp(classname, UCL_IMPL_ARRAY_TYPE_META) == 0) {
is_array = true;
is_implicit = true;
found_mt = true;
#if LUA_VERSION_NUM >= 502
max = lua_rawlen(L, idx);
#else
max = lua_objlen(L, idx);
#endif
nelts = max;
}
}
lua_pop(L, 1);
}
if (!found_mt) {
/* Check for array (it is all inefficient) */
lua_pushnil(L);
while (lua_next(L, idx) != 0) {
lua_pushvalue(L, -2);
if (lua_type(L, -1) == LUA_TNUMBER) {
double num = lua_tonumber(L, -1);
if (num == (int) num) {
if (num > max) {
max = num;
}
}
else {
/* Keys are not integer */
is_array = false;
}
}
else {
/* Keys are not numeric */
is_array = false;
}
lua_pop(L, 2);
nelts++;
}
}
/* Table iterate */
if (is_array) {
int i;
if (!is_implicit) {
top = ucl_object_typed_new(UCL_ARRAY);
ucl_object_reserve(top, nelts);
}
else {
top = NULL;
}
for (i = 1; i <= max; i++) {
lua_pushinteger(L, i);
lua_gettable(L, idx);
obj = ucl_object_lua_fromelt(L, lua_gettop(L), flags);
if (obj != NULL) {
if (is_implicit) {
DL_APPEND(top, obj);
}
else {
ucl_array_append(top, obj);
}
}
lua_pop(L, 1);
}
}
else {
lua_pushnil(L);
top = ucl_object_typed_new(UCL_OBJECT);
ucl_object_reserve(top, nelts);
while (lua_next(L, idx) != 0) {
/* copy key to avoid modifications */
lua_pushvalue(L, -2);
k = lua_tolstring(L, -1, &keylen);
obj = ucl_object_lua_fromelt(L, lua_gettop(L) - 1, flags);
if (obj != NULL) {
ucl_object_insert_key(top, obj, k, keylen, true);
DL_FOREACH(obj, cur)
{
if (cur->keylen == 0) {
cur->keylen = obj->keylen;
cur->key = obj->key;
}
}
}
lua_pop(L, 2);
}
}
return top;
}
/**
* Get a single element from lua to object obj
* @param L
* @param obj
* @param idx
*/
static ucl_object_t *
ucl_object_lua_fromelt(lua_State *L, int idx, ucl_string_flags_t flags)
{
int type;
double num;
ucl_object_t *obj = NULL;
struct ucl_lua_funcdata *fd;
const char *str;
size_t sz;
type = lua_type(L, idx);
switch (type) {
case LUA_TSTRING:
str = lua_tolstring(L, idx, &sz);
if (str) {
/*
* ucl_object_fromstring_common has a `logic` to use strlen if sz is zero
* which is totally broken...
*/
if (sz > 0) {
obj = ucl_object_fromstring_common(str, sz, flags);
}
else {
obj = ucl_object_fromstring_common("", sz, flags);
}
}
else {
obj = ucl_object_typed_new(UCL_NULL);
}
break;
case LUA_TNUMBER:
num = lua_tonumber(L, idx);
if (num == (int64_t) num) {
obj = ucl_object_fromint(num);
}
else {
obj = ucl_object_fromdouble(num);
}
break;
case LUA_TBOOLEAN:
obj = ucl_object_frombool(lua_toboolean(L, idx));
break;
case LUA_TUSERDATA:
if (lua_topointer(L, idx) == ucl_null) {
obj = ucl_object_typed_new(UCL_NULL);
}
else {
/* Assume it is a text like object */
struct rspamd_compat_lua_text *t = lua_touserdata(L, idx);
if (t) {
if (t->len > 0) {
obj = ucl_object_fromstring_common(t->start, t->len, 0);
}
else {
obj = ucl_object_fromstring_common("", 0, 0);
}
/* Binary text */
if (t->flags & (1u << 5u)) {
obj->flags |= UCL_OBJECT_BINARY;
}
}
}
break;
case LUA_TTABLE:
case LUA_TFUNCTION:
case LUA_TTHREAD:
if (luaL_getmetafield(L, idx, "__gen_ucl")) {
if (lua_isfunction(L, -1)) {
lua_settop(L, 3); /* gen, obj, func */
lua_insert(L, 1); /* func, gen, obj */
lua_insert(L, 2); /* func, obj, gen */
lua_call(L, 2, 1);
obj = ucl_object_lua_fromelt(L, 1, flags);
}
lua_pop(L, 2);
}
else {
if (type == LUA_TTABLE) {
lua_rawgeti(L, idx, 0);
if (lua_type(L, -1) == LUA_TUSERDATA) {
/* It is a cloaked ucl object */
obj = lua_ucl_object_get(L, idx);
if (obj) {
obj = ucl_object_ref(obj);
}
}
lua_pop(L, 1);
if (obj == NULL) {
obj = ucl_object_lua_fromtable(L, idx, flags);
}
}
else if (type == LUA_TFUNCTION) {
fd = malloc(sizeof(*fd));
if (fd != NULL) {
lua_pushvalue(L, idx);
fd->L = L;
fd->ret = NULL;
fd->idx = luaL_ref(L, LUA_REGISTRYINDEX);
obj = ucl_object_new_userdata(lua_ucl_userdata_dtor,
lua_ucl_userdata_emitter, (void *) fd);
}
}
}
break;
}
return obj;
}
/**
* @function ucl_object_lua_import(L, idx)
* Extracts ucl object from lua variable at `idx` position,
* @see ucl_object_push_lua for conversion definitions
* @param {lua_state} L lua state machine pointer
* @param {int} idx index where the source variable is placed
* @return {ucl_object_t} new ucl object extracted from lua variable. Reference count of this object is 1,
* this object thus needs to be unref'ed after usage.
*/
ucl_object_t *
ucl_object_lua_import(lua_State *L, int idx)
{
ucl_object_t *obj;
int t;
t = lua_type(L, idx);
switch (t) {
case LUA_TTABLE:
obj = ucl_object_lua_fromtable(L, idx, UCL_STRING_RAW);
break;
default:
obj = ucl_object_lua_fromelt(L, idx, UCL_STRING_RAW);
break;
}
return obj;
}
/**
* @function ucl_object_lua_import_escape(L, idx)
* Extracts ucl object from lua variable at `idx` position escaping JSON strings
* @see ucl_object_push_lua for conversion definitions
* @param {lua_state} L lua state machine pointer
* @param {int} idx index where the source variable is placed
* @return {ucl_object_t} new ucl object extracted from lua variable. Reference count of this object is 1,
* this object thus needs to be unref'ed after usage.
*/
ucl_object_t *
ucl_object_lua_import_escape(lua_State *L, int idx)
{
ucl_object_t *obj;
int t;
t = lua_type(L, idx);
switch (t) {
case LUA_TTABLE:
obj = ucl_object_lua_fromtable(L, idx, UCL_STRING_ESCAPE);
break;
default:
obj = ucl_object_lua_fromelt(L, idx, UCL_STRING_ESCAPE);
break;
}
return obj;
}
static int
lua_ucl_to_string(lua_State *L, const ucl_object_t *obj, enum ucl_emitter type)
{
unsigned char *result;
size_t outlen;
result = ucl_object_emit_len(obj, type, &outlen);
if (result != NULL) {
lua_pushlstring(L, (const char *) result, outlen);
free(result);
}
else {
lua_pushnil(L);
}
return 1;
}
static int
lua_ucl_parser_init(lua_State *L)
{
struct ucl_parser *parser, **pparser;
/*
* We disable file variables and macros by default, as
* the most use cases are parsing of JSON and not of the real
* files. Macros in the parser are very dangerous and should be used
* for trusted data only.
*/
int flags = UCL_PARSER_SAFE_FLAGS;
if (lua_gettop(L) >= 1) {
flags = lua_tonumber(L, 1);
}
parser = ucl_parser_new(flags);
if (parser == NULL) {
lua_pushnil(L);
}
pparser = lua_newuserdata(L, sizeof(parser));
*pparser = parser;
luaL_getmetatable(L, PARSER_META);
lua_setmetatable(L, -2);
return 1;
}
static struct ucl_parser *
lua_ucl_parser_get(lua_State *L, int index)
{
return *((struct ucl_parser **) luaL_checkudata(L, index, PARSER_META));
}
static ucl_object_t *
lua_ucl_object_get(lua_State *L, int index)
{
if (lua_istable(L, index)) {
ucl_object_t *res = NULL;
lua_rawgeti(L, index, 0);
if (lua_isuserdata(L, -1)) {
res = *((ucl_object_t **) lua_touserdata(L, -1));
}
lua_pop(L, 1);
return res;
}
return NULL;
}
void ucl_object_push_lua_unwrapped(lua_State *L, const ucl_object_t *obj)
{
ucl_object_t **pobj;
/* We create a plain lua table with the following elements:
* [0] - ucl object as userdata
* ["method"] - methods
*/
lua_createtable(L, 1, 9);
pobj = lua_newuserdata(L, sizeof(*pobj));
*pobj = ucl_object_ref(obj);
lua_rawseti(L, -2, 0);
lua_pushcfunction(L, lua_ucl_index);
lua_setfield(L, -2, "at");
lua_pushcfunction(L, lua_ucl_type);
lua_setfield(L, -2, "type");
lua_pushcfunction(L, lua_ucl_pairs);
lua_setfield(L, -2, "pairs");
lua_pushcfunction(L, lua_ucl_ipairs);
lua_setfield(L, -2, "ipairs");
lua_pushcfunction(L, lua_ucl_len);
lua_setfield(L, -2, "len");
lua_pushcfunction(L, lua_ucl_object_tostring);
lua_setfield(L, -2, "tostring");
lua_pushcfunction(L, lua_ucl_object_unwrap);
lua_setfield(L, -2, "unwrap");
lua_pushcfunction(L, lua_ucl_object_unwrap);
lua_setfield(L, -2, "tolua");
lua_pushcfunction(L, lua_ucl_object_validate);
lua_setfield(L, -2, "validate");
luaL_getmetatable(L, OBJECT_META);
lua_setmetatable(L, -2);
}
static inline enum ucl_parse_type
lua_ucl_str_to_parse_type(const char *str)
{
enum ucl_parse_type type = UCL_PARSE_UCL;
if (str != NULL) {
if (strcasecmp(str, "msgpack") == 0) {
type = UCL_PARSE_MSGPACK;
}
else if (strcasecmp(str, "sexp") == 0 ||
strcasecmp(str, "csexp") == 0) {
type = UCL_PARSE_CSEXP;
}
else if (strcasecmp(str, "auto") == 0) {
type = UCL_PARSE_AUTO;
}
}
return type;
}
/***
* @method parser:parse_file(name)
* Parse UCL object from file.
* @param {string} name filename to parse
* @return {bool[, string]} if res is `true` then file has been parsed successfully, otherwise an error string is also returned
@example
local parser = ucl.parser()
local res,err = parser:parse_file('/some/file.conf')
if not res then
print('parser error: ' .. err)
else
-- Do something with object
end
*/
static int
lua_ucl_parser_parse_file(lua_State *L)
{
struct ucl_parser *parser;
const char *file;
int ret = 2;
parser = lua_ucl_parser_get(L, 1);
file = luaL_checkstring(L, 2);
if (parser != NULL && file != NULL) {
if (ucl_parser_add_file(parser, file)) {
lua_pushboolean(L, true);
ret = 1;
}
else {
lua_pushboolean(L, false);
lua_pushstring(L, ucl_parser_get_error(parser));
}
}
else {
lua_pushboolean(L, false);
lua_pushstring(L, "invalid arguments");
}
return ret;
}
/***
* @method parser:register_variable(name, value)
* Register parser variable
* @param {string} name name of variable
* @param {string} value value of variable
* @return {bool} success
@example
local parser = ucl.parser()
local res = parser:register_variable('CONFDIR', '/etc/foo')
*/
static int
lua_ucl_parser_register_variable(lua_State *L)
{
struct ucl_parser *parser;
const char *name, *value;
int ret = 2;
parser = lua_ucl_parser_get(L, 1);
name = luaL_checkstring(L, 2);
value = luaL_checkstring(L, 3);
if (parser != NULL && name != NULL && value != NULL) {
ucl_parser_register_variable(parser, name, value);
lua_pushboolean(L, true);
ret = 1;
}
else {
return luaL_error(L, "invalid arguments");
}
return ret;
}
/***
* @method parser:register_variables(vars)
* Register parser variables
* @param {table} vars names/values of variables
* @return {bool} success
@example
local parser = ucl.parser()
local res = parser:register_variables({CONFDIR = '/etc/foo', VARDIR = '/var'})
*/
static int
lua_ucl_parser_register_variables(lua_State *L)
{
struct ucl_parser *parser;
const char *name, *value;
int ret = 2;
parser = lua_ucl_parser_get(L, 1);
if (parser != NULL && lua_type(L, 2) == LUA_TTABLE) {
for (lua_pushnil(L); lua_next(L, 2); lua_pop(L, 1)) {
lua_pushvalue(L, -2);
name = luaL_checkstring(L, -1);
value = luaL_checkstring(L, -2);
ucl_parser_register_variable(parser, name, value);
lua_pop(L, 1);
}
lua_pushboolean(L, true);
ret = 1;
}
else {
return luaL_error(L, "invalid arguments");
}
return ret;
}
/***
* @method parser:parse_string(input)
* Parse UCL object from file.
* @param {string} input string to parse
* @return {bool[, string]} if res is `true` then file has been parsed successfully, otherwise an error string is also returned
*/
static int
lua_ucl_parser_parse_string(lua_State *L)
{
struct ucl_parser *parser;
const char *string;
size_t llen;
enum ucl_parse_type type = UCL_PARSE_UCL;
int ret = 2;
parser = lua_ucl_parser_get(L, 1);
string = luaL_checklstring(L, 2, &llen);
if (lua_type(L, 3) == LUA_TSTRING) {
type = lua_ucl_str_to_parse_type(lua_tostring(L, 3));
}
if (parser != NULL && string != NULL) {
if (ucl_parser_add_chunk_full(parser, (const unsigned char *) string,
llen, 0, UCL_DUPLICATE_APPEND, type)) {
lua_pushboolean(L, true);
ret = 1;
}
else {
lua_pushboolean(L, false);
lua_pushstring(L, ucl_parser_get_error(parser));
}
}
else {
lua_pushboolean(L, false);
lua_pushstring(L, "invalid arguments");
}
return ret;
}
/***
* @method parser:parse_text(input)
* Parse UCL object from text object (Rspamd specific).
* @param {rspamd_text} input text to parse
* @return {bool[, string]} if res is `true` then file has been parsed successfully, otherwise an error string is also returned
*/
static int
lua_ucl_parser_parse_text(lua_State *L)
{
struct ucl_parser *parser;
struct rspamd_compat_lua_text *t;
enum ucl_parse_type type = UCL_PARSE_UCL;
int ret = 2;
parser = lua_ucl_parser_get(L, 1);
if (lua_type(L, 2) == LUA_TUSERDATA) {
t = lua_touserdata(L, 2);
}
else if (lua_type(L, 2) == LUA_TSTRING) {
const char *s;
gsize len;
static struct rspamd_compat_lua_text st_t;
s = lua_tolstring(L, 2, &len);
st_t.start = s;
st_t.len = len;
t = &st_t;
}
else {
return luaL_error(L, "invalid argument as input, expected userdata or a string");
}
if (lua_type(L, 3) == LUA_TSTRING) {
type = lua_ucl_str_to_parse_type(lua_tostring(L, 3));
}
if (parser != NULL && t != NULL) {
if (ucl_parser_add_chunk_full(parser, (const unsigned char *) t->start,
t->len, 0, UCL_DUPLICATE_APPEND, type)) {
lua_pushboolean(L, true);
ret = 1;
}
else {
lua_pushboolean(L, false);
lua_pushstring(L, ucl_parser_get_error(parser));
}
}
else {
lua_pushboolean(L, false);
lua_pushstring(L, "invalid arguments");
}
return ret;
}
/***
* @method parser:get_object()
* Get top object from parser and export it to lua representation.
* @return {variant or nil} ucl object as lua native variable
*/
static int
lua_ucl_parser_get_object(lua_State *L)
{
struct ucl_parser *parser;
ucl_object_t *obj;
int ret = 1;
parser = lua_ucl_parser_get(L, 1);
obj = ucl_parser_get_object(parser);
if (obj != NULL) {
ret = ucl_object_push_lua(L, obj, false);
/* no need to keep reference */
ucl_object_unref(obj);
}
else {
lua_pushnil(L);
}
return ret;
}
/***
* @method parser:get_object_wrapped()
* Get top object from parser and export it to userdata object without
* unwrapping to lua.
* @return {ucl.object or nil} ucl object wrapped variable
*/
static int
lua_ucl_parser_get_object_wrapped(lua_State *L)
{
struct ucl_parser *parser;
ucl_object_t *obj;
int ret = 1;
parser = lua_ucl_parser_get(L, 1);
obj = ucl_parser_get_object(parser);
if (obj != NULL) {
ucl_object_push_lua_unwrapped(L, obj);
ucl_object_unref(obj);
}
else {
lua_pushnil(L);
}
return ret;
}
/***
* @method parser:validate(schema)
* Validates the top object in the parser against schema. Schema might be
* another object or a string that represents file to load schema from.
*
* @param {string/table} schema input schema
* @return {result,err} two values: boolean result and the corresponding error
*
*/
static int
lua_ucl_parser_validate(lua_State *L)
{
struct ucl_parser *parser, *schema_parser;
ucl_object_t *schema;
const char *schema_file;
struct ucl_schema_error err;
parser = lua_ucl_parser_get(L, 1);
if (parser && parser->top_obj) {
if (lua_type(L, 2) == LUA_TTABLE) {
schema = ucl_object_lua_import(L, 2);
if (schema == NULL) {
lua_pushboolean(L, false);
lua_pushstring(L, "cannot load schema from lua table");
return 2;
}
}
else if (lua_type(L, 2) == LUA_TSTRING) {
schema_parser = ucl_parser_new(UCL_PARSER_SAFE_FLAGS);
schema_file = luaL_checkstring(L, 2);
if (!ucl_parser_add_file(schema_parser, schema_file)) {
lua_pushboolean(L, false);
lua_pushfstring(L, "cannot parse schema file \"%s\": "
"%s",
schema_file, ucl_parser_get_error(parser));
ucl_parser_free(schema_parser);
return 2;
}
schema = ucl_parser_get_object(schema_parser);
ucl_parser_free(schema_parser);
}
else {
lua_pushboolean(L, false);
lua_pushstring(L, "invalid schema argument");
return 2;
}
if (!ucl_object_validate(schema, parser->top_obj, &err)) {
lua_pushboolean(L, false);
lua_pushfstring(L, "validation error: "
"%s",
err.msg);
}
else {
lua_pushboolean(L, true);
lua_pushnil(L);
}
ucl_object_unref(schema);
}
else {
lua_pushboolean(L, false);
lua_pushstring(L, "invalid parser or empty top object");
}
return 2;
}
static int
lua_ucl_parser_gc(lua_State *L)
{
struct ucl_parser *parser;
parser = lua_ucl_parser_get(L, 1);
ucl_parser_free(parser);
return 0;
}
/***
* @method object:unwrap()
* Unwraps opaque ucl object to the native lua object (performing copying)
* @return {variant} any lua object
*/
static int
lua_ucl_object_unwrap(lua_State *L)
{
ucl_object_t *obj;
obj = lua_ucl_object_get(L, 1);
if (obj) {
ucl_object_push_lua(L, obj, true);
}
else {
lua_pushnil(L);
}
return 1;
}
static inline enum ucl_emitter
lua_ucl_str_to_emit_type(const char *strtype)
{
enum ucl_emitter format = UCL_EMIT_JSON_COMPACT;
if (strcasecmp(strtype, "json") == 0) {
format = UCL_EMIT_JSON;
}
else if (strcasecmp(strtype, "json-compact") == 0) {
format = UCL_EMIT_JSON_COMPACT;
}
else if (strcasecmp(strtype, "yaml") == 0) {
format = UCL_EMIT_YAML;
}
else if (strcasecmp(strtype, "config") == 0 ||
strcasecmp(strtype, "ucl") == 0) {
format = UCL_EMIT_CONFIG;
}
return format;
}
/***
* @method object:tostring(type)
* Unwraps opaque ucl object to string (json by default). Optionally you can
* specify output format:
*
* - `json` - fine printed json
* - `json-compact` - compacted json
* - `config` - fine printed configuration
* - `ucl` - same as `config`
* - `yaml` - embedded yaml
* @param {string} type optional
* @return {string} string representation of the opaque ucl object
*/
static int
lua_ucl_object_tostring(lua_State *L)
{
ucl_object_t *obj;
enum ucl_emitter format = UCL_EMIT_JSON_COMPACT;
obj = lua_ucl_object_get(L, 1);
int type = ucl_object_type(obj);
if (type == UCL_ARRAY || type == UCL_OBJECT) {
if (lua_gettop(L) > 1) {
if (lua_type(L, 2) == LUA_TSTRING) {
const char *strtype = lua_tostring(L, 2);
format = lua_ucl_str_to_emit_type(strtype);
}
}
return lua_ucl_to_string(L, obj, format);
}
else if (type == UCL_NULL) {
lua_pushnil(L);
}
else {
ucl_object_lua_push_scalar(L, obj, 0);
}
return 1;
}
/***
* @method object:validate(schema[, path[, ext_refs]])
* Validates the given ucl object using schema object represented as another
* opaque ucl object. You can also specify path in the form `#/path/def` to
* specify the specific schema element to perform validation.
*
* @param {ucl.object} schema schema object
* @param {string} path optional path for validation procedure
* @return {result,err} two values: boolean result and the corresponding
* error, if `ext_refs` are also specified, then they are returned as opaque
* ucl object as {result,err,ext_refs}
*/
static int
lua_ucl_object_validate(lua_State *L)
{
ucl_object_t *obj, *schema, *ext_refs = NULL;
const ucl_object_t *schema_elt;
bool res = false;
struct ucl_schema_error err;
const char *path = NULL;
obj = lua_ucl_object_get(L, 1);
schema = lua_ucl_object_get(L, 2);
if (schema && obj && ucl_object_type(schema) == UCL_OBJECT) {
if (lua_gettop(L) > 2) {
if (lua_type(L, 3) == LUA_TSTRING) {
path = lua_tostring(L, 3);
if (path[0] == '#') {
path++;
}
}
else if (lua_type(L, 3) == LUA_TUSERDATA || lua_type(L, 3) ==
LUA_TTABLE) {
/* External refs */
ext_refs = lua_ucl_object_get(L, 3);
}
if (lua_gettop(L) > 3) {
if (lua_type(L, 4) == LUA_TUSERDATA || lua_type(L, 4) ==
LUA_TTABLE) {
/* External refs */
ext_refs = lua_ucl_object_get(L, 4);
}
}
}
if (path) {
schema_elt = ucl_object_lookup_path_char(schema, path, '/');
}
else {
/* Use the top object */
schema_elt = schema;
}
if (schema_elt) {
res = ucl_object_validate_root_ext(schema_elt, obj, schema,
ext_refs, &err);
if (res) {
lua_pushboolean(L, res);
lua_pushnil(L);
if (ext_refs) {
ucl_object_push_lua_unwrapped(L, ext_refs);
ucl_object_unref(ext_refs);
}
}
else {
lua_pushboolean(L, res);
lua_pushfstring(L, "validation error: %s", err.msg);
if (ext_refs) {
ucl_object_push_lua_unwrapped(L, ext_refs);
ucl_object_unref(ext_refs);
}
}
}
else {
lua_pushboolean(L, res);
lua_pushfstring(L, "cannot find the requested path: %s", path);
if (ext_refs) {
ucl_object_push_lua_unwrapped(L, ext_refs);
ucl_object_unref(ext_refs);
}
}
}
else {
lua_pushboolean(L, res);
lua_pushstring(L, "invalid object or schema");
}
if (ext_refs) {
return 3;
}
return 2;
}
static int
lua_ucl_object_gc(lua_State *L)
{
ucl_object_t *obj;
obj = lua_ucl_object_get(L, 1);
ucl_object_unref(obj);
return 0;
}
static int
lua_ucl_iter_gc(lua_State *L)
{
ucl_object_iter_t it;
it = *((ucl_object_iter_t *) lua_touserdata(L, 1));
if (it) {
ucl_object_iterate_free(it);
}
return 0;
}
static int
lua_ucl_index(lua_State *L)
{
ucl_object_t *obj;
obj = lua_ucl_object_get(L, 1);
if (lua_type(L, 2) == LUA_TSTRING) {
/* Index by string */
if (ucl_object_type(obj) == UCL_OBJECT) {
size_t len;
const char *key = lua_tolstring(L, 2, &len);
const ucl_object_t *elt;
elt = ucl_object_lookup_len(obj, key, strlen(key));
if (elt) {
ucl_object_push_lua_unwrapped(L, elt);
}
else {
lua_pushnil(L);
}
return 1;
}
else {
return luaL_error(L, "cannot index non-object: %s", ucl_object_type_to_string(ucl_object_type(obj)));
}
}
else if (lua_type(L, 2) == LUA_TNUMBER) {
/* Index by number */
if (ucl_object_type(obj) == UCL_ARRAY) {
/* +1 as Lua indexes elements from 1 and ucl indexes them from 0 */
lua_Integer idx = lua_tointeger(L, 2) + 1;
const ucl_object_t *elt;
elt = ucl_array_find_index(obj, idx);
if (elt) {
ucl_object_push_lua_unwrapped(L, elt);
}
else {
lua_pushnil(L);
}
return 1;
}
else {
return luaL_error(L, "cannot index non-array: %s", ucl_object_type_to_string(ucl_object_type(obj)));
}
}
else {
return luaL_error(L, "invalid index type: %s", lua_typename(L, lua_type(L, 2)));
}
}
static int
lua_ucl_newindex(lua_State *L)
{
ucl_object_t *obj;
obj = lua_ucl_object_get(L, 1);
int key_type = lua_type(L, 2);
if (ucl_object_type(obj) == UCL_OBJECT) {
if (key_type == LUA_TSTRING) {
size_t keylen;
const char *key = lua_tolstring(L, 2, &keylen);
ucl_object_t *value_obj = lua_ucl_object_get(L, 3);
if (value_obj) {
value_obj = ucl_object_ref(value_obj);
}
else {
value_obj = ucl_object_lua_import(L, 3);
}
if (ucl_object_lookup_len(obj, key, keylen) != NULL) {
if (value_obj != NULL) {
ucl_object_replace_key(obj, value_obj, key, keylen, true);
}
else {
/* Delete key */
ucl_object_delete_keyl(obj, key, keylen);
}
}
else {
if (value_obj != NULL) {
ucl_object_insert_key(obj, value_obj, key, keylen, true);
}
/* Do nothing if value_obj is null, like Lua does */
}
}
else if (key_type == LUA_TNUMBER) {
/*
* We have some object but wanted it to be an array
* In Lua, this is allowed but UCL has distinction between array and object
* Here, we allow one thing: if an object is empty, and we want a numeric index, we convert it to an array
*/
lua_Integer idx = lua_tointeger(L, 2);
if (idx == 1 && obj->len == 0 && obj->value.ov == NULL) {
/* UCL preallocate arrays, but it is not a requirement once av is NULL */
obj->type = UCL_ARRAY;
ucl_object_t *value_obj = lua_ucl_object_get(L, 3);
if (value_obj) {
value_obj = ucl_object_ref(value_obj);
}
else {
value_obj = ucl_object_lua_import(L, 3);
}
if (value_obj == NULL) {
return luaL_error(L, "invalid value type: %s", lua_typename(L, lua_type(L, 3)));
}
ucl_array_append(obj, value_obj);
}
else {
return luaL_error(L, "invalid index type for an object: %s", lua_typename(L, key_type));
}
}
else {
return luaL_error(L, "invalid index type for an object: %s", lua_typename(L, key_type));
}
return 0;
}
else if (ucl_object_type(obj) == UCL_ARRAY) {
if (key_type == LUA_TNUMBER) {
lua_Integer idx = lua_tointeger(L, 2);
ucl_object_t *value_obj = lua_ucl_object_get(L, 3);
if (value_obj) {
value_obj = ucl_object_ref(value_obj);
}
else {
value_obj = ucl_object_lua_import(L, 3);
}
if (value_obj == NULL) {
return luaL_error(L, "invalid value type: %s", lua_typename(L, lua_type(L, 3)));
}
/* Lua allows sparse arrays and ucl does not
* So we have 2 options:
* 1) Idx is some existing index, so we need to replace it
* 3) Idx is #len, so we append it
* Everything else is an error
*/
if (idx == ucl_array_size(obj) + 1) {
ucl_array_append(obj, value_obj);
}
else if (idx >= 1 && idx <= ucl_array_size(obj)) {
ucl_array_replace_index(obj, value_obj, idx - 1);
}
else {
ucl_object_unref(value_obj);
return luaL_error(L, "invalid index for array: %d", (int) idx);
}
}
else if (key_type == LUA_TSTRING) {
/*
* We have some array but wanted it to be an object
* In Lua, this is allowed but UCL has distinction between array and object
* Here, we allow one thing: if an array is empty, and we want a string index, we convert it to an object
* The biggest issue is that ucl array is preallocated in general, so we need to free it somehow
*/
/*
* Dirty hacks are here
*/
kvec_t(ucl_object_t *) *real_ar = obj->value.av;
if (real_ar) {
kv_destroy(*real_ar);
}
UCL_FREE(sizeof(*real_ar), real_ar);
obj->value.av = NULL;
obj->type = UCL_OBJECT;
size_t keylen;
const char *key = lua_tolstring(L, 2, &keylen);
ucl_object_t *value_obj = lua_ucl_object_get(L, 3);
if (value_obj) {
value_obj = ucl_object_ref(value_obj);
}
else {
value_obj = ucl_object_lua_import(L, 3);
}
if (value_obj) {
ucl_object_insert_key(obj, value_obj, key, keylen, true);
}
else {
return luaL_error(L, "invalid value type: %s", lua_typename(L, lua_type(L, 3)));
}
}
else {
return luaL_error(L, "invalid index type for an array: %s", lua_typename(L, key_type));
}
return 0;
}
else {
return luaL_error(L, "invalid index type: %s (obj type: %s)", lua_typename(L, key_type),
ucl_object_type_to_string(ucl_object_type(obj)));
}
}
static int
lua_ucl_type(lua_State *L)
{
ucl_object_t *obj;
obj = lua_ucl_object_get(L, 1);
lua_pushstring(L, ucl_object_type_to_string(ucl_object_type(obj)));
return 1;
}
static int
lua_ucl_object_iter(lua_State *L)
{
ucl_object_iter_t it;
const ucl_object_t *cur;
it = *((ucl_object_iter_t *) lua_touserdata(L, 1));
cur = ucl_object_iterate_safe(it, true);
if (cur) {
if (ucl_object_key(cur)) {
size_t klen;
const char *k = ucl_object_keyl(cur, &klen);
lua_pushlstring(L, k, klen);
}
else {
if (lua_type(L, 2) == LUA_TNUMBER) {
lua_Integer idx = lua_tointeger(L, 2);
if (idx >= 0) {
lua_pushinteger(L, idx + 1);
}
}
else {
lua_pushnumber(L, -1);
}
}
ucl_object_push_lua_unwrapped(L, cur);
return 2;
}
else {
lua_pushnil(L);
return 1;
}
}
static int
lua_ucl_pairs(lua_State *L)
{
ucl_object_t *obj;
obj = lua_ucl_object_get(L, 1);
int t = ucl_object_type(obj);
if ((obj) && (t == UCL_ARRAY || t == UCL_OBJECT || obj->next != NULL)) {
/* iter_func, ucl_object_t, iter */
lua_pushcfunction(L, lua_ucl_object_iter);
ucl_object_iter_t *pit = lua_newuserdata(L, sizeof(ucl_object_iter_t *));
luaL_getmetatable(L, ITER_META);
lua_setmetatable(L, -2);
ucl_object_iter_t it = ucl_object_iterate_new(obj);
*pit = it;
lua_pushnumber(L, -1);
return 3;
}
else {
return luaL_error(L, "invalid object type for pairs: %s", ucl_object_type_to_string(t));
}
}
static int
lua_ucl_len(lua_State *L)
{
ucl_object_t *obj;
obj = lua_ucl_object_get(L, 1);
lua_pushinteger(L, obj->len);
return 1;
}
static int
lua_ucl_ipairs(lua_State *L)
{
ucl_object_t *obj;
obj = lua_ucl_object_get(L, 1);
int t = ucl_object_type(obj);
if ((obj) && (t == UCL_ARRAY || obj->next != NULL)) {
/* iter_func, ucl_object_t, iter */
lua_pushcfunction(L, lua_ucl_object_iter);
ucl_object_iter_t *pit = lua_newuserdata(L, sizeof(ucl_object_iter_t *));
luaL_getmetatable(L, ITER_META);
lua_setmetatable(L, -2);
ucl_object_iter_t it = ucl_object_iterate_new(obj);
*pit = it;
lua_pushnumber(L, 0);
return 3;
}
else {
return luaL_error(L, "invalid object type for ipairs: %s", ucl_object_type_to_string(t));
}
}
static void
lua_ucl_parser_mt(lua_State *L)
{
luaL_newmetatable(L, PARSER_META);
lua_pushvalue(L, -1);
lua_setfield(L, -2, "__index");
lua_pushcfunction(L, lua_ucl_parser_gc);
lua_setfield(L, -2, "__gc");
lua_pushcfunction(L, lua_ucl_parser_parse_file);
lua_setfield(L, -2, "parse_file");
lua_pushcfunction(L, lua_ucl_parser_parse_string);
lua_setfield(L, -2, "parse_string");
lua_pushcfunction(L, lua_ucl_parser_parse_text);
lua_setfield(L, -2, "parse_text");
lua_pushcfunction(L, lua_ucl_parser_register_variable);
lua_setfield(L, -2, "register_variable");
lua_pushcfunction(L, lua_ucl_parser_register_variables);
lua_setfield(L, -2, "register_variables");
lua_pushcfunction(L, lua_ucl_parser_get_object);
lua_setfield(L, -2, "get_object");
lua_pushcfunction(L, lua_ucl_parser_get_object_wrapped);
lua_setfield(L, -2, "get_object_wrapped");
lua_pushcfunction(L, lua_ucl_parser_validate);
lua_setfield(L, -2, "validate");
lua_pop(L, 1);
}
static void
lua_ucl_object_mt(lua_State *L)
{
luaL_newmetatable(L, OBJECT_META);
lua_pushcfunction(L, lua_ucl_index);
lua_setfield(L, -2, "__index");
lua_pushcfunction(L, lua_ucl_newindex);
lua_setfield(L, -2, "__newindex");
/* Usable merely with lua 5.2+ */
lua_pushcfunction(L, lua_ucl_ipairs);
lua_setfield(L, -2, "__ipairs");
/* Usable merely with lua 5.2+ */
lua_pushcfunction(L, lua_ucl_pairs);
lua_setfield(L, -2, "__pairs");
/* Access UCL elements using `:at` method */
lua_pushcfunction(L, lua_ucl_index);
lua_setfield(L, -2, "at");
/* Usable merely with lua 5.2+ */
lua_pushcfunction(L, lua_ucl_len);
lua_setfield(L, -2, "__len");
lua_pushcfunction(L, lua_ucl_object_gc);
lua_setfield(L, -2, "__gc");
lua_pushcfunction(L, lua_ucl_object_tostring);
lua_setfield(L, -2, "__tostring");
lua_pushstring(L, OBJECT_META);
lua_setfield(L, -2, "class");
lua_pop(L, 1);
luaL_newmetatable(L, ITER_META);
lua_pushcfunction(L, lua_ucl_iter_gc);
lua_setfield(L, -2, "__gc");
lua_pushstring(L, ITER_META);
lua_setfield(L, -2, "__tostring");
lua_pop(L, 1);
}
static void
lua_ucl_types_mt(lua_State *L)
{
luaL_newmetatable(L, UCL_OBJECT_TYPE_META);
lua_pushcfunction(L, lua_ucl_object_tostring);
lua_setfield(L, -2, "__tostring");
lua_pushcfunction(L, lua_ucl_object_tostring);
lua_setfield(L, -2, "tostring");
lua_pushstring(L, UCL_OBJECT_TYPE_META);
lua_setfield(L, -2, "class");
lua_pop(L, 1);
luaL_newmetatable(L, UCL_ARRAY_TYPE_META);
lua_pushcfunction(L, lua_ucl_object_tostring);
lua_setfield(L, -2, "__tostring");
lua_pushcfunction(L, lua_ucl_object_tostring);
lua_setfield(L, -2, "tostring");
lua_pushstring(L, UCL_ARRAY_TYPE_META);
lua_setfield(L, -2, "class");
lua_pop(L, 1);
luaL_newmetatable(L, UCL_IMPL_ARRAY_TYPE_META);
lua_pushcfunction(L, lua_ucl_object_tostring);
lua_setfield(L, -2, "__tostring");
lua_pushcfunction(L, lua_ucl_object_tostring);
lua_setfield(L, -2, "tostring");
lua_pushstring(L, UCL_IMPL_ARRAY_TYPE_META);
lua_setfield(L, -2, "class");
lua_pop(L, 1);
}
static int
lua_ucl_to_json(lua_State *L)
{
ucl_object_t *obj;
int format = UCL_EMIT_JSON;
if (lua_gettop(L) > 1) {
if (lua_toboolean(L, 2)) {
format = UCL_EMIT_JSON_COMPACT;
}
}
obj = ucl_object_lua_import(L, 1);
if (obj != NULL) {
lua_ucl_to_string(L, obj, format);
ucl_object_unref(obj);
}
else {
lua_pushnil(L);
}
return 1;
}
static int
lua_ucl_to_config(lua_State *L)
{
ucl_object_t *obj;
obj = ucl_object_lua_import(L, 1);
if (obj != NULL) {
lua_ucl_to_string(L, obj, UCL_EMIT_CONFIG);
ucl_object_unref(obj);
}
else {
lua_pushnil(L);
}
return 1;
}
/***
* @function ucl.to_format(var, format)
* Converts lua variable `var` to the specified `format`. Formats supported are:
*
* - `json` - fine printed json
* - `json-compact` - compacted json
* - `config` - fine printed configuration
* - `ucl` - same as `config`
* - `yaml` - embedded yaml
*
* If `var` contains function, they are called during output formatting and if
* they return string value, then this value is used for output.
* @param {variant} var any sort of lua variable (if userdata then metafield `__to_ucl` is searched for output)
* @param {string} format any available format
* @return {string} string representation of `var` in the specific `format`.
* @example
local table = {
str = 'value',
num = 100500,
null = ucl.null,
func = function ()
return 'huh'
end
}
print(ucl.to_format(table, 'ucl'))
-- Output:
--[[
num = 100500;
str = "value";
null = null;
func = "huh";
--]]
*/
static int
lua_ucl_to_format(lua_State *L)
{
ucl_object_t *obj;
int format = UCL_EMIT_JSON;
bool sort = false;
if (lua_gettop(L) > 1) {
if (lua_type(L, 2) == LUA_TNUMBER) {
format = lua_tonumber(L, 2);
if (format < 0 || format >= UCL_EMIT_YAML) {
lua_pushnil(L);
return 1;
}
}
else if (lua_type(L, 2) == LUA_TSTRING) {
const char *strtype = lua_tostring(L, 2);
if (strcasecmp(strtype, "json") == 0) {
format = UCL_EMIT_JSON;
}
else if (strcasecmp(strtype, "json-compact") == 0) {
format = UCL_EMIT_JSON_COMPACT;
}
else if (strcasecmp(strtype, "yaml") == 0) {
format = UCL_EMIT_YAML;
}
else if (strcasecmp(strtype, "config") == 0 ||
strcasecmp(strtype, "ucl") == 0) {
format = UCL_EMIT_CONFIG;
}
else if (strcasecmp(strtype, "msgpack") == 0 ||
strcasecmp(strtype, "messagepack") == 0) {
format = UCL_EMIT_MSGPACK;
}
}
if (lua_isboolean(L, 3)) {
sort = lua_toboolean(L, 3);
}
}
obj = ucl_object_lua_import(L, 1);
if (obj != NULL) {
if (sort) {
if (ucl_object_type(obj) == UCL_OBJECT) {
ucl_object_sort_keys(obj, UCL_SORT_KEYS_RECURSIVE);
}
}
lua_ucl_to_string(L, obj, format);
ucl_object_unref(obj);
}
else {
lua_pushnil(L);
}
return 1;
}
static int
lua_ucl_null_tostring(lua_State *L)
{
lua_pushstring(L, "null");
return 1;
}
static void
lua_ucl_null_mt(lua_State *L)
{
luaL_newmetatable(L, NULL_META);
lua_pushcfunction(L, lua_ucl_null_tostring);
lua_setfield(L, -2, "__tostring");
lua_pop(L, 1);
}
int luaopen_ucl(lua_State *L)
{
lua_ucl_parser_mt(L);
lua_ucl_null_mt(L);
lua_ucl_object_mt(L);
lua_ucl_types_mt(L);
/* Create the refs weak table: */
lua_createtable(L, 0, 2);
lua_pushliteral(L, "v"); /* tbl, "v" */
lua_setfield(L, -2, "__mode");
lua_pushvalue(L, -1); /* tbl, tbl */
lua_setmetatable(L, -2); /* tbl */
lua_setfield(L, LUA_REGISTRYINDEX, "ucl.refs");
lua_newtable(L);
lua_pushcfunction(L, lua_ucl_parser_init);
lua_setfield(L, -2, "parser");
lua_pushcfunction(L, lua_ucl_to_json);
lua_setfield(L, -2, "to_json");
lua_pushcfunction(L, lua_ucl_to_config);
lua_setfield(L, -2, "to_config");
lua_pushcfunction(L, lua_ucl_to_format);
lua_setfield(L, -2, "to_format");
ucl_null = lua_newuserdata(L, 0);
luaL_getmetatable(L, NULL_META);
lua_setmetatable(L, -2);
lua_pushvalue(L, -1);
lua_setfield(L, LUA_REGISTRYINDEX, "ucl.null");
lua_setfield(L, -2, "null");
return 1;
}
struct ucl_lua_funcdata *
ucl_object_toclosure(const ucl_object_t *obj)
{
if (obj == NULL || obj->type != UCL_USERDATA) {
return NULL;
}
return (struct ucl_lua_funcdata *) obj->value.ud;
}
|