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
|
/*
* Copyright (C) 2003-2006 by the gtk2-perl team (see the file AUTHORS for
* the full list)
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or (at your
* option) any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
* License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA.
*
* $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Glib/GObject.xs,v 1.67 2006/08/07 18:17:19 kaffeetisch Exp $
*/
/*
* the POD directives in here will be stripped by xsubpp before compilation,
* and are intended to be extracted by podselect when creating xs api
* reference documentation. pod must NOT appear within C comments, because
* it gets replaced by a comment that says "embedded pod stripped".
*/
=head2 GObject
To deal with the intricate interaction of the different reference-counting
semantics of Perl objects versus GObjects, the bindings create a combined
PerlObject+GObject, with the GObject's pointer in magic attached to the Perl
object, and the Perl object's pointer in the GObject's user data. Thus it's
not really a "wrapper", but we refer to it as one, because "combined Perl
object + GObject" is a cumbersome and confusing mouthful.
GObjects are represented as blessed hash references. The GObject user data
mechanism is not typesafe, and thus is used only for unsigned integer values;
the Perl-level hash is available for any type of user data. The combined
nature of the wrapper means that data stored in the hash will stick around as
long as the object is alive.
Since the C pointer is stored in attached magic, the C pointer is not available
to the Perl developer via the hash object, so there's no need to worry about
breaking it from perl.
Propers go to Marc Lehmann for dreaming most of this up.
=over
=cut
#include "gperl.h"
#include "gperl-private.h" /* for GPERL_SET_CONTEXT and
* _gperl_sv_from_value_internal */
typedef struct _ClassInfo ClassInfo;
typedef struct _SinkFunc SinkFunc;
struct _ClassInfo {
GType gtype;
char * package;
gboolean initialized;
};
struct _SinkFunc {
GType gtype;
GPerlObjectSinkFunc func;
};
static GHashTable * types_by_type = NULL;
static GHashTable * types_by_package = NULL;
/* store outside of the class info maps any options we expect to be sparse;
* this will save us a fair amount of space. */
static GHashTable * nowarn_by_type = NULL;
static GArray * sink_funcs = NULL;
static GQuark wrapper_quark; /* this quark stores the object's wrapper sv */
/* what should be done here */
#define GPERL_THREAD_SAFE !GPERL_DISABLE_THREADSAFE
#if GPERL_THREAD_SAFE
/* keep a list of all gobjects */
static gboolean perl_gobject_tracking = FALSE;
static GHashTable * perl_gobjects = NULL;
G_LOCK_DEFINE_STATIC (perl_gobjects);
#endif
/* thread safety locks for the modifiables above */
G_LOCK_DEFINE_STATIC (types_by_type);
G_LOCK_DEFINE_STATIC (types_by_package);
G_LOCK_DEFINE_STATIC (nowarn_by_type);
G_LOCK_DEFINE_STATIC (sink_funcs);
static ClassInfo *
class_info_new (GType gtype,
const char * package)
{
ClassInfo * class_info;
class_info = g_new0 (ClassInfo, 1);
class_info->gtype = gtype;
class_info->package = g_strdup (package);
class_info->initialized = FALSE;
return class_info;
}
static void
class_info_destroy (ClassInfo * class_info)
{
if (class_info) {
g_free (class_info->package);
g_free (class_info);
}
}
static void
class_info_finish_loading (ClassInfo * class_info)
{
char * child_isa_full;
AV * isa;
AV * new_isa;
int i, items;
#ifdef NOISY
static int depth = 0;
char leader[50] = "";
depth++;
for (i = 0 ; i < depth ; i++)
leader[i] = ' ';
leader[i] = '\0';
warn ("%s%s(0x%p) -> %s\n",
leader, __FUNCTION__, class_info, class_info->package);
#endif
child_isa_full = g_strconcat (class_info->package, "::ISA", NULL);
isa = get_av (child_isa_full, FALSE); /* supposed to exist already */
if (!isa)
croak ("internal inconsistency -- finishing lazy loading, "
"but %s::ISA does not exist", class_info->package);
g_free (child_isa_full);
/*
* Rather than just blowing away the old @ISA and replacing it with
* one of our own, we need to replace the _LazyLoader marker with
* the proper new info. This is because some classes may need to
* have interfaces appear in @ISA *before* the parent class, in order
* to resolve name clashes -- think of Gtk2::TreeModel::get versus
* Glib::Object::get, for example.
*
* Thus, this will be a little roundabout.
*/
new_isa = newAV ();
items = av_len (isa) + 1;
for (i = 0 ; i < items ; i++) {
SV ** svp = av_fetch (isa, i, FALSE);
SV * sv;
if (!svp || !(sv = *svp))
continue;
if (strEQ (SvPV_nolen (sv), "Glib::Object::_LazyLoader")) {
/* omit _LazyLoader, fill with proper info */
GType parent_type;
GType *interfaces;
guint n_interfaces;
const char * package;
int i;
parent_type = g_type_parent (class_info->gtype);
if (!parent_type)
/* we just found GObject or GInterface.
* this is legal. */
continue;
if (parent_type == G_TYPE_INTERFACE)
/* no interested in setting this up. */
continue;
/* possibly recurse, loading all the way down to
* GObject if necessary */
package = gperl_object_package_from_type (parent_type);
if (!package) {
warn ("WHOA! parent %s of %s is not an object"
" or interface!",
g_type_name (parent_type),
g_type_name (class_info->gtype));
continue;
}
av_push (new_isa, newSVpv (package, 0));
/* add in any interfaces we can find. */
interfaces = g_type_interfaces (class_info->gtype,
&n_interfaces);
for (i = 0 ; interfaces[i] != 0 ; i++) {
package = gperl_object_package_from_type
(interfaces[i]);
if (package)
av_push (new_isa,
newSVpv (package, 0));
else
warn ("interface type %s(%d) is not"
" registered",
g_type_name (interfaces[i]),
interfaces[i]);
}
if (interfaces)
g_free (interfaces);
} else {
av_push (new_isa, SvREFCNT_inc (sv));
}
}
/* copy back to isa */
av_clear (isa);
items = av_len (new_isa) + 1;
for (i = 0 ; i < items ; i++) {
SV ** svp = av_fetch (new_isa, i, FALSE);
if (svp && *svp)
av_push (isa, SvREFCNT_inc (*svp));
else
warn ("bad pointer inside av\n");
}
av_clear (new_isa);
av_undef (new_isa);
class_info->initialized = TRUE;
#ifdef NOISY
warn ("%sdone\n", leader);
depth--;
#endif
}
=item void gperl_register_object (GType gtype, const char * package)
tell the GPerl type subsystem what Perl package corresponds with a given
GObject by GType. automagically sets up @I<package>::ISA for you.
note that @ISA will not be created for gtype until gtype's parent has
been registered. if you are experiencing strange problems with a class'
@ISA not being set up, change the order in which you register them.
=cut
void
gperl_register_object (GType gtype,
const char * package)
{
ClassInfo * class_info;
G_LOCK (types_by_type);
G_LOCK (types_by_package);
if (!types_by_type) {
/* we put the same data pointer into each hash table, so we
* must only associate the destructor with one of them.
* also, for the string-keyed hashes, the keys will be
* destroyed by the ClassInfo destructor, so we don't need
* a key_destroy_func. */
types_by_type = g_hash_table_new_full (g_direct_hash,
g_direct_equal,
NULL,
(GDestroyNotify)
class_info_destroy);
types_by_package = g_hash_table_new_full (g_str_hash,
g_str_equal,
NULL,
NULL);
}
class_info = class_info_new (gtype, package);
g_hash_table_insert (types_by_type,
(gpointer) class_info->gtype, class_info);
g_hash_table_insert (types_by_package, class_info->package, class_info);
/* warn ("registered class %s to package %s\n", class_info->class, class_info->package); */
/* defer the actual ISA setup to Glib::Object::_LazyLoader */
gperl_set_isa (package, "Glib::Object::_LazyLoader");
G_UNLOCK (types_by_type);
G_UNLOCK (types_by_package);
}
=item void gperl_register_sink_func (GType gtype, GPerlObjectSinkFunc func)
Tell gperl_new_object() to use I<func> to claim ownership of objects derived
from I<gtype>.
gperl_new_object() always refs a GObject when wrapping it for the first time.
To have the Perl wrapper claim ownership of a GObject as part of
gperl_new_object(), you unref the object after ref'ing it. however, different
GObject subclasses have different ways to claim ownership; for example,
GtkObject simply requires you to call gtk_object_sink(). To make this concept
generic, this function allows you to register a function to be called when then
wrapper should claim ownership of the object. The I<func> registered for a
given I<type> will be called on any object for which C<< g_type_isa
(G_TYPE_OBJECT (object), type) >> succeeds.
If no sinkfunc is found for an object, g_object_unref() will be used.
Even though GObjects don't need sink funcs, we need to have them in Glib
as a hook for upstream objects. If we create a GtkObject (or any
other type of object which uses a different way to claim ownership) via
Glib::Object->new, any upstream wrappers, such as gtk2perl_new_object(), will
B<not> be called. Having a sink func facility down here enables us always to
do the right thing.
=cut
/*
* this stuff is directly inspired by pygtk. i didn't actually copy
* and paste the code, but it sure looks like i did, down to the names.
* hey, they were the obvious names!
*
* for the record, i think this is a rather dodgy way to do sink funcs
* --- it presumes that you'll find the right one first; i prepend new
* registrees in the hopes that this will work out, but nothing guarantees
* that this will work. to do it right, the wrappers need to have
* some form of inherited vtable or something... but i've had enough
* problems just getting the object caching working, so i can't really
* mess with that right now.
*/
void
gperl_register_sink_func (GType gtype,
GPerlObjectSinkFunc func)
{
SinkFunc sf;
G_LOCK (sink_funcs);
if (!sink_funcs)
sink_funcs = g_array_new (FALSE, FALSE, sizeof (SinkFunc));
sf.gtype = gtype;
sf.func = func;
g_array_prepend_val (sink_funcs, sf);
G_UNLOCK (sink_funcs);
}
/*
* helper for gperl_new_object; do whatever you have to do to this
* object to ensure that the calling code now owns the object. assumes
* the object has already been ref'd once. to do this, we look up the
* proper sink func; if none has been registered for this type, then
* just call g_object_unref.
*/
static void
gperl_object_take_ownership (GObject * object)
{
G_LOCK (sink_funcs);
if (sink_funcs) {
guint i;
for (i = 0 ; i < sink_funcs->len ; i++)
if (g_type_is_a (G_OBJECT_TYPE (object),
g_array_index (sink_funcs,
SinkFunc, i).gtype)) {
g_array_index (sink_funcs,
SinkFunc, i).func (object);
G_UNLOCK (sink_funcs);
return;
}
}
G_UNLOCK (sink_funcs);
g_object_unref (object);
}
=item void gperl_object_set_no_warn_unreg_subclass (GType gtype, gboolean nowarn)
In versions 1.00 through 1.10x of Glib, the bindings required all types
to be registered ahead of time. Upon encountering an unknown type, the
bindings would emit a warning to the effect of "unknown type 'Foo';
representing as first known parent type 'Bar'". However, for some
types, such as GtkStyle or GdkGC, the actual object returned is an
instance of a child type of a private implementation (e.g., a theme
engine ("BlueCurveStyle") or gdk backend ("GdkGCX11")); we neither can
nor should have registered names for these types. Therefore, it is
possible to tell the bindings not to warn about these unregistered
subclasses, and simply represent them as the parent type.
With 1.12x, the bindings will automatically register unknown classes
into the namespace Glib::Object::_Unregistered to avoid possible
breakage resulting from unknown ancestors of known children. To
preserve the old registered-as-unregistered behavior, the value
installed by this function is used to prevent the _Unregistered mapping
for such private backend classes.
Note: this assumes I<gtype> has already been registered with
gperl_register_object().
=cut
void
gperl_object_set_no_warn_unreg_subclass (GType gtype,
gboolean nowarn)
{
G_LOCK (nowarn_by_type);
if (!nowarn_by_type) {
if (!nowarn)
return;
nowarn_by_type = g_hash_table_new (g_direct_hash,
g_direct_equal);
}
g_hash_table_insert (nowarn_by_type,
(gpointer) gtype,
GINT_TO_POINTER (nowarn));
G_UNLOCK (nowarn_by_type);
}
static gboolean
gperl_object_get_no_warn_unreg_subclass (GType gtype)
{
gboolean result;
G_LOCK (nowarn_by_type);
if (!nowarn_by_type)
result = FALSE;
else
result = GPOINTER_TO_INT
(g_hash_table_lookup (nowarn_by_type,
(gpointer) gtype));
G_UNLOCK (nowarn_by_type);
return result;
}
=item const char * gperl_object_package_from_type (GType gtype)
Get the package corresponding to I<gtype>. If I<gtype> is not a GObject
or GInterface, returns NULL. If I<gtype> is not registered to a package
name, a new name of the form C<Glib::Object::_Unregistered::$c_type_name>
will be created, used to register the class, and then returned.
=cut
const char *
gperl_object_package_from_type (GType gtype)
{
ClassInfo * class_info;
if (!g_type_is_a (gtype, G_TYPE_OBJECT) &&
!g_type_is_a (gtype, G_TYPE_INTERFACE))
return NULL;
if (!types_by_type)
croak ("internal problem: gperl_object_package_from_type "
"called before any classes were registered");
G_LOCK (types_by_type);
class_info = (ClassInfo *)
g_hash_table_lookup (types_by_type, (gpointer) gtype);
G_UNLOCK (types_by_type);
if (!class_info) {
/*
* Walk up the ancestry to see if we're the child of a type
* whose children are private. In the old days, we called
* this "no-warn", to suppress warnings about unregistered
* types (e.g. Styles, GCs, etc). Now we'll use it to
* map "private" GTypes to known parent classes.
*/
GType parent = gtype;
while (0 != (parent = g_type_parent (parent))) {
if (gperl_object_get_no_warn_unreg_subclass (parent)) {
/* Use this class's ClassInfo instead. */
class_info = (ClassInfo *)
g_hash_table_lookup (types_by_type,
(gpointer) parent);
break;
}
}
}
if (!class_info) {
gchar * package;
package = g_strconcat ("Glib::Object::_Unregistered::",
g_type_name (gtype), NULL);
/* XXX find a way to do this without locking twice */
gperl_register_object (gtype, package);
g_free (package);
G_LOCK (types_by_type);
class_info = (ClassInfo*)
g_hash_table_lookup (types_by_type, (gpointer) gtype);
G_UNLOCK (types_by_type);
}
g_assert (class_info);
if (!class_info->initialized) {
/* do a proper @ISA setup for this guy. */
class_info_finish_loading (class_info);
}
return class_info->package;
}
=item HV * gperl_object_stash_from_type (GType gtype)
Get the stash corresponding to I<gtype>; returns NULL if I<gtype> is
not registered. The stash is useful for C<bless>ing.
=cut
HV *
gperl_object_stash_from_type (GType gtype)
{
const char * package = gperl_object_package_from_type (gtype);
if (package)
return gv_stashpv (package, TRUE);
else
return NULL;
}
=item GType gperl_object_type_from_package (const char * package)
Inverse of gperl_object_package_from_type(), returns 0 if I<package>
is not registered.
=cut
GType
gperl_object_type_from_package (const char * package)
{
if (types_by_package) {
ClassInfo * class_info;
G_LOCK (types_by_package);
class_info = (ClassInfo *)
g_hash_table_lookup (types_by_package, package);
G_UNLOCK (types_by_package);
if (class_info)
return class_info->gtype;
else
return 0;
} else
croak ("internal problem: gperl_object_type_from_package "
"called before any classes were registered");
return 0; /* not reached */
}
/*
* Manipulate a pointer to indicate that an SV is undead.
* Relies on SV pointers being word-aligned.
*/
#define IS_UNDEAD(x) (PTR2UV(x) & 1)
#define MAKE_UNDEAD(x) INT2PTR(void*, PTR2UV(x) | 1)
#define REVIVE_UNDEAD(x) INT2PTR(void*, PTR2UV(x) & ~1)
/*
* this function is called whenever the gobject gets destroyed. this only
* happens if the perl object is no longer referenced anywhere else, so
* put it to final rest here.
*/
static void
gobject_destroy_wrapper (SV *obj)
{
GPERL_SET_CONTEXT;
if (PL_in_clean_objs)
return;
#ifdef NOISY
warn ("gobject_destroy_wrapper (%p)[%d]", obj,
SvREFCNT ((SV*)REVIVE_UNDEAD(obj)));
#endif
obj = REVIVE_UNDEAD(obj);
sv_unmagic (obj, PERL_MAGIC_ext);
/* we might want to optimize away the call to DESTROY here for non-perl classes. */
SvREFCNT_dec (obj);
}
static void
update_wrapper (GObject *object, gpointer obj)
{
/* printf("update_wrapper [%p] (%p)\n", object, obj); */
g_object_steal_qdata (object, wrapper_quark);
g_object_set_qdata_full (object,
wrapper_quark,
obj,
(GDestroyNotify)gobject_destroy_wrapper);
}
=item SV * gperl_new_object (GObject * object, gboolean own)
Use this function to get the perl part of a GObject. If I<object>
has never been seen by perl before, a new, empty perl object will
be created and added to a private key under I<object>'s qdata. If
I<object> already has a perl part, a new reference to it will be
created. The gobject + perl object together form a combined object that
is properly refcounted, i.e. both parts will stay alive as long as at
least one of them is alive, and only when both perl object and gobject are
no longer referenced will both be freed.
The perl object will be blessed into the package corresponding to the GType
returned by calling G_OBJECT_TYPE() on I<object>; if that class has not
been registered via gperl_register_object(), this function will emit a
warning to that effect (with warn()), and attempt to bless it into the
first known class in the object's ancestry. Since Glib::Object is
already registered, you'll get a Glib::Object if you are lazy, and thus
this function can fail only if I<object> isn't descended from GObject,
in which case it croaks. (In reality, if you pass a non-GObject to this
function, you'll be lucky if you don't get a segfault, as there's not
really a way to trap that.) In practice these warnings can be unavoidable,
so you can use gperl_object_set_no_warn_unreg_subclass() to quell them
on a class-by-class basis.
However, when perl code is calling a GObject constructor (any function
which returns a new GObject), call gperl_new_object() with I<own> set to
%TRUE; this will cause the first matching sink function to be called
on the GObject to claim ownership of that object, so that it will be
destroyed when the perl object goes out of scope. The default sink func
is g_object_unref(); other types should supply the proper function;
e.g., GtkObject should use gtk_object_sink() here.
Returns the blessed perl object, or #&PL_sv_undef if object was #NULL.
=cut
SV *
gperl_new_object (GObject * object,
gboolean own)
{
SV *obj;
SV *sv;
/* take the easy way out if we can */
if (!object) {
#ifdef NOISY
warn ("gperl_new_object (NULL) => undef");
#endif
return &PL_sv_undef;
}
if (!G_IS_OBJECT (object))
croak ("object %p is not really a GObject", object);
/* fetch existing wrapper_data */
obj = (SV *)g_object_get_qdata (object, wrapper_quark);
if (!obj) {
/* create the perl object */
GType gtype = G_OBJECT_TYPE (object);
HV *stash = gperl_object_stash_from_type (gtype);
/* We should only get NULL for the stash here if gtype is
* neither a GObject nor GInterface. We filtered out all
* non-GObject types a few lines back. */
g_assert (stash != NULL);
/*
* Create the "object", a hash.
*
* This does not need to be a HV, the only problem is finding
* out what to use, and HV is certainly the way to go for any
* built-in objects.
*/
/* this increases the combined object's refcount. */
obj = (SV *)newHV ();
/* attach magic */
sv_magic (obj, 0, PERL_MAGIC_ext, (const char *)object, 0);
/* The SV has a ref to the C object. If we are to own this
* object, then any other references will be taken care of
* below in take_ownership */
g_object_ref (object);
/* create the wrapper to return, the _noinc decreases the
* combined refcount by one. */
sv = newRV_noinc (obj);
/* bless into the package */
sv_bless (sv, stash);
/* attach it to the gobject */
update_wrapper (object, obj);
/* printf("creating new wrapper for [%p] (%p)\n", object, obj); */
/* the noinc is so that the SV (initially) exists only as long
* as the perl code needs it. When the DESTROY gets called, we
* check and see if the SV is the only referer to the C object,
* and if so remove both. Otherwise, the SV will become
* "undead," to be either revived or destroyed with the C
* object */
#ifdef NOISY
warn ("gperl_new_object%d %s(%p)[%d] => %s (%p) (NEW)", own,
G_OBJECT_TYPE_NAME (object), object, object->ref_count,
gperl_object_package_from_type (G_OBJECT_TYPE (object)),
SvRV (sv));
#endif
} else {
/* create the wrapper to return, increases the combined
* refcount by one. */
/* if the SV is undead, revive it */
if (IS_UNDEAD(obj)) {
g_object_ref (object);
obj = REVIVE_UNDEAD(obj);
update_wrapper (object, obj);
sv = newRV_noinc (obj);
/* printf("reviving undead wrapper for [%p] (%p)\n", object, obj); */
} else {
/* printf("reusing previous wrapper for %p\n", obj); */
sv = newRV_inc (obj);
}
}
#ifdef NOISY
warn ("gperl_new_object%d %s(%p)[%d] => %s (%p)[%d] (PRE-OWN)", own,
G_OBJECT_TYPE_NAME (object), object, object->ref_count,
gperl_object_package_from_type (G_OBJECT_TYPE (object)),
SvRV (sv), SvREFCNT (SvRV (sv)));
#endif
if (own)
gperl_object_take_ownership (object);
#if GPERL_THREAD_SAFE
if(perl_gobject_tracking)
{
G_LOCK (perl_gobjects);
/*g_printerr ("adding object: 0x%p - %d\n", object, object->ref_count);*/
if (!perl_gobjects)
perl_gobjects = g_hash_table_new (g_direct_hash, g_direct_equal);
g_hash_table_insert (perl_gobjects, (gpointer)object, (gpointer)1);
G_UNLOCK (perl_gobjects);
}
#endif
return sv;
}
=item GObject * gperl_get_object (SV * sv)
retrieve the GObject pointer from a Perl object. Returns NULL if I<sv> is not
linked to a GObject.
Note, this one is not safe -- in general you want to use
gperl_get_object_check().
=cut
GObject *
gperl_get_object (SV * sv)
{
MAGIC *mg;
if (!sv || !SvOK (sv) || !SvROK (sv) || !(mg = mg_find (SvRV (sv), PERL_MAGIC_ext)))
return NULL;
return (GObject *) mg->mg_ptr;
}
=item GObject * gperl_get_object_check (SV * sv, GType gtype);
croaks if I<sv> is undef or is not blessed into the package corresponding
to I<gtype>. use this for bringing parameters into xsubs from perl.
Returns the same as gperl_get_object() (provided it doesn't croak first).
=cut
GObject *
gperl_get_object_check (SV * sv,
GType gtype)
{
const char * package;
package = gperl_object_package_from_type (gtype);
if (!package)
croak ("INTERNAL: GType %s (%d) is not registered with GPerl!",
g_type_name (gtype), gtype);
if (!sv || !SvROK (sv) || !sv_derived_from (sv, package))
croak ("%s is not of type %s",
gperl_format_variable_for_output (sv),
package);
return gperl_get_object (sv);
}
=item SV * gperl_object_check_type (SV * sv, GType gtype)
Essentially the same as gperl_get_object_check().
This croaks if the types aren't compatible.
=cut
SV *
gperl_object_check_type (SV * sv,
GType gtype)
{
gperl_get_object_check (sv, gtype);
return sv;
}
/* helper for g_object_[gs]et_parameter */
static void
init_property_value (GObject * object,
const char * name,
GValue * value)
{
GParamSpec * pspec;
pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (object),
name);
if (!pspec) {
const char * classname =
gperl_object_package_from_type (G_OBJECT_TYPE (object));
if (!classname)
classname = G_OBJECT_TYPE_NAME (object);
croak ("type %s does not support property '%s'",
classname, name);
}
g_value_init (value, G_PARAM_SPEC_VALUE_TYPE (pspec));
}
=item typedef GObject GObject_noinc
=item typedef GObject GObject_ornull
=item newSVGObject(obj)
=item newSVGObject_noinc(obj)
=item SvGObject(sv)
=item SvGObject_ornull(sv)
=back
=cut
/*
* $sv = $object->{name}
*
* if the key doesn't exist with name, convert - to _ and try again.
* that is, support both "funny-name" and "funny_name".
*
* if create is true, autovivify the key (and always return a value).
* if create is false, returns NULL is there is no such key.
*/
SV *
_gperl_fetch_wrapper_key (GObject * object,
const char * name,
gboolean create)
{
SV ** svp;
SV * svname;
HV * wrapper_hash;
wrapper_hash = g_object_get_qdata (object, wrapper_quark);
/* we don't care whether the wrapper is alive or undead. forcibly
* remove the undead bit, or the pointer will be unusable. */
wrapper_hash = REVIVE_UNDEAD (wrapper_hash);
svname = newSVpv (name, strlen (name));
svp = hv_fetch (wrapper_hash, SvPV_nolen (svname), SvCUR (svname),
FALSE); /* never create on the first try; prefer
* prefer to create the second version. */
if (!svp) {
/* the key doesn't exist with that name. do s/-/_/g and
* try again. */
register char * c;
for (c = SvPV_nolen (svname); c <= SvEND (svname) ; c++)
if (*c == '-')
*c = '_';
svp = hv_fetch (wrapper_hash,
SvPV_nolen (svname), SvCUR (svname),
create);
}
SvREFCNT_dec (svname);
return (svp ? *svp : NULL);
}
#if GPERL_THREAD_SAFE
static void
_inc_ref_and_count (GObject * key, gint value, gpointer user_data)
{
PERL_UNUSED_VAR (user_data);
g_object_ref (key);
g_hash_table_replace (perl_gobjects, key, (gpointer)++value);
}
#endif
MODULE = Glib::Object PACKAGE = Glib::Object PREFIX = g_object_
#if GPERL_THREAD_SAFE
=for apidoc __hide__
Users shouldn't know this exists.
This is part of the machinery to support object tracking in a threaded
environment. When perl spawns a new interpreter thread, it invokes
CLONE on all packages -- NOT on objects. This is our only hook into
that process.
=cut
void
CLONE (gchar * class)
CODE:
if (perl_gobject_tracking && strcmp (class, "Glib::Object") == 0)
{
G_LOCK (perl_gobjects);
/*g_printerr ("we're in clone: %s\n", class);*/
g_hash_table_foreach (perl_gobjects,
(GHFunc)_inc_ref_and_count, NULL);
G_UNLOCK (perl_gobjects);
}
#endif
=for apidoc set_threadsafe
Enables/disables threadsafe gobject tracking. Returns whether or not tracking
will be successful and thus whether using perl ithreads will be possible.
=cut
gboolean
set_threadsafe (class, gboolean threadsafe)
CODE:
#if GPERL_THREAD_SAFE
RETVAL = perl_gobject_tracking = threadsafe;
#else
PERL_UNUSED_VAR (threadsafe);
RETVAL = FALSE;
#endif
OUTPUT:
RETVAL
=for object Glib::Object Bindings for GObject
=cut
=for position DESCRIPTION
=head1 DESCRIPTION
GObject is the base object class provided by the gobject library. It provides
object properties with a notification system, and emittable signals.
Glib::Object is the corresponding Perl object class. Glib::Objects are
represented by blessed hash references, with a magical connection to the
underlying C object.
=cut
BOOT:
gperl_register_object (G_TYPE_OBJECT, "Glib::Object");
#if GLIB_CHECK_VERSION (2, 10, 0)
gperl_register_object (G_TYPE_INITIALLY_UNOWNED, "Glib::InitiallyUnowned");
#endif
wrapper_quark = g_quark_from_static_string ("Perl-wrapper-object");
void
DESTROY (SV *sv)
CODE:
GObject *object = gperl_get_object (sv);
if (!object) /* Happens on object destruction. */
return;
#ifdef NOISY
warn ("DESTROY< (%p)[%d] => %s (%p)[%d]",
object, object->ref_count,
gperl_object_package_from_type (G_OBJECT_TYPE (object)),
sv, SvREFCNT (SvRV(sv)));
#endif
/* gobject object still exists, so take back the refcount we lend it. */
/* this operation does NOT change the refcount of the combined object. */
if (PL_in_clean_objs) {
/* be careful during global destruction. basically,
* don't bother, since refcounting is no longer meaningful. */
sv_unmagic (SvRV (sv), PERL_MAGIC_ext);
g_object_steal_qdata (object, wrapper_quark);
} else {
SvREFCNT_inc (SvRV (sv));
if (object->ref_count > 1) {
/* become undead */
SV *obj = SvRV(sv);
update_wrapper (object, MAKE_UNDEAD(obj));
/* printf("zombies! [%p] (%p)\n", object, obj);*/
}
}
#if GPERL_THREAD_SAFE
if(perl_gobject_tracking)
{
gint count;
G_LOCK (perl_gobjects);
count = (int)g_hash_table_lookup (perl_gobjects, object);
count--;
if (count > 0)
{
/*g_printerr ("decing: %p - %d\n", object, count);*/
g_hash_table_replace (perl_gobjects, object,
(gpointer)count);
}
else
{
/*g_printerr ("removing: %p\n", object);*/
g_hash_table_remove (perl_gobjects, object);
}
G_UNLOCK (perl_gobjects);
}
#endif
g_object_unref (object);
#ifdef NOISY
warn ("DESTROY> (%p) done\n", object);
/*
warn ("DESTROY> (%p)[%d] => %s (%p)[%d]",
object, object->ref_count,
gperl_object_package_from_type (G_OBJECT_TYPE (object)),
sv, SvREFCNT (SvRV(sv)));
*/
#endif
=for apidoc
=for signature object = $class->new (...)
=for arg ... of key/value pairs, property values to set on creation
Instantiate a Glib::Object of type I<$class>. Any key/value pairs in
I<...> are used to set properties on the new object; see C<set>.
This is designed to be inherited by Perl-derived subclasses (see
L<Glib::Object::Subclass>), but you can actually use it to create
any GObject-derived type.
=cut
SV *
g_object_new (class, ...)
const char *class
PREINIT:
int n_params = 0;
GParameter * params = NULL;
GType object_type;
GObject * object;
GObjectClass *oclass = NULL;
CODE:
#define FIRST_ARG 1
object_type = gperl_object_type_from_package (class);
if (!object_type)
croak ("%s is not registered with gperl as an object type",
class);
if (G_TYPE_IS_ABSTRACT (object_type))
croak ("cannot create instance of abstract (non-instantiatable)"
" type `%s'", g_type_name (object_type));
if (items > FIRST_ARG) {
int i;
if (NULL == (oclass = g_type_class_ref (object_type)))
croak ("could not get a reference to type class");
n_params = (items - FIRST_ARG) / 2;
params = g_new0 (GParameter, n_params);
for (i = 0 ; i < n_params ; i++) {
const char * key = SvPV_nolen (ST (FIRST_ARG+i*2+0));
GParamSpec * pspec;
pspec = g_object_class_find_property (oclass, key);
if (!pspec) {
/* clean up... */
int j;
for (j = 0 ; j < i ; j++)
g_value_unset (¶ms[j].value);
g_free (params);
/* and bail out. */
croak ("type %s does not support property '%s'",
class, key);
}
g_value_init (¶ms[i].value,
G_PARAM_SPEC_VALUE_TYPE (pspec));
/* note: this croaks if there is a problem. this is
* usually the right thing to do, because if it
* doesn't know how to convert the value, then there's
* something seriously wrong; however, it means that
* if there is a problem, all non-trivial values we've
* converted will be leaked. */
gperl_value_from_sv (¶ms[i].value,
ST (FIRST_ARG+i*2+1));
params[i].name = key; /* will be valid until this
* xsub is finished */
}
}
#undef FIRST_ARG
object = g_object_newv (object_type, n_params, params);
/* this wrapper *must* own this object!
* because we've been through initialization, the perl object
* will already exist at this point --- but this still causes
* gperl_object_take_ownership to be called. */
RETVAL = gperl_new_object (object, TRUE);
if (n_params) {
int i;
for (i = 0 ; i < n_params ; i++)
g_value_unset (¶ms[i].value);
g_free (params);
}
if (oclass)
g_type_class_unref (oclass);
OUTPUT:
RETVAL
=for apidoc Glib::Object::get
=for arg ... (list) list of property names
Fetch and return the values for the object properties named in I<...>.
=cut
=for apidoc Glib::Object::get_property
=for arg ... (__hide__)
Alias for C<get>.
=cut
void
g_object_get (object, ...)
GObject * object
ALIAS:
Glib::Object::get = 0
Glib::Object::get_property = 1
PREINIT:
GValue value = {0,};
int i;
PPCODE:
PERL_UNUSED_VAR (ix);
EXTEND (SP, items-1);
for (i = 1; i < items; i++) {
char *name = SvPV_nolen (ST (i));
init_property_value (object, name, &value);
g_object_get_property (object, name, &value);
PUSHs(sv_2mortal(_gperl_sv_from_value_internal(&value, TRUE)));
g_value_unset (&value);
}
=for apidoc Glib::Object::set
=for signature $object->set (key => $value, ...)
=for arg ... (key/value pairs)
Set object properties.
=cut
=for apidoc Glib::Object::set_property
=for signature $object->set_property (key => $value, ...)
=for arg ... (__hide__)
Alias for C<set>.
=cut
void
g_object_set (object, ...)
GObject * object
ALIAS:
Glib::Object::set = 0
Glib::Object::set_property = 1
PREINIT:
GValue value = {0,};
int i;
CODE:
PERL_UNUSED_VAR (ix);
if (0 != ((items - 1) % 2))
croak ("set method expects name => value pairs "
"(odd number of arguments detected)");
for (i = 1; i < items; i += 2) {
char *name = SvPV_nolen (ST (i));
SV *newval = ST (i + 1);
init_property_value (object, name, &value);
gperl_value_from_sv (&value, newval);
g_object_set_property (object, name, &value);
g_value_unset (&value);
}
=for apidoc
Emits a "notify" signal for the property I<$property> on I<$object>.
=cut
void g_object_notify (GObject * object, const gchar * property_name)
=for apidoc
Stops emission of "notify" signals on I<$object>. The signals are queued
until C<thaw_notify> is called on I<$object>.
=cut
void g_object_freeze_notify (GObject * object)
=for apidoc
Reverts the effect of a previous call to C<freeze_notify>. This causes all
queued "notify" signals on I<$object> to be emitted.
=cut
void g_object_thaw_notify (GObject * object)
=for apidoc Glib::Object::list_properties
=for signature list = $object_or_class_name->list_properties
=for arg ... (__hide__)
List all the object properties for I<$object_or_class_name>; returns them as
a list of hashes, containing these keys:
=over
=item name
The name of the property
=item type
The type of the property
=item owner_type
The type that owns the property
=item descr
The description of the property
=item flags
The Glib::ParamFlags of the property
=back
=cut
=for apidoc Glib::Object::find_property
=for signature pspec = $object_or_class_name->find_property ($name)
=for arg name (string)
=for arg ... (__hide__)
Find the definition of object property I<$name> for I<$object_or_class_name>; for
the returned data see L<Glib::Object::list_properties>.
=cut
void
g_object_find_property (object_or_class_name, ...)
SV * object_or_class_name
ALIAS:
Glib::Object::list_properties = 1
PREINIT:
GType type = G_TYPE_INVALID;
gchar *name = NULL;
PPCODE:
if (object_or_class_name &&
SvOK (object_or_class_name) &&
SvROK (object_or_class_name)) {
GObject * object = SvGObject (object_or_class_name);
if (!object)
croak ("wha? NULL object in list_properties");
type = G_OBJECT_TYPE (object);
} else {
type = gperl_object_type_from_package
(SvPV_nolen (object_or_class_name));
if (!type)
croak ("package %s is not registered with GPerl",
SvPV_nolen (object_or_class_name));
}
if (ix == 0 && items == 2) {
name = SvGChar (ST (1));
#ifdef NOISY
warn ("Glib::Object::find_property ('%s', '%s')\n",
g_type_name (type),
name);
#endif
}
else if (ix == 0 && items != 2)
croak ("Usage: Glib::Object::find_property (class, name)");
else if (ix == 1 && items != 1)
croak ("Usage: Glib::Object::list_properties (class)");
if (G_TYPE_IS_OBJECT (type))
{
/* classes registered by perl are kept alive by the bindings.
* those coming straight from C are not. if we had an actual
* object, the class will be alive, but if we just had a
* package, the class may not exist yet. thus, we'll have to
* do an honest ref here, rather than a peek.
*/
GObjectClass *object_class = g_type_class_ref (type);
if (ix == 0) {
GParamSpec *pspec;
pspec = g_object_class_find_property (object_class, name);
if (pspec)
XPUSHs (sv_2mortal (newSVGParamSpec (pspec)));
else
XPUSHs (newSVsv (&PL_sv_undef));
}
else if (ix == 1) {
GParamSpec **props;
guint n_props, i;
props = g_object_class_list_properties (object_class, &n_props);
#ifdef NOISY
warn ("list_properties: %d properties\n", n_props);
#endif
if (n_props) {
EXTEND (SP, n_props);
for (i = 0; i < n_props; i++)
PUSHs (sv_2mortal (newSVGParamSpec (props[i])));
g_free (props);
}
}
g_type_class_unref (object_class);
}
#if GLIB_CHECK_VERSION(2,4,0)
else if (G_TYPE_IS_INTERFACE (type))
{
gpointer iface = g_type_default_interface_ref (type);
if (ix == 0) {
GParamSpec *pspec;
pspec = g_object_interface_find_property (iface, name);
if (pspec)
XPUSHs (sv_2mortal (newSVGParamSpec (pspec)));
else
XPUSHs (newSVsv (&PL_sv_undef));
}
else if (ix == 1) {
GParamSpec **props;
guint n_props, i;
props = g_object_interface_list_properties (iface, &n_props);
#ifdef NOISY
warn ("list_properties: %d properties\n", n_props);
#endif
if (n_props) {
EXTEND (SP, n_props);
for (i = 0; i < n_props; i++)
PUSHs (sv_2mortal (newSVGParamSpec (props[i])));
g_free (props);
}
}
g_type_default_interface_unref (iface);
}
#endif
else {
XSRETURN_EMPTY;
}
=for apidoc
GObject provides an arbitrary data mechanism that assigns unsigned integers
to key names. Functionality overlaps with the hash used as the Perl object
instance, so we strongly recommend you use hash keys for your data storage.
The GObject data values cannot store type information, so they are not safe
to use for anything but integer values, and you really should use this method
only if you know what you are doing.
=cut
void
g_object_set_data (object, key, data)
GObject * object
gchar * key
SV * data
CODE:
if (SvROK (data) || !SvIOK (data))
croak ("set_data only sets unsigned integers, use"
" a key in the object hash for anything else");
g_object_set_data (object, key, INT2PTR (gpointer, SvUV (data)));
=for apidoc
Fetch the integer stored under the object data key I<$key>. These values do not
have types; type conversions must be done manually. See C<set_data>.
=cut
UV
g_object_get_data (object, key)
GObject * object
gchar * key
CODE:
RETVAL = PTR2UV (g_object_get_data (object, key));
OUTPUT:
RETVAL
###
### rudimentary support for foreign objects.
###
=for apidoc Glib::Object::new_from_pointer
=for arg pointer (unsigned) a C pointer value as an integer.
=for arg noinc (boolean) if true, do not increase the GObject's reference count when creating the Perl wrapper. this typically means that when the Perl wrapper will own the object. in general you don't want to do that, so the default is false.
Create a Perl Glib::Object reference for the C object pointed to by I<$pointer>.
You should need this I<very> rarely; it's intended to support foreign objects.
NOTE: the cast from arbitrary integer to GObject may result in a core dump without
warning, because the type-checking macro G_OBJECT() attempts to dereference the
pointer to find a GTypeClass structure, and there is no portable way to validate
the pointer.
=cut
SV *
new_from_pointer (class, pointer, noinc=FALSE)
gpointer pointer
gboolean noinc
CODE:
RETVAL = gperl_new_object (G_OBJECT (pointer), noinc);
OUTPUT:
RETVAL
=for apidoc
Complement of C<new_from_pointer>.
=cut
gpointer
get_pointer (object)
GObject * object
CODE:
RETVAL = object;
OUTPUT:
RETVAL
#if 0
=for apidoc
=for arg all if FALSE (or omitted) tie only properties for this object's class, if TRUE tie the properties of this and all parent classes.
A special method avaiable to Glib::Object derivatives, it uses perl's tie
facilities to associate hash keys with the properties of the object. For
example:
$button->tie_properties;
# equivilent to $button->set (label => 'Hello World');
$button->{label} = 'Hello World';
print "the label is: ".$button->{label}."\n";
Attempts to write to read-only properties will croak, reading a write-only
property will return '[write-only]'.
Care must be taken when using tie_properties with objects of types created with
Glib::Object::Subclass as there may be clashes with existing hash keys that
could cause infinite loops. The solution is to use custom property get/set
functions to alter the storage locations of the properties.
=cut
void
tie_properties (GObject * object, gboolean all=FALSE)
#endif
MODULE = Glib::Object PACKAGE = Glib::Object::_LazyLoader
=for apidoc __hide__
=cut
void
_load (const char * package)
PREINIT:
ClassInfo * class_info;
CODE:
#ifdef NOISY
warn ("_load (%s)\n", package);
#endif
G_LOCK (types_by_package);
class_info = (ClassInfo*)
g_hash_table_lookup (types_by_package,
package);
G_UNLOCK (types_by_package);
if (class_info)
class_info_finish_loading (class_info);
else
warn ("asked to lazy-load %s, but that package is not registered", package);
|