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
|
/*
* Dynamic Lua binding to GObject using dynamic gobject-introspection.
*
* Copyright (c) 2010, 2011, 2012, 2013 Pavel Holejsovsky
* Licensed under the MIT license:
* http://www.opensource.org/licenses/mit-license.php
*
* This code deals with calling from Lua to C and vice versa, using
* gobject-introspection information and libffi machinery.
*/
#include "lgi.h"
#include <string.h>
#include <ffi.h>
/* Kinds or Param structure variation. */
typedef enum _ParamKind
{
/* Ordinary typeinfo (ti)-based parameter. */
PARAM_KIND_TI = 0,
/* Foreign record. ti is unused. */
PARAM_KIND_RECORD,
/* Foreign enum/flags. ti contains underlying numeric type. */
PARAM_KIND_ENUM
} ParamKind;
/* Represents single parameter in callable description. */
typedef struct _Param
{
GITypeInfo *ti;
GIArgInfo ai;
/* Indicates whether ai field is valid. */
guint has_arg_info : 1;
/* Direction of the argument. */
guint dir : 2;
/* Ownership passing rule for output parameters. */
guint transfer : 2;
/* Flag indicating whether this parameter is represented by Lua input and/or
returned value. Not represented are e.g. callback's user_data, array
sizes etc. */
guint internal : 1;
/* Flag indicating that this is internal user_data value for the
callback. This parameter is supplied automatically, not
explicitely from Lua. */
guint internal_user_data : 1;
/* Set to nonzero if this argument is user_data for closure which is
marked as (scope call). */
guint call_scoped_user_data : 1;
/* Number of closures bound to this argument. 0 if this is not
user_data for closure. */
guint n_closures : 4;
/* Type of the argument, one of ParamKind values. */
guint kind : 2;
/* Index into env table attached to the callable, contains repotype
table for specified argument. */
guint repotype_index : 4;
} Param;
/* Structure representing userdata allocated for any callable, i.e. function,
method, signal, vtable, callback... */
typedef struct _Callable
{
/* Stored callable info. */
GICallableInfo *info;
/* Address of the function. */
gpointer address;
/* Optional, associated 'user_data' context field. */
gpointer user_data;
/* Flags with function characteristics. */
guint has_self : 1;
guint throws : 1;
guint nargs : 6;
guint ignore_retval : 1;
guint is_closure_marshal : 1;
/* Initialized FFI CIF structure. */
ffi_cif cif;
/* Param return value and pointer to nargs Param instances. */
Param retval;
Param *params;
/* ffi_type* array here, contains ffi_type[nargs + 2] entries. */
/* params points here, contains Param[nargs] entries. */
} Callable;
/* Address is lightuserdata of Callable metatable in Lua registry. */
static int callable_mt;
/* Structure containing basic callback information. */
typedef struct _Callback
{
/* Thread which created callback and Lua-reference to it (so that it
is not GCed). */
lua_State *L;
int thread_ref;
/* State lock, to be passed to lgi_state_enter() when callback is
invoked. */
gpointer state_lock;
} Callback;
typedef struct _FfiClosureBlock FfiClosureBlock;
/* Single element in FFI callbacks block. */
typedef struct _FfiClosure
{
/* Libffi closure object. */
ffi_closure ffi_closure;
/* Pointer to the block to which this closure belongs. */
FfiClosureBlock *block;
union
{
struct
{
/* Lua reference to associated Callable. */
int callable_ref;
/* Callable's target to be invoked (either function,
userdata/table with __call metafunction or coroutine (which
is resumed instead of called). */
int target_ref;
};
/* Closure's entry point, stored only temporarily until closure is
created. */
gpointer call_addr;
};
/* Flag indicating whether closure should auto-destroy itself after it is
called. */
guint autodestroy : 1;
/* Flag indicating whether the closure was already created. */
guint created : 1;
} FfiClosure;
/* Structure containing closure block. This is user_data block for
C-side closure arguments. */
struct _FfiClosureBlock
{
/* 1st closure. */
FfiClosure ffi_closure;
/* Target to be invoked. */
Callback callback;
/* Number of other closures in the block, excluding the forst one
contained already in this header. */
int closures_count;
/* Variable-length array of pointers to other closures.
Unfortunately libffi does not allow to allocate contiguous block
containing more closures, otherwise this array would simply
contain FfiClosure instances instead of pointers to dynamically
allocated ones. */
FfiClosure *ffi_closures[1];
};
/* lightuserdata key to callable cache table. */
static int callable_cache;
/* Gets ffi_type for given tag, returns NULL if it cannot be handled. */
static ffi_type *
get_simple_ffi_type (GITypeTag tag)
{
ffi_type *ffi;
switch (tag)
{
#define HANDLE_TYPE(tag, ffitype) \
case GI_TYPE_TAG_ ## tag: \
ffi = &ffi_type_ ## ffitype; \
break
HANDLE_TYPE(VOID, void);
HANDLE_TYPE(BOOLEAN, uint);
HANDLE_TYPE(INT8, sint8);
HANDLE_TYPE(UINT8, uint8);
HANDLE_TYPE(INT16, sint16);
HANDLE_TYPE(UINT16, uint16);
HANDLE_TYPE(INT32, sint32);
HANDLE_TYPE(UINT32, uint32);
HANDLE_TYPE(INT64, sint64);
HANDLE_TYPE(UINT64, uint64);
HANDLE_TYPE(FLOAT, float);
HANDLE_TYPE(DOUBLE, double);
#if GLIB_SIZEOF_SIZE_T == 4
HANDLE_TYPE(GTYPE, uint32);
#else
HANDLE_TYPE(GTYPE, uint64);
#endif
#undef HANDLE_TYPE
default:
ffi = NULL;
}
return ffi;
}
/* Gets ffi_type for given Param instance. */
static ffi_type *
get_ffi_type(Param *param)
{
switch (param->kind)
{
case PARAM_KIND_RECORD:
return &ffi_type_pointer;
case PARAM_KIND_ENUM:
return param->ti ? get_simple_ffi_type (g_type_info_get_tag (param->ti))
: &ffi_type_sint;
case PARAM_KIND_TI:
break;
}
/* In case of inout or out parameters, the type is always pointer. */
GITypeTag tag = g_type_info_get_tag (param->ti);
ffi_type* ffi = g_type_info_is_pointer(param->ti)
? &ffi_type_pointer : get_simple_ffi_type (tag);
if (ffi == NULL)
{
/* Something more complex. */
if (tag == GI_TYPE_TAG_INTERFACE)
{
GIBaseInfo *ii = g_type_info_get_interface (param->ti);
switch (g_base_info_get_type (ii))
{
case GI_INFO_TYPE_ENUM:
case GI_INFO_TYPE_FLAGS:
ffi = get_simple_ffi_type (g_enum_info_get_storage_type (ii));
break;
default:
break;
}
g_base_info_unref (ii);
}
}
return ffi != NULL ? ffi : &ffi_type_pointer;
}
/* If typeinfo specifies array with length parameter, mark it in
specified callable as an internal one. */
static void
callable_mark_array_length (Callable *callable, GITypeInfo *ti)
{
gint arg;
if (g_type_info_get_tag (ti) == GI_TYPE_TAG_ARRAY &&
g_type_info_get_array_type (ti) == GI_ARRAY_TYPE_C)
{
arg = g_type_info_get_array_length (ti);
if (arg >= 0 && arg < callable->nargs)
callable->params[arg].internal = TRUE;
}
}
static void
callable_param_init (Param *param)
{
param->ti = NULL;
param->has_arg_info =FALSE;
param->internal = FALSE;
param->internal_user_data = FALSE;
param->n_closures = 0;
param->call_scoped_user_data = FALSE;
param->kind = PARAM_KIND_TI;
param->repotype_index = 0;
}
static Callable *
callable_allocate (lua_State *L, int nargs, ffi_type ***ffi_args)
{
int argi;
/* Create userdata structure. */
luaL_checkstack (L, 2, NULL);
Callable *callable = lua_newuserdata (L, sizeof (Callable) +
sizeof (ffi_type) * (nargs + 2) +
sizeof (Param) * nargs);
lua_pushlightuserdata (L, &callable_mt);
lua_rawget (L, LUA_REGISTRYINDEX);
lua_setmetatable (L, -2);
/* Inititialize callable contents. */
*ffi_args = (ffi_type **) &callable[1];
callable->params = (Param *) &(*ffi_args)[nargs + 2];
callable->nargs = nargs;
callable->user_data = NULL;
callable->info = NULL;
callable->has_self = 0;
callable->throws = 0;
callable->ignore_retval = 0;
callable->is_closure_marshal = 0;
/* Clear all 'internal' flags inside callable parameters, parameters are then
marked as internal during processing of their parents. */
callable_param_init (&callable->retval);
for (argi = 0; argi < nargs; argi++)
callable_param_init (&callable->params[argi]);
return callable;
}
int
lgi_callable_create (lua_State *L, GICallableInfo *info, gpointer addr)
{
Callable *callable;
Param *param;
ffi_type **ffi_arg, **ffi_args;
ffi_type *ffi_retval;
gint nargs, argi, arg;
/* Allocate Callable userdata. */
nargs = g_callable_info_get_n_args (info);
callable = callable_allocate (L, nargs, &ffi_args);
callable->info = g_base_info_ref (info);
callable->address = addr;
if (GI_IS_FUNCTION_INFO (info))
{
/* Get FunctionInfo flags. */
const gchar* symbol;
gint flags = g_function_info_get_flags (info);
if ((flags & GI_FUNCTION_IS_METHOD) != 0 &&
(flags & GI_FUNCTION_IS_CONSTRUCTOR) == 0)
callable->has_self = 1;
if ((flags & GI_FUNCTION_THROWS) != 0)
callable->throws = 1;
/* Resolve symbol (function address). */
symbol = g_function_info_get_symbol (info);
if (!g_typelib_symbol (g_base_info_get_typelib (info), symbol,
&callable->address))
/* Fail with the error message. */
return luaL_error (L, "could not locate %s(%s): %s",
lua_tostring (L, -3), symbol, g_module_error ());
}
else if (GI_IS_SIGNAL_INFO (info))
/* Signals always have 'self', i.e. the object on which they are
emitted. */
callable->has_self = 1;
/* Process return value. */
callable->retval.ti = g_callable_info_get_return_type (callable->info);
callable->retval.dir = GI_DIRECTION_OUT;
callable->retval.transfer = g_callable_info_get_caller_owns (callable->info);
callable->retval.internal = FALSE;
callable->retval.repotype_index = 0;
ffi_retval = get_ffi_type (&callable->retval);
callable_mark_array_length (callable, callable->retval.ti);
/* Process 'self' argument, if present. */
ffi_arg = &ffi_args[0];
if (callable->has_self)
*ffi_arg++ = &ffi_type_pointer;
/* Process the rest of the arguments. */
param = &callable->params[0];
for (argi = 0; argi < nargs; argi++, param++, ffi_arg++)
{
g_callable_info_load_arg (callable->info, argi, ¶m->ai);
param->has_arg_info = TRUE;
param->ti = g_arg_info_get_type (¶m->ai);
param->dir = g_arg_info_get_direction (¶m->ai);
param->transfer = g_arg_info_get_ownership_transfer (¶m->ai);
*ffi_arg = (param->dir == GI_DIRECTION_IN)
? get_ffi_type (param) : &ffi_type_pointer;
/* Mark closure-related user_data fields and possibly destroy_notify
fields as internal. */
arg = g_arg_info_get_closure (¶m->ai);
if (arg >= 0 && arg < nargs)
{
callable->params[arg].internal = TRUE;
if (arg == argi)
callable->params[arg].internal_user_data = TRUE;
callable->params[arg].n_closures++;
if (g_arg_info_get_scope (¶m->ai) == GI_SCOPE_TYPE_CALL)
callable->params[arg].call_scoped_user_data = TRUE;
}
arg = g_arg_info_get_destroy (¶m->ai);
if (arg > 0 && arg < nargs)
callable->params[arg].internal = TRUE;
/* Similarly for array length field. */
callable_mark_array_length (callable, param->ti);
/* In case that we have an out or inout argument and callable
returns boolean, mark it as ignore_retval (because we will
signalize failure by returning nil instead of extra
value). */
if (param->dir != GI_DIRECTION_IN
&& g_type_info_get_tag (callable->retval.ti) == GI_TYPE_TAG_BOOLEAN)
callable->ignore_retval = 1;
}
/* Manual adjustment of 'GObject.ClosureMarshal' type, which is
crucial for lgi but is missing an array annotation in
glib/gobject-introspection < 1.30. */
if (!GLIB_CHECK_VERSION (2, 30, 0)
&& !strcmp (g_base_info_get_namespace (info), "GObject")
&& !strcmp (g_base_info_get_name (info), "ClosureMarshal"))
{
callable->is_closure_marshal = 1;
callable->params[2].internal = 1;
}
/* Add ffi info for 'err' argument. */
if (callable->throws)
*ffi_arg++ = &ffi_type_pointer;
/* Create ffi_cif. */
if (ffi_prep_cif (&callable->cif, FFI_DEFAULT_ABI,
callable->has_self + nargs + callable->throws,
ffi_retval, ffi_args) != FFI_OK)
{
lua_concat (L, lgi_type_get_name (L, callable->info));
return luaL_error (L, "ffi_prep_cif for `%s' failed",
lua_tostring (L, -1));
}
return 1;
}
static int
callable_param_get_kind (lua_State *L)
{
int kind = -1, top = lua_gettop (L);
if (lgi_udata_test (L, -1, LGI_GI_INFO))
kind = PARAM_KIND_TI;
else
{
luaL_checktype (L, -1, LUA_TTABLE);
lua_getmetatable (L, -1);
if (!lua_isnil (L, -1))
{
lua_getfield (L, -1, "_type");
if (!lua_isnil (L, -1))
{
const char *type = lua_tostring (L, -1);
if (g_strcmp0 (type, "struct") == 0
|| g_strcmp0 (type, "union") == 0)
kind = PARAM_KIND_RECORD;
else if (g_strcmp0 (type, "enum") == 0
|| g_strcmp0 (type, "flags") == 0)
kind = PARAM_KIND_ENUM;
}
}
}
lua_settop (L, top);
return kind;
}
static const char *dirs[] = { "in", "out", "inout", NULL };
/* Parses single 'Param' structure from the table on the top of the
stack. Pops the table from the stack. */
static void
callable_param_parse (lua_State *L, Param *param)
{
int kind = callable_param_get_kind (L);
/* Initialize parameters to default values. */
param->transfer = GI_TRANSFER_NOTHING;
param->ti = NULL;
if (kind == -1)
{
/* Check the direction. */
lua_getfield (L, -1, "dir");
if (!lua_isnil (L, -1))
param->dir = luaL_checkoption (L, -1, dirs[0], dirs);
lua_pop (L, 1);
/* Get transfer flag, prepare default according to dir. */
lua_getfield (L, -1, "xfer");
param->transfer = lua_toboolean (L, -1)
? GI_TRANSFER_EVERYTHING : GI_TRANSFER_NOTHING;
lua_pop (L, 1);
/* Get type, assume record (if not overriden by real giinfo type
below). */
lua_getfield (L, -1, "type");
if (!lua_isnil (L, -1))
{
/* This is actually an enum, and 'type' field contains
numeric type for this enum. Store it into the ti. */
GITypeInfo **ti = luaL_checkudata (L, -1, LGI_GI_INFO);
param->ti = g_base_info_ref (*ti);
}
lua_pop (L, 1);
/* Finally get the type from the table (from index 1) and
replace the table with the type. */
lua_rawgeti (L, -1, 1);
lua_replace (L, -2);
}
/* Parse the type. */
if (kind == -1)
kind = callable_param_get_kind (L);
if (kind == PARAM_KIND_TI)
{
/* Expect typeinfo. */
GITypeInfo **pti = lua_touserdata (L, -1);
param->ti = g_base_info_ref (*pti);
param->kind = kind;
lua_pop (L, 1);
}
else if (kind == PARAM_KIND_ENUM || kind == PARAM_KIND_RECORD)
{
/* Add it to the env table. */
int index = lua_objlen (L, -2) + 1;
lua_rawseti (L, -2, index);
param->repotype_index = index;
param->kind = kind;
}
else
luaL_error (L, "bad efn def");
}
/* Parses callable from given table. */
int
lgi_callable_parse (lua_State *L, int info, gpointer addr)
{
Callable *callable;
int nargs, i;
ffi_type **ffi_args;
ffi_type *ffi_retval;
/* Allocate the raw structure. */
nargs = lua_objlen (L, info);
callable = callable_allocate (L, nargs, &ffi_args);
/* Create 'env' table. */
lua_newtable (L);
/* Add function name to it. */
lua_getfield (L, info, "name");
lua_rawseti (L, -2, 0);
/* Get address of the function. */
if (addr == NULL)
{
lua_getfield (L, info, "addr");
addr = lua_touserdata (L, -1);
lua_pop (L, 1);
}
callable->address = addr;
/* Handle 'return' table. */
lua_getfield (L, info, "ret");
/* Get ignore_retval flag. */
lua_getfield (L, -1, "phantom");
callable->ignore_retval = lua_toboolean (L, -1);
lua_pop (L, 1);
/* Parse return value param. */
callable->retval.dir = GI_DIRECTION_OUT;
callable_param_parse (L, &callable->retval);
ffi_retval = get_ffi_type (&callable->retval);
/* Parse individual arguments. */
for (i = 0; i < nargs; i++)
{
lua_rawgeti (L, info, i + 1);
callable->params[i].dir = GI_DIRECTION_IN;
callable_param_parse (L, &callable->params[i]);
ffi_args[i] = (callable->params[i].dir == GI_DIRECTION_IN)
? get_ffi_type (&callable->params[i]) : &ffi_type_pointer;
}
/* Handle 'throws' flag. */
lua_getfield (L, info, "throws");
callable->throws = lua_toboolean (L, -1);
lua_pop (L, 1);
if (callable->throws)
ffi_args[i] = &ffi_type_pointer;
/* Create ffi_cif. */
if (ffi_prep_cif (&callable->cif, FFI_DEFAULT_ABI,
nargs + callable->throws,
ffi_retval, ffi_args) != FFI_OK)
return luaL_error (L, "ffi_prep_cif failed for parsed");
/* Attach env table to the returned callable instance. */
lua_setfenv (L, -2);
return 1;
}
/* Checks whether given argument is Callable userdata. */
static Callable *
callable_get (lua_State *L, int narg)
{
luaL_checkstack (L, 3, "");
if (lua_getmetatable (L, narg))
{
lua_pushlightuserdata (L, &callable_mt);
lua_rawget (L, LUA_REGISTRYINDEX);
if (lua_rawequal (L, -1, -2))
{
lua_pop (L, 2);
return lua_touserdata (L, narg);
}
}
lua_pushfstring (L, "expected lgi.callable, got %s",
lua_typename (L, lua_type (L, narg)));
luaL_argerror (L, narg, lua_tostring (L, -1));
return NULL;
}
static void
callable_param_destroy (Param *param)
{
if (param->ti)
g_base_info_unref (param->ti);
}
static int
callable_gc (lua_State *L)
{
int i;
/* Unref embedded 'info' field. */
Callable *callable = callable_get (L, 1);
if (callable->info)
g_base_info_unref (callable->info);
/* Destroy all params. */
for (i = 0; i < callable->nargs; i++)
callable_param_destroy (&callable->params[i]);
callable_param_destroy (&callable->retval );
/* Unset the metatable / make the callable unusable */
lua_pushnil (L);
lua_setmetatable (L, 1);
return 0;
}
static void
callable_describe (lua_State *L, Callable *callable, FfiClosure *closure)
{
luaL_checkstack (L, 2, "");
if (closure == NULL)
lua_pushfstring (L, "%p", callable->address);
else
{
gconstpointer ptr;
lua_rawgeti (L, LUA_REGISTRYINDEX, closure->target_ref);
ptr = lua_topointer (L, -1);
if (ptr != NULL)
lua_pushfstring (L, "%s: %p", luaL_typename (L, -1),
lua_topointer (L, -1));
else
lua_pushstring (L, luaL_typename (L, -1));
lua_replace (L, -2);
}
if (callable->info)
{
lua_pushfstring (L, "lgi.%s (%s): ",
(GI_IS_FUNCTION_INFO (callable->info) ? "fun" :
(GI_IS_SIGNAL_INFO (callable->info) ? "sig" :
(GI_IS_VFUNC_INFO (callable->info) ? "vfn" : "cbk"))),
lua_tostring (L, -1));
lua_concat (L, lgi_type_get_name (L, callable->info) + 1);
}
else
{
lua_getfenv (L, 1);
lua_rawgeti (L, -1, 0);
lua_replace (L, -2);
lua_pushfstring (L, "lgi.efn (%s): %s", lua_tostring (L, -2),
lua_tostring (L, -1));
lua_replace (L, -2);
}
lua_replace (L, -2);
}
static int
callable_tostring (lua_State *L)
{
Callable *callable = callable_get (L, 1);
callable_describe (L, callable, NULL);
return 1;
}
static int
callable_param_2c (lua_State *L, Param *param, int narg, int parent,
GIArgument *arg, int callable_index,
Callable *callable, void **args)
{
int nret = 0;
if (param->kind == PARAM_KIND_ENUM && lua_type (L, narg) != LUA_TNUMBER)
{
/* Convert enum symbolic value to numeric one. */
lua_getfenv (L, callable_index);
lua_rawgeti (L, -1, param->repotype_index);
lua_pushvalue (L, narg);
lua_call (L, 1, 1);
narg = -1;
}
if (param->kind != PARAM_KIND_RECORD)
{
if (param->ti)
nret = lgi_marshal_2c (L, param->ti,
param->has_arg_info ? ¶m->ai : NULL,
param->transfer, arg, narg, parent,
callable->info, args + callable->has_self);
else
{
union { GIArgument arg; int i; } *u = (gpointer) arg;
u->i = lua_tonumber (L, narg);
}
/* Stack cleanup from enum value conversion. */
if (narg == -1)
lua_pop (L, 2);
}
else
{
/* Marshal record according to custom information. */
lua_getfenv (L, callable_index);
lua_rawgeti (L, -1, param->repotype_index);
lgi_record_2c (L, narg, &arg->v_pointer, FALSE,
param->transfer != GI_TRANSFER_NOTHING, TRUE, FALSE);
lua_pop (L, 1);
}
return nret;
}
static void
callable_param_2lua (lua_State *L, Param *param, GIArgument *arg,
int parent, int callable_index,
Callable *callable, void **args)
{
if (param->kind != PARAM_KIND_RECORD)
{
if (param->ti)
lgi_marshal_2lua (L, param->ti, callable->info ? ¶m->ai : NULL,
param->dir, param->transfer,
arg, parent, callable->info,
args + callable->has_self);
else
{
union { GIArgument arg; ffi_sarg i; } *u = (gpointer) arg;
lua_pushnumber (L, u->i);
}
}
if (param->kind == PARAM_KIND_TI)
return;
lua_getfenv (L, callable_index);
lua_rawgeti (L, -1, param->repotype_index);
if (param->kind == PARAM_KIND_RECORD)
{
/* Marshal record according to custom information. */
lgi_record_2lua (L, arg->v_pointer,
param->transfer != GI_TRANSFER_NOTHING, parent);
lua_remove (L, -2);
}
else
{
/* Convert enum numeric value to symbolic one. */
lua_pushvalue (L, -3);
lua_gettable (L, -2);
lua_replace (L, -4);
lua_pop (L, 2);
}
}
static int
callable_call (lua_State *L)
{
Param *param;
int i, lua_argi, nret, caller_allocated = 0, nargs;
GIArgument retval, *args;
void **ffi_args, **redirect_out;
GError *err = NULL;
gpointer state_lock = lgi_state_get_lock (L);
Callable *callable = callable_get (L, 1);
/* Make sure that all unspecified arguments are set as nil; during
marshalling we might create temporary values on the stack, which
can be confused with input arguments expected but not passed by
caller. */
lua_settop(L, callable->has_self + callable->nargs + 1);
/* We cannot push more stuff than count of arguments we have. */
luaL_checkstack (L, callable->nargs, "");
/* Prepare data for the call. */
nargs = callable->nargs + callable->has_self;
args = g_newa (GIArgument, nargs);
redirect_out = g_newa (void *, nargs + callable->throws);
ffi_args = g_newa (void *, nargs + callable->throws);
/* Prepare 'self', if present. */
lua_argi = 2;
nret = 0;
if (callable->has_self)
{
GIBaseInfo *parent = g_base_info_get_container (callable->info);
GIInfoType type = g_base_info_get_type (parent);
if (type == GI_INFO_TYPE_OBJECT || type == GI_INFO_TYPE_INTERFACE)
{
args[0].v_pointer =
lgi_object_2c (L, 2, g_registered_type_info_get_g_type (parent),
FALSE, FALSE, FALSE);
nret++;
}
else
{
lgi_type_get_repotype (L, G_TYPE_INVALID, parent);
lgi_record_2c (L, 2, &args[0].v_pointer, FALSE, FALSE, FALSE, FALSE);
nret++;
}
ffi_args[0] = &args[0];
lua_argi++;
}
/* Prepare proper call->ffi_args[] pointing to real args (or
redirects in case of inout/out parameters). Note that this loop
cannot be merged with following marshalling loop, because during
marshalling of closure or arrays marshalling code can read/write
values ahead of currently marshalled value. */
param = &callable->params[0];
for (i = 0; i < callable->nargs; i++, param++)
{
/* Prepare ffi_args and redirection for out/inout parameters. */
int argi = i + callable->has_self;
if (param->dir == GI_DIRECTION_IN)
ffi_args[argi] = &args[argi];
else
{
ffi_args[argi] = &redirect_out[argi];
redirect_out[argi] = &args[argi];
}
if (param->n_closures > 0)
{
args[argi].v_pointer = lgi_closure_allocate (L, param->n_closures);
if (param->call_scoped_user_data)
/* Add guard which releases closure block after the
call. */
*lgi_guard_create (L, lgi_closure_destroy) = args[argi].v_pointer;
}
}
/* Process input parameters. */
nret = 0;
param = &callable->params[0];
for (i = 0; i < callable->nargs; i++, param++)
if (!param->internal)
{
int argi = i + callable->has_self;
if (param->dir != GI_DIRECTION_OUT)
nret += callable_param_2c (L, param, lua_argi++, 0, &args[argi],
1, callable, ffi_args);
/* Special handling for out/caller-alloc structures; we have to
manually pre-create them and store them on the stack. */
else if (callable->info && g_arg_info_is_caller_allocates (¶m->ai)
&& lgi_marshal_2c_caller_alloc (L, param->ti, &args[argi], 0))
{
/* Even when marked as OUT, caller-allocates arguments
behave as if they are actually IN from libffi POV. */
ffi_args[argi] = &args[argi];
/* Move the value on the stack *below* any already present
temporary values. */
lua_insert (L, -nret - 1);
caller_allocated++;
}
else
/* Normal OUT parameters. Ideally we don't have to touch
them, but see https://github.com/pavouk/lgi/issues/118 */
memset (&args[argi], 0, sizeof (args[argi]));
}
else if (param->internal_user_data)
/* Provide userdata for the callback. */
args[i + callable->has_self].v_pointer = callable->user_data;
/* Add error for 'throws' type function. */
if (callable->throws)
{
redirect_out[nargs] = &err;
ffi_args[nargs] = &redirect_out[nargs];
}
/* Unlock the state. */
lgi_state_leave (state_lock);
/* Call the function. */
ffi_call (&callable->cif, callable->address, &retval, ffi_args);
/* Heading back to Lua, lock the state back again. */
lgi_state_enter (state_lock);
/* Pop any temporary items from the stack which might be stored there by
marshalling code. */
lua_pop (L, nret);
/* Handle return value. */
nret = 0;
if (!callable->ignore_retval
&& (callable->retval.ti == NULL
|| (g_type_info_get_tag (callable->retval.ti) != GI_TYPE_TAG_VOID
|| g_type_info_is_pointer (callable->retval.ti))))
{
callable_param_2lua (L, &callable->retval, &retval, LGI_PARENT_IS_RETVAL,
1, callable, ffi_args);
nret++;
lua_insert (L, -caller_allocated - 1);
}
else if (callable->ignore_retval)
{
/* Make sure that returned boolean is converted according to
ffi_call rules. */
union {
GIArgument arg;
ffi_sarg s;
} *ru = (gpointer) &retval;
ru->arg.v_boolean = (gboolean) ru->s;
}
/* Check, whether function threw. */
if (err != NULL)
{
if (nret == 0)
{
lua_pushboolean (L, 0);
nret = 1;
}
/* Wrap error instance into GLib.Error record. */
lgi_type_get_repotype (L, G_TYPE_ERROR, NULL);
lgi_record_2lua (L, err, TRUE, 0);
return nret + 1;
}
/* Process output parameters. */
param = &callable->params[0];
for (i = 0; i < callable->nargs; i++, param++)
if (!param->internal && param->dir != GI_DIRECTION_IN)
{
if (callable->info && g_arg_info_is_caller_allocates (¶m->ai)
&& lgi_marshal_2c_caller_alloc (L, param->ti, NULL,
-caller_allocated - nret))
/* Caller allocated parameter is already marshalled and
lying on the stack. */
caller_allocated--;
else
{
/* Marshal output parameter. */
callable_param_2lua (L, param, &args[i + callable->has_self],
0, 1, callable, ffi_args);
lua_insert (L, -caller_allocated - 1);
}
/* In case that this callable is in ignore-retval mode and
function actually returned FALSE, replace the already
marshalled return value with NULL. */
if (callable->ignore_retval && !retval.v_boolean)
{
lua_pushnil (L);
lua_replace (L, -caller_allocated - 2);
}
nret++;
}
/* When function can throw and we are not returning anything, be
sure to return at least 'true', so that caller can check for
error in a usual way (i.e. by Lua's assert() call). */
if (nret == 0 && callable->throws)
{
lua_pushboolean (L, 1);
nret = 1;
}
g_assert (caller_allocated == 0);
return nret;
}
static int
callable_index (lua_State *L)
{
Callable *callable = callable_get (L, 1);
const gchar *verb = lua_tostring (L, 2);
if (g_strcmp0 (verb, "info") == 0)
return lgi_gi_info_new (L, g_base_info_ref (callable->info));
else if (g_strcmp0 (verb, "params") == 0)
{
int index = 1, i;
Param *param;
lua_newtable (L);
if (callable->has_self)
{
lua_newtable (L);
lua_pushboolean (L, 1);
lua_setfield (L, -2, "in");
lua_rawseti (L, -2, index++);
}
for (i = 0, param = callable->params; i < callable->nargs; i++, param++)
if (!param->internal)
{
lua_newtable (L);
/* Add name. */
if (param->has_arg_info)
{
lua_pushstring (L, g_base_info_get_name (¶m->ai));
lua_setfield (L, -2, "name");
}
/* Add typeinfo. */
if (param->ti)
{
lgi_gi_info_new (L, g_base_info_ref (param->ti));
lua_setfield (L, -2, "typeinfo");
}
/* Add in.out info. */
if (param->dir == GI_DIRECTION_IN ||
param->dir == GI_DIRECTION_INOUT)
{
lua_pushboolean (L, 1);
lua_setfield (L, -2, "in");
}
if (param->dir == GI_DIRECTION_OUT ||
param->dir == GI_DIRECTION_INOUT)
{
lua_pushboolean (L, 1);
lua_setfield (L, -2, "out");
}
lua_rawseti (L, -2, index++);
}
return 1;
}
else if (g_strcmp0 (verb, "user_data") == 0)
{
lua_pushlightuserdata (L, callable->user_data);
return 1;
}
return 0;
}
static int
callable_newindex (lua_State *L)
{
Callable *callable = callable_get (L, 1);
if (g_strcmp0 (lua_tostring (L, 2), "user_data") == 0)
callable->user_data = lua_touserdata (L, 3);
return 0;
}
static const struct luaL_Reg callable_reg[] = {
{ "__gc", callable_gc },
{ "__tostring", callable_tostring },
{ "__call", callable_call },
{ "__index", callable_index },
{ "__newindex", callable_newindex },
{ NULL, NULL }
};
/* Closure callback, called by libffi when C code wants to invoke Lua
callback. */
static void
closure_callback (ffi_cif *cif, void *ret, void **args, void *closure_arg)
{
Callable *callable;
int callable_index;
FfiClosure *closure = closure_arg;
FfiClosureBlock *block = closure->block;
gint res = 0, npos, i, stacktop;
gboolean call;
Param *param;
lua_State *L;
(void)cif;
/* Get access to proper Lua context. */
lgi_state_enter (block->callback.state_lock);
lua_rawgeti (block->callback.L, LUA_REGISTRYINDEX, block->callback.thread_ref);
L = lua_tothread (block->callback.L, -1);
call = (closure->target_ref != LUA_NOREF);
if (call)
{
/* We will call target method, prepare context/thread to do
it. */
if (lua_status (L) != 0)
{
/* Thread is not in usable state for us, it is suspended, we
cannot afford to resume it, because it is possible that
the routine we are about to call is actually going to
resume it. Create new thread instead and switch closure
to its context. */
lua_State *newL = lua_newthread (L);
lua_rawseti (L, LUA_REGISTRYINDEX, block->callback.thread_ref);
L = newL;
}
lua_pop (block->callback.L, 1);
block->callback.L = L;
/* Remember stacktop, this is the position on which we should
expect return values (note that callback_prepare_call already
might have pushed function to be executed to the stack). */
stacktop = lua_gettop (L);
/* Store function to be invoked to the stack. */
lua_rawgeti (L, LUA_REGISTRYINDEX, closure->target_ref);
}
else
{
/* Cleanup the stack of the original thread. */
lua_pop (block->callback.L, 1);
stacktop = lua_gettop (L);
if (lua_status (L) == 0)
/* Thread is not suspended yet, so it contains initial
function at the top of the stack, so count with it. */
stacktop--;
}
/* Get access to Callable structure. */
lua_rawgeti (L, LUA_REGISTRYINDEX, closure->callable_ref);
callable = lua_touserdata (L, -1);
callable_index = lua_gettop (L);
/* Marshall 'self' argument, if it is present. */
npos = 0;
if (callable->has_self)
{
GIBaseInfo *parent = g_base_info_get_container (callable->info);
GIInfoType type = g_base_info_get_type (parent);
gpointer addr = ((GIArgument*) args[0])->v_pointer;
npos++;
if (type == GI_INFO_TYPE_OBJECT || type == GI_INFO_TYPE_INTERFACE)
lgi_object_2lua (L, addr, FALSE, FALSE);
else if (type == GI_INFO_TYPE_STRUCT || type == GI_INFO_TYPE_UNION)
{
lgi_type_get_repotype (L, G_TYPE_INVALID, parent);
lgi_record_2lua (L, addr, FALSE, 0);
}
else
g_assert_not_reached ();
}
/* Marshal input arguments to lua. */
param = callable->params;
for (i = 0; i < callable->nargs; ++i, ++param)
if (!param->internal && param->dir != GI_DIRECTION_OUT)
{
if G_LIKELY (i != 3 || !callable->is_closure_marshal)
{
GIArgument *real_arg = args[i + callable->has_self];
GIArgument arg_value;
if (param->dir == GI_DIRECTION_INOUT)
{
arg_value = *(GIArgument *) real_arg->v_pointer;
real_arg = &arg_value;
}
callable_param_2lua (L, param, real_arg, 0,
callable_index, callable,
args + callable->has_self);
}
else
{
/* Workaround incorrectly annotated but crucial
ClosureMarshal callback. Its 3rd argument is actually
an array of GValue, not a single GValue as missing
annotation suggests. */
guint i, nvals = ((GIArgument *)args[2])->v_uint32;
GValue* vals = ((GIArgument *)args[3])->v_pointer;
lua_createtable (L, nvals, 0);
for (i = 0; i < nvals; ++i)
{
lua_pushnumber (L, i + 1);
lgi_type_get_repotype (L, G_TYPE_VALUE, NULL);
lgi_record_2lua (L, &vals[i], FALSE, 0);
lua_settable (L, -3);
}
}
npos++;
}
/* Remove callable userdata from callable_index, otehrwise they mess
up carefully prepared stack structure. */
lua_remove (L, callable_index);
/* Call it. */
if (call)
{
if (callable->throws)
res = lua_pcall (L, npos, LUA_MULTRET, 0);
else if (lua_pcall (L, npos, LUA_MULTRET, 0) != 0)
{
callable_describe (L, callable, closure);
g_warning ("Error raised while calling '%s': %s",
lua_tostring (L, -1), lua_tostring (L, -2));
lua_pop (L, 2);
}
}
else
{
#if LUA_VERSION_NUM >= 502
res = lua_resume (L, NULL, npos);
#else
res = lua_resume (L, npos);
#endif
if (res == LUA_YIELD)
/* For our purposes is YIELD the same as if the coro really
returned. */
res = 0;
else if (res == LUA_ERRRUN && !callable->throws)
{
/* If closure is not allowed to return errors and coroutine
finished with error, rethrow the error in the context of
the original thread. */
lua_xmove (L, block->callback.L, 1);
lua_error (block->callback.L);
}
/* If coroutine somehow consumed more than expected(?), do not
blow up, adjust to the new situation. */
if (stacktop > lua_gettop (L))
stacktop = lua_gettop (L);
}
/* Reintroduce callable to the stack, we might need it during
marshalling of the response. Put it right before all returns. */
lua_rawgeti (L, LUA_REGISTRYINDEX, closure->callable_ref);
lua_insert (L, stacktop + 1);
callable_index = stacktop + 1;
npos = stacktop + 2;
/* Check, whether we can report an error here. */
if (res == 0)
{
int to_pop;
GITypeTag tag;
/* Make sure that all unspecified returns and outputs are set as
nil; during marshalling we might create temporary values on
the stack, which can be confused with output values expected
but not passed by caller. */
lua_settop(L, lua_gettop (L) + callable->has_self + callable->nargs + 1);
/* Marshal return value from Lua. */
tag = g_type_info_get_tag (callable->retval.ti);
if (tag != GI_TYPE_TAG_VOID
|| g_type_info_is_pointer (callable->retval.ti))
{
if (callable->ignore_retval)
/* Return value should be ignored on Lua side, so we have
to synthesize the return value for C side. We should
return FALSE if next output argument is nil. */
*(ffi_sarg *) ret = lua_isnoneornil (L, npos) ? FALSE : TRUE;
else
{
to_pop = callable_param_2c (L, &callable->retval, npos,
LGI_PARENT_IS_RETVAL, ret,
callable_index, callable,
args + callable->has_self);
if (to_pop != 0)
{
g_warning ("cbk `%s.%s': return (transfer none) %d, unsafe!",
g_base_info_get_namespace (callable->info),
g_base_info_get_name (callable->info), to_pop);
lua_pop (L, to_pop);
}
npos++;
}
}
/* Marshal output arguments from Lua. */
param = callable->params;
for (i = 0; i < callable->nargs; ++i, ++param)
if (!param->internal && param->dir != GI_DIRECTION_IN)
{
gpointer *arg = args[i + callable->has_self];
gboolean caller_alloc =
callable->info && g_arg_info_is_caller_allocates (¶m->ai)
&& g_type_info_get_tag (param->ti) == GI_TYPE_TAG_INTERFACE;
to_pop = callable_param_2c (L, param, npos, caller_alloc
? LGI_PARENT_CALLER_ALLOC : 0, *arg,
callable_index, callable,
args + callable->has_self);
if (to_pop != 0)
{
g_warning ("cbk %s.%s: arg `%s' (transfer none) %d, unsafe!",
g_base_info_get_namespace (callable->info),
g_base_info_get_name (callable->info),
g_base_info_get_name (¶m->ai), to_pop);
lua_pop (L, to_pop);
}
npos++;
}
}
else
{
/* If the function is expected to return errors, create proper
error. */
GError **err = ((GIArgument *) args[callable->has_self +
callable->nargs])->v_pointer;
/* Check, whether thrown error is actually GLib.Error instance. */
lgi_type_get_repotype (L, G_TYPE_ERROR, NULL);
lgi_record_2c (L, -2, err, FALSE, TRUE, TRUE, TRUE);
if (*err == NULL)
{
/* Nope, so come up with something funny. */
GQuark q = g_quark_from_static_string ("lgi-callback-error-quark");
g_set_error_literal (err, q, 1, lua_tostring (L, -1));
lua_pop (L, 1);
}
/* Such function should usually return FALSE, so do it. */
if (g_type_info_get_tag (callable->retval.ti) == GI_TYPE_TAG_BOOLEAN)
*(gboolean *) ret = FALSE;
}
/* If the closure is marked as autodestroy, destroy it now. Note that it is
unfortunately not possible to destroy it directly here, because we would
delete the code under our feet and crash and burn :-(. Instead, we create
marshal guard and leave it to GC to destroy the closure later. */
if (closure->autodestroy)
*lgi_guard_create (L, lgi_closure_destroy) = block;
/* This is NOT called by Lua, so we better leave the Lua stack we
used pretty much tidied. */
lua_settop (L, stacktop);
/* Going back to C code, release the state synchronization. */
lgi_state_leave (block->callback.state_lock);
}
/* Destroys specified closure. */
void
lgi_closure_destroy (gpointer user_data)
{
FfiClosureBlock* block = user_data;
lua_State *L = block->callback.L;
FfiClosure *closure;
int i;
for (i = block->closures_count - 1; i >= -1; --i)
{
closure = (i < 0) ? &block->ffi_closure : block->ffi_closures[i];
if (closure->created)
{
luaL_unref (L, LUA_REGISTRYINDEX, closure->callable_ref);
luaL_unref (L, LUA_REGISTRYINDEX, closure->target_ref);
}
if (i < 0)
luaL_unref (L, LUA_REGISTRYINDEX, block->callback.thread_ref);
ffi_closure_free (closure);
}
}
/* Creates container block for allocated closures. Returns address of
the block, suitable as user_data parameter. */
gpointer
lgi_closure_allocate (lua_State *L, int count)
{
gpointer call_addr;
int i;
/* Allocate header block. */
FfiClosureBlock *block =
ffi_closure_alloc (offsetof (FfiClosureBlock, ffi_closures)
+ (--count * sizeof (FfiClosure*)), &call_addr);
block->ffi_closure.created = 0;
block->ffi_closure.call_addr = call_addr;
block->ffi_closure.block = block;
block->closures_count = count;
/* Allocate all additional closures. */
for (i = 0; i < count; ++i)
{
block->ffi_closures[i] = ffi_closure_alloc (sizeof (FfiClosure),
&call_addr);
block->ffi_closures[i]->created = 0;
block->ffi_closures[i]->call_addr = call_addr;
block->ffi_closures[i]->block = block;
}
/* Store reference to target Lua thread. */
block->callback.L = L;
lua_pushthread (L);
block->callback.thread_ref = luaL_ref (L, LUA_REGISTRYINDEX);
/* Retrieve and remember state lock. */
block->callback.state_lock = lgi_state_get_lock (L);
return block;
}
/* Creates closure from Lua function to be passed to C. */
gpointer
lgi_closure_create (lua_State *L, gpointer user_data,
int target, gboolean autodestroy)
{
FfiClosureBlock* block = user_data;
FfiClosure *closure;
Callable *callable;
gpointer call_addr;
int i;
/* Find pointer to target FfiClosure. */
for (closure = &block->ffi_closure, i = 0; closure->created; ++i)
{
g_assert (i < block->closures_count);
closure = block->ffi_closures[i];
}
/* Prepare callable and store reference to it. */
callable = lua_touserdata (L, -1);
call_addr = closure->call_addr;
closure->created = 1;
closure->autodestroy = autodestroy;
closure->callable_ref = luaL_ref (L, LUA_REGISTRYINDEX);
if (!lua_isthread (L, target))
{
lua_pushvalue (L, target);
closure->target_ref = luaL_ref (L, LUA_REGISTRYINDEX);
}
else
{
/* Switch thread_ref to actual target thread. */
lua_pushvalue (L, target);
lua_rawseti (L, LUA_REGISTRYINDEX, block->callback.thread_ref);
closure->target_ref = LUA_NOREF;
}
/* Create closure. */
if (ffi_prep_closure_loc (&closure->ffi_closure, &callable->cif,
closure_callback, closure, call_addr) != FFI_OK)
{
lua_concat (L, lgi_type_get_name (L, callable->info));
luaL_error (L, "failed to prepare closure for `%'", lua_tostring (L, -1));
return NULL;
}
return call_addr;
}
/* Creates new Callable instance according to given gi.info. Lua prototype:
callable = callable.new(callable_info[, addr]) or
callable = callable.new(description_table[, addr]) */
static int
callable_new (lua_State *L)
{
gpointer addr = lua_touserdata (L, 2);
if (lua_istable (L, 1))
return lgi_callable_parse (L, 1, addr);
else
return lgi_callable_create (L, *(GICallableInfo **)
luaL_checkudata (L, 1, LGI_GI_INFO),
addr);
}
/* Callable module public API table. */
static const luaL_Reg callable_api_reg[] = {
{ "new", callable_new },
{ NULL, NULL }
};
void
lgi_callable_init (lua_State *L)
{
/* Register callable metatable. */
lua_pushlightuserdata (L, &callable_mt);
lua_newtable (L);
luaL_register (L, NULL, callable_reg);
lua_rawset (L, LUA_REGISTRYINDEX);
/* Create cache for callables. */
lgi_cache_create (L, &callable_cache, NULL);
/* Create public api for callable module. */
lua_newtable (L);
luaL_register (L, NULL, callable_api_reg);
lua_setfield (L, -2, "callable");
}
|