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
|
/* Fo
* fo-node.c: Base class for objects that are nodes in a tree
*
* Copyright (C) 2001 Sun Microsystems
* Copyright (C) 2007 Menteith Consulting Ltd
*
* See COPYING for the status of this software.
*/
#include "fo-utils.h"
#include "fo-node.h"
#include "fo-node-private.h"
/**
* SECTION:fo-node
* @short_description: Object for making trees
*
* #FoObject child type that makes trees.
*/
enum {
PROP_0,
PROP_PARENT,
PROP_NEXT_SIBLING,
PROP_FIRST_CHILD
};
static void fo_node_init (FoNode *object);
static void fo_node_base_class_init (FoNodeClass *klass);
static void fo_node_class_init (FoNodeClass *klass);
static void fo_node_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec);
static void fo_node_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec);
static void fo_node_finalize (GObject *object);
static void fo_node_debug_dump (FoObject *object,
gint depth);
static gchar* fo_node_sprintf (FoObject *object);
static FoNode* fo_node_insert_default (FoNode *parent,
gint position,
FoNode *fo_node);
static FoNode* fo_node_insert_before_default (FoNode *parent,
FoNode *sibling,
FoNode *fo_node);
static FoNode* fo_node_insert_after_default (FoNode *parent,
FoNode *sibling,
FoNode *fo_node);
static void fo_node_unlink_with_next_siblings_default (FoNode *fo_node);
static FoNode* fo_node_insert_with_next_siblings_default (FoNode *parent,
gint position,
FoNode *fo_node);
static FoNode* fo_node_prepend_default (FoNode *parent,
FoNode *fo_node);
static FoNode* fo_node_append_default (FoNode *parent,
FoNode *fo_node);
static void fo_node_log_warning (FoObject *object,
GError **warning);
static void fo_node_log_error (FoObject *object,
GError **error);
static gboolean fo_node_log_or_propagate_error (FoObject *fo_object,
GError **dest,
GError *src);
static gboolean fo_node_maybe_propagate_error (FoObject *fo_object,
GError **dest,
GError *src,
gboolean continue_after_error);
static gpointer parent_class;
/**
* fo_node_get_type:
*
* Register the #FoNode object type.
*
* Return value: #GType value of the #FoNode object type.
**/
GType
fo_node_get_type (void)
{
static GType object_type = 0;
if (!object_type)
{
static const GTypeInfo object_info =
{
sizeof (FoNodeClass),
(GBaseInitFunc) fo_node_base_class_init,
(GBaseFinalizeFunc) NULL,
(GClassInitFunc) fo_node_class_init,
NULL, /* class_finalize */
NULL, /* class_data */
sizeof (FoNode),
0, /* n_preallocs */
(GInstanceInitFunc) fo_node_init,
NULL /* value_table */
};
object_type = g_type_register_static (FO_TYPE_OBJECT,
"FoNode",
&object_info,
G_TYPE_FLAG_ABSTRACT);
}
return object_type;
}
/**
* fo_node_init:
* @fo_node: #FoNode object to initialise.
*
* Implements #GInstanceInitFunc for #FoNode.
**/
void
fo_node_init (FoNode *object)
{
object->node = g_node_new ((gpointer *) object);
}
/**
* fo_node_base_class_init:
* @klass: #FoNodeClass base class object to initialise.
*
* Implements #GBaseInitFunc for #FoNodeClass.
**/
void
fo_node_base_class_init (FoNodeClass *klass)
{
FoObjectClass *fo_object_class = FO_OBJECT_CLASS (klass);
fo_object_class->debug_dump = fo_node_debug_dump;
fo_object_class->print_sprintf = fo_node_sprintf;
fo_object_class->log_warning = fo_node_log_warning;
fo_object_class->log_error = fo_node_log_error;
fo_object_class->log_or_propagate_error = fo_node_log_or_propagate_error;
fo_object_class->maybe_propagate_error = fo_node_maybe_propagate_error;
klass->insert = fo_node_insert_default;
klass->insert_before = fo_node_insert_before_default;
klass->insert_after = fo_node_insert_after_default;
klass->insert_with_next_siblings = fo_node_insert_with_next_siblings_default;
klass->unlink_with_next_siblings = fo_node_unlink_with_next_siblings_default;
klass->prepend = fo_node_prepend_default;
klass->append = fo_node_append_default;
}
/**
* fo_node_class_init:
* @klass: #FoNodeClass object to initialise.
*
* Implements #GClassInitFunc for #FoNodeClass.
**/
void
fo_node_class_init (FoNodeClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
parent_class = g_type_class_peek_parent (klass);
object_class->finalize = fo_node_finalize;
object_class->set_property = fo_node_set_property;
object_class->get_property = fo_node_get_property;
g_object_class_install_property
(object_class,
PROP_PARENT,
g_param_spec_object ("parent",
_("parent node"),
_("Parent node in the node tree"),
FO_TYPE_NODE,
G_PARAM_READABLE));
g_object_class_install_property
(object_class,
PROP_NEXT_SIBLING,
g_param_spec_object ("next-sibling",
_("Next sibling node"),
_("Next sibling node in the node tree"),
FO_TYPE_NODE,
G_PARAM_READABLE));
g_object_class_install_property
(object_class,
PROP_FIRST_CHILD,
g_param_spec_object ("first-child",
_("first child node"),
_("First child node in the node tree"),
FO_TYPE_NODE,
G_PARAM_READABLE));
}
/**
* fo_node_finalize:
* @object: #FoNode object to finalize.
*
* Implements #GObjectFinalizeFunc for #FoNode.
**/
void
fo_node_finalize (GObject *object)
{
FoNode *node;
node = FO_NODE (object);
/* Node should already be removed from the FoNode tree, since this
destroys the GNode subtree remaining under node */
g_node_destroy (node->node);
G_OBJECT_CLASS (parent_class)->finalize (object);
}
/**
* fo_node_get_property:
* @object: #GObject whose property will be retrieved.
* @prop_id: Property ID assigned when property registered.
* @value: #GValue to set with property value.
* @pspec: Parameter specification for this property type.
*
* Implements #GObjectGetPropertyFunc for #FoNode.
**/
void
fo_node_get_property (GObject *object,
guint param_id,
GValue *value,
GParamSpec *pspec)
{
FoNode *fo_node = FO_NODE (object);
switch (param_id)
{
case PROP_PARENT:
g_value_set_object (value, G_OBJECT (fo_node_parent (fo_node)));
break;
case PROP_NEXT_SIBLING:
g_value_set_object (value, G_OBJECT (fo_node_next_sibling (fo_node)));
break;
case PROP_FIRST_CHILD:
g_value_set_object (value, G_OBJECT (fo_node_first_child (fo_node)));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
break;
}
}
/**
* fo_node_set_property:
* @object: #GObject whose property will be set.
* @prop_id: Property ID assigned when property registered.
* @value: New value for property.
* @pspec: Parameter specification for this property type.
*
* Implements #GObjectSetPropertyFunc for #FoNode.
**/
void
fo_node_set_property (GObject *object,
guint param_id,
const GValue *value G_GNUC_UNUSED,
GParamSpec *pspec)
{
switch (param_id)
{
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
break;
}
}
/**
* fo_node_new:
*
* Creates a new #FoNode initialized to default value.
*
* Return value: the new #FoNode
**/
FoNode *
fo_node_new (void)
{
FoNode *object;
object = FO_NODE (g_object_new (fo_node_get_type (), NULL));
return object;
}
/**
* fo_node_debug_dump:
* @object: #FoObject to be dumped.
* @depth: Relative indent to add to the output.
*
* Implements #FoObject debug_dump method for #FoNode.
**/
void
fo_node_debug_dump (FoObject *object,
gint depth)
{
gchar *indent = g_strnfill (depth * 2, ' ');
gchar* object_sprintf;
FoNode *child;
g_return_if_fail (object != NULL);
g_return_if_fail (FO_IS_NODE (object));
object_sprintf = fo_object_debug_sprintf (object);
g_log (G_LOG_DOMAIN,
G_LOG_LEVEL_DEBUG,
"%s%s",
indent,
object_sprintf);
g_free (object_sprintf);
g_free (indent);
FO_NODE_GET_CLASS (object)->debug_dump_properties (FO_NODE (object),
depth + 2);
child = fo_node_first_child (FO_NODE (object));
while (child)
{
fo_object_debug_dump (child,
depth + 1);
child = fo_node_next_sibling (child);
}
}
/**
* fo_node_debug_dump_tree:
* @fo_node: #FoNode to be dumped.
* @depth: Relative indent to add to the output.
*
* Logs the tree structure beginning at @fo_node.
**/
void
fo_node_debug_dump_tree (FoNode *fo_node,
gint depth)
{
gchar *indent = g_strnfill (depth * 2, ' ');
gchar* fo_node_sprintf;
FoNode *child;
g_return_if_fail (fo_node != NULL);
g_return_if_fail (FO_IS_NODE (fo_node));
fo_node_sprintf = fo_object_debug_sprintf (fo_node);
g_log (G_LOG_DOMAIN,
G_LOG_LEVEL_DEBUG,
"%s%s",
indent,
fo_node_sprintf);
g_free (fo_node_sprintf);
g_free (indent);
child = fo_node_first_child (fo_node);
while (child)
{
fo_node_debug_dump_tree (child,
depth + 1);
child = fo_node_next_sibling (child);
}
}
/**
* fo_node_sprintf:
* @object: #FoNode to be printed.
*
* Creates string representation of value of @object.
*
* String must be freed by caller.
*
* Return value: String representation of @object.
**/
gchar*
fo_node_sprintf (FoObject *object)
{
g_return_val_if_fail (object != NULL, NULL);
g_return_val_if_fail (FO_IS_NODE (object), NULL);
return (g_strdup_printf("%s",
g_type_name (G_TYPE_FROM_INSTANCE (object))));
}
/**
* fo_node_get_ancestor_or_self_by_type:
* @node: #FoNode at which to begin.
* @type: Required #GType of ancestor node.
*
* Find the nearest ancestor node, or @node itself, with the same
* #GType as @type.
*
* Does not change the ref count of any node.
*
* Return value: #FoNode ancestor (or self) with required #GType, or NULL.
**/
FoNode*
fo_node_get_ancestor_or_self_by_type (FoNode *node,
const GType type)
{
FoNode *use_node;
g_return_val_if_fail (FO_IS_NODE (node), NULL);
if (type != 0)
{
use_node = node;
while (use_node && !g_type_is_a (G_TYPE_FROM_INSTANCE (use_node), type))
{
use_node = fo_node_parent (use_node);
}
}
else
{
use_node = NULL;
}
return use_node;
}
/**
* fo_node_get_ancestor_or_self_by_name:
* @node: #FoNode at which to begin.
* @name: Required name of ancestor node.
*
* Find the nearest ancestor node, or @node itself, with the same
* name as @name.
*
* Does not change the ref count of any node.
*
* Return value: #FoNode ancestor (or self) with required #GType, or NULL.
**/
FoNode*
fo_node_get_ancestor_or_self_by_name (FoNode *node,
const gchar *name)
{
GType type;
g_return_val_if_fail (FO_IS_NODE (node), NULL);
g_return_val_if_fail (name != NULL, NULL);
type = g_type_from_name (name);
return fo_node_get_ancestor_or_self_by_type (node,
type);
}
/**
* fo_node_get_child_by_type:
* @node: #FoNode that is parent of nodes to be tested for matching #GType.
* @type: #GType value.
*
* Find the first child of @node with #GType matching @type value.
*
* Does not change the ref count of any node.
*
* Allows 0 as value of @type since may have been called by
* #fo_node_get_child_by_name for a type that has yet to be
* instantiated. Of course, if @type is 0, this function returns
* NULL.
*
* Return value: First child of specified type, or NULL.
**/
FoNode*
fo_node_get_child_by_type (FoNode *node,
const GType type)
{
FoNode *child = NULL;
g_return_val_if_fail (FO_IS_NODE (node), NULL);
if (type != 0)
{
child = fo_node_first_child (node);
while (child && G_TYPE_FROM_INSTANCE (child) != type)
{
child = fo_node_next_sibling (child);
}
return child;
}
else
{
return NULL;
}
}
/**
* fo_node_get_child_by_name:
* @node: #FoNode that is parent of nodes to be tested for type name.
* @name: Name of type.
*
* Find the first child of @node with type name matching @name value.
*
* Does not change the ref count of any node.
*
* Return value: First child of specified type, or NULL.
**/
FoNode*
fo_node_get_child_by_name (FoNode *node,
const gchar *name)
{
GType type;
g_return_val_if_fail (FO_IS_NODE (node), NULL);
g_return_val_if_fail (name != NULL, NULL);
type = g_type_from_name (name);
return fo_node_get_child_by_type (node, type);
}
/**
* fo_node_dump_path_to_root:
* @node: #FoNode for which to dump path to root.
*
* Dumps (i.e., logs messages with 'DEBUG' severity) the node path
* from @node to the root of the #FoNode tree containing @node.
**/
void
fo_node_dump_path_to_root (FoNode *node)
{
FoNode *use_node;
gint depth = 0;
gchar *indent, *object_sprintf;
use_node = node;
while (!FO_NODE_IS_ROOT (use_node))
{
indent = g_strnfill (2 * depth++, ' ');
object_sprintf = fo_object_debug_sprintf (use_node);
g_log (G_LOG_DOMAIN,
G_LOG_LEVEL_DEBUG,
"%s%s",
indent,
object_sprintf);
g_free (object_sprintf);
g_free (indent);
use_node = fo_node_parent (use_node);
}
}
/**
* fo_node_insert_default:
* @parent: The #FoNode to place @fo_node under.
* @position: The position to place @fo_node at, with respect to its
* siblings. If @position is -1, @fo_node is inserted as
* the last child of @parent.
* @fo_node: The #FoNode to insert.
*
* Inserts an #FoNode beneath the parent at the given position.
*
* Return value: The inserted #FoNode.
**/
FoNode*
fo_node_insert_default (FoNode *parent,
gint position,
FoNode *fo_node)
{
g_return_val_if_fail (FO_IS_NODE (parent), fo_node);
g_return_val_if_fail (FO_IS_NODE (fo_node), fo_node);
return ((FoNode *) g_node_insert (parent->node,
position,
fo_node->node)->data);
}
/**
* fo_node_insert:
* @parent: The #FoNode to place @fo_node under.
* @position: The position to place @fo_node at, with respect to its
* siblings. If @position is -1, @fo_node is inserted as
* the last child of @parent.
* @fo_node: The #FoNode to insert.
*
* Inserts an #FoNode beneath the parent at the given position.
*
* Return value: The inserted #FoNode.
**/
FoNode*
fo_node_insert (FoNode *parent,
gint position,
FoNode *fo_node)
{
g_return_val_if_fail (FO_IS_NODE (parent), fo_node);
g_return_val_if_fail (FO_IS_NODE (fo_node), fo_node);
return FO_NODE_GET_CLASS (parent)->insert (parent,
position,
fo_node);
}
/**
* fo_node_insert_before_default:
* @parent: The #FoNode to place @fo_node under.
* @sibling: The sibling #FoNode to place @fo_node before. If
* @sibling is NULL, @fo_node is inserted as the last child
* of @parent.
* @fo_node: The #FoNode to insert.
*
* Inserts an #FoNode beneath the parent before the given sibling.
*
* Return value: The inserted #FoNode.
**/
FoNode*
fo_node_insert_before_default (FoNode *parent,
FoNode *sibling,
FoNode *fo_node)
{
g_return_val_if_fail (FO_IS_NODE (parent), fo_node);
g_return_val_if_fail (sibling == NULL || FO_IS_NODE (sibling), fo_node);
g_return_val_if_fail (FO_IS_NODE (fo_node), fo_node);
return ((FoNode *) g_node_insert_before (parent->node,
sibling->node,
fo_node->node)->data);
}
/**
* fo_node_insert_before:
* @parent: The #FoNode to place @fo_node under.
* @sibling: The sibling #FoNode to place @fo_node before. If
* @sibling is NULL, @fo_node is inserted as the last child
* of @parent.
* @fo_node: The #FoNode to insert.
*
* Inserts an #FoNode beneath the parent before the given sibling.
*
* Return value: The inserted #FoNode.
**/
FoNode*
fo_node_insert_before (FoNode *parent,
FoNode *sibling,
FoNode *fo_node)
{
g_return_val_if_fail (FO_IS_NODE (parent), fo_node);
g_return_val_if_fail (sibling == NULL || FO_IS_NODE (sibling), fo_node);
g_return_val_if_fail (FO_IS_NODE (fo_node), fo_node);
return FO_NODE_GET_CLASS (parent)->insert_before (parent,
sibling,
fo_node);
}
/**
* fo_node_insert_after_default:
* @parent: The #FoNode to place @fo_node under.
* @sibling: The sibling #FoNode to place @fo_node after. If
* @sibling is NULL, @fo_node is inserted as the first child
* of @parent.
* @fo_node: The #FoNode to insert.
*
* Inserts an #FoNode beneath the parent after the given sibling.
*
* Return value: The inserted #FoNode.
**/
FoNode*
fo_node_insert_after_default (FoNode *parent,
FoNode *sibling,
FoNode *fo_node)
{
g_return_val_if_fail (FO_IS_NODE (parent), fo_node);
g_return_val_if_fail (sibling == NULL || FO_IS_NODE (sibling), fo_node);
g_return_val_if_fail (FO_IS_NODE (fo_node), fo_node);
return ((FoNode *) g_node_insert_after (parent->node,
sibling->node,
fo_node->node)->data);
}
/**
* fo_node_insert_after:
* @parent: The #FoNode to place @fo_node under.
* @sibling: The sibling #FoNode to place @fo_node after. If
* @sibling is NULL, @fo_node is inserted as the first child
* of @parent.
* @fo_node: The #FoNode to insert.
*
* Inserts an #FoNode beneath the parent after the given sibling.
*
* Return value: The inserted #FoNode.
**/
FoNode*
fo_node_insert_after (FoNode *parent,
FoNode *sibling,
FoNode *fo_node)
{
g_return_val_if_fail (FO_IS_NODE (parent), fo_node);
g_return_val_if_fail (sibling == NULL || FO_IS_NODE (sibling), fo_node);
g_return_val_if_fail (FO_IS_NODE (fo_node), fo_node);
return FO_NODE_GET_CLASS (parent)->insert_after (parent,
sibling,
fo_node);
}
/**
* fo_node_prepend_default:
* @parent: The #FoNode to place @fo_node under.
* @fo_node: The #FoNode to insert.
*
* Inserts an #FoNode as the first child of the given parent.
*
* Return value: The inserted #FoNode.
**/
FoNode*
fo_node_prepend_default (FoNode *parent,
FoNode *fo_node)
{
g_return_val_if_fail (FO_IS_NODE (parent), fo_node);
g_return_val_if_fail (FO_IS_NODE (fo_node), fo_node);
return ((FoNode *) g_node_prepend (parent->node,
fo_node->node)->data);
}
/**
* fo_node_prepend:
* @parent: The #FoNode to place @fo_node under.
* @fo_node: The #FoNode to insert.
*
* Inserts an #FoNode as the first child of the given parent.
*
* Return value: The inserted #FoNode.
**/
FoNode*
fo_node_prepend (FoNode *parent,
FoNode *fo_node)
{
g_return_val_if_fail (FO_IS_NODE (parent), fo_node);
g_return_val_if_fail (FO_IS_NODE (fo_node), fo_node);
return FO_NODE_GET_CLASS (parent)->prepend (parent,
fo_node);
}
/**
* fo_node_append_default:
* @parent: The #FoNode to place @fo_node under.
* @fo_node: The #FoNode to insert.
*
* Inserts an #FoNode as the last child of the given parent.
*
* Return value: The inserted #FoNode.
**/
FoNode*
fo_node_append_default (FoNode *parent,
FoNode *fo_node)
{
g_return_val_if_fail (FO_IS_NODE (parent), fo_node);
g_return_val_if_fail (FO_IS_NODE (fo_node), fo_node);
return ((FoNode *) g_node_append (parent->node,
fo_node->node)->data);
}
/**
* fo_node_append:
* @parent: The #FoNode to place @fo_node under.
* @fo_node: The #FoNode to insert.
*
* Inserts an #FoNode as the last child of the given parent.
*
* Return value: The inserted #FoNode.
**/
FoNode*
fo_node_append (FoNode *parent,
FoNode *fo_node)
{
g_return_val_if_fail (FO_IS_NODE (parent), fo_node);
g_return_val_if_fail (FO_IS_NODE (fo_node), fo_node);
return FO_NODE_GET_CLASS (parent)->append (parent,
fo_node);
}
typedef struct _FoNodeFuncData
{
FoNodeForeachFunc func;
gpointer node_func_data;
} FoNodeFuncData;
/**
* fo_node_g_node_children_foreach_func:
* @node: The #GNode for an #FoNode.
* @data: #FoNodeFuncData with #FoNodeForeachFunc and 'real' user data.
*
* Calls the #FoNodeForeachFunc function with the #FoNode
* corresponding to @node and the 'real' user data as arguments.
**/
static void
fo_node_g_node_children_foreach_func (GNode *node,
gpointer data)
{
const FoNodeFuncData *fo_node_func_data = (FoNodeFuncData *) data;
fo_node_func_data->func (node->data,
fo_node_func_data->node_func_data);
}
/**
* fo_node_children_foreach:
* @fo_node: An #FoNode.
* @flags: Which types of children are to be visited, one of
* G_TRAVERSE_ALL, G_TRAVERSE_LEAFS and G_TRAVERSE_NON_LEAFS.
* @func: The function to call for each visited node.
* @data: User data to pass to the function.
*
* Calls a function for each of the children of an #FoNode. Note that
* it doesn't descend beneath the child nodes.
**/
void
fo_node_children_foreach (FoNode *fo_node,
GTraverseFlags flags,
FoNodeForeachFunc func,
gpointer data)
{
FoNodeFuncData g_node_children_foreach_data = {func, data};
g_node_children_foreach (fo_node->node,
flags,
fo_node_g_node_children_foreach_func,
&g_node_children_foreach_data);
}
typedef struct _FoNodeTraverseFuncData
{
FoNodeTraverseFunc func;
gpointer node_func_data;
} FoNodeTraverseFuncData;
/**
* fo_node_g_node_traverse_func:
* @node: The #GNode for an #FoNode.
* @data: #FoNodeFuncData with #FoNodeTraverseFunc and 'real' user data.
*
* Calls the #FoNodeTraverseFunc function with the #FoNode
* corresponding to @node and the 'real' user data as arguments.
*
* Return value: The value returned by the #FoNodeTraverseFunc.
**/
static gboolean
fo_node_g_node_traverse_func (GNode *node,
gpointer data)
{
const FoNodeTraverseFuncData *fo_node_traverse_func_data =
(FoNodeTraverseFuncData *) data;
return fo_node_traverse_func_data->func (node->data,
fo_node_traverse_func_data->node_func_data);
}
/**
* fo_node_traverse:
* @root: The root #FoNode of the tree to traverse.
* @order: The order in which nodes are visited - G_IN_ORDER,
* G_PRE_ORDER, G_POST_ORDER, or G_LEVEL_ORDER.
* @flags: Which types of children are to be visited, one of
* G_TRAVERSE_ALL, G_TRAVERSE_LEAFS and G_TRAVERSE_NON_LEAFS.
* @max_depth: The maximum depth of the traversal. Nodes below this
* depth will not be visited. If max_depth is -1 all nodes
* in the tree are visited. If depth is 1, only the root
* is visited. If depth is 2, the root and its children
* are visited. And so on.
* @func: The function to call for each visited GNode.
* @data: User data to pass to the function.
*
* Traverses a tree starting at the given root #FoNode. It calls the
* given function for each node visited. The traversal can be halted
* at any point by returning %TRUE from @func.
**/
void
fo_node_traverse (FoNode *root,
GTraverseType order,
GTraverseFlags flags,
gint max_depth,
FoNodeTraverseFunc func,
gpointer data)
{
FoNodeTraverseFuncData g_node_traverse_data = {func, data};
g_node_traverse (root->node,
order,
flags,
max_depth,
fo_node_g_node_traverse_func,
&g_node_traverse_data);
}
/**
* fo_node_next_sibling:
* @fo_node: The #FoNode.
*
* Gets the next sibling #FoNode of @fo_node.
*
* Return value: The next sibling of @fo_node, or %NULL.
**/
FoNode *
fo_node_next_sibling (FoNode *fo_node)
{
g_return_val_if_fail (fo_node != NULL, NULL);
g_return_val_if_fail (FO_IS_NODE (fo_node), NULL);
return g_node_next_sibling (fo_node->node) ?
((FoNode *) g_node_next_sibling (fo_node->node)->data) : NULL;
}
/**
* fo_node_first_child:
* @fo_node: The #FoNode.
*
* Gets the first child #FoNode of @fo_node.
*
* Return value: The first child of @fo_node, or %NULL.
**/
FoNode *
fo_node_first_child (FoNode *fo_node)
{
g_return_val_if_fail (fo_node != NULL, NULL);
g_return_val_if_fail (FO_IS_NODE (fo_node), NULL);
return g_node_first_child (fo_node->node) ?
((FoNode *) g_node_first_child (fo_node->node)->data) : NULL;
}
/**
* fo_node_parent:
* @fo_node: The #FoNode.
*
* Gets the parent #FoNode of @fo_node.
*
* Return value: The parent of @fo_node.
**/
FoNode *
fo_node_parent (FoNode *fo_node)
{
g_return_val_if_fail (fo_node != NULL, NULL);
g_return_val_if_fail (FO_IS_NODE (fo_node), NULL);
return fo_node->node->parent ?
FO_NODE (fo_node->node->parent->data) : NULL;
}
/**
* fo_node_unlink_with_next_siblings_default:
* @fo_node: First #FoNode to be unlinked
*
* Unlink @fo_node and its next siblings (i.e., 'following siblings'
* in XPath parlance) from their place in their current #FoNode tree.
*
* @fo_node and its next siblings remain linked together, and any of
* those nodes keep their child nodes. Neither @fo_node nor any of
* its following siblings are valid roots since they each have a next
* and/or a previous sibling, even if they don't have a parent.
**/
void
fo_node_unlink_with_next_siblings_default (FoNode *fo_node)
{
GNode *use_node;
g_return_if_fail (fo_node != NULL);
g_return_if_fail (FO_IS_NODE (fo_node));
use_node = fo_node->node;
if (use_node->prev)
use_node->prev->next = NULL;
else if (use_node->parent)
use_node->parent->children = NULL;
use_node->prev = NULL;
while (use_node)
{
use_node->parent = NULL;
use_node = use_node->next;
}
}
/**
* fo_node_unlink_with_next_siblings:
* @fo_node: First #FoNode to be unlinked
*
* Unlink @fo_node and its next siblings (i.e., 'following siblings'
* in XPath parlance) from their place in their current #FoNode tree.
*
* @fo_node and its next siblings remain linked together, and any of
* those nodes keep their child nodes. Neither @fo_node nor any of
* its following siblings are valid roots since they each have a next
* and/or a previous sibling, even if they don't have a parent.
**/
void
fo_node_unlink_with_next_siblings (FoNode *fo_node)
{
g_return_if_fail (fo_node != NULL);
g_return_if_fail (FO_IS_NODE (fo_node));
FO_NODE_GET_CLASS (fo_node)->unlink_with_next_siblings (fo_node);
}
/**
* fo_node_insert_with_next_siblings_default:
* @parent: The #FoNode to place @fo_node under.
* @position: The position to place @fo_node at, with respect to its
* siblings. If @position is -1, @fo_node is inserted as
* the last child of @parent.
* @fo_node: First #FoNode to be inserted.
*
* Insert @fo_node and its next siblings (i.e., 'following siblings'
* in XPath parlance) beneath @parent at the given position.
*
* @fo_node and its next siblings should not already have a parent
* #FoNode.
*
* Return value: The inserted #FoNode.
**/
FoNode*
fo_node_insert_with_next_siblings_default (FoNode *parent,
gint position,
FoNode *fo_node)
{
FoNode *use_node;
g_return_val_if_fail (parent != NULL, fo_node);
g_return_val_if_fail (FO_IS_NODE (parent), fo_node);
g_return_val_if_fail (fo_node != NULL, fo_node);
g_return_val_if_fail (FO_IS_NODE (fo_node), fo_node);
use_node = fo_node;
while (use_node)
{
FoNode *next_sibling = fo_node_next_sibling (use_node);
fo_node_unlink (use_node);
fo_node_insert (parent, position++, use_node);
use_node = next_sibling;
}
return fo_node;
}
/**
* fo_node_insert_with_next_siblings:
* @parent: The #FoNode to place @fo_node under.
* @position: The position to place @fo_node at, with respect to its
* siblings. If @position is -1, @fo_node is inserted as
* the last child of @parent.
* @fo_node: First #FoNode to be inserted.
*
* Insert @fo_node and its next siblings (i.e., 'following siblings'
* in XPath parlance) beneath @parent at the given position.
*
* @fo_node and its next siblings should not already have a parent
* #FoNode.
*
* Return value: The inserted #FoNode.
**/
FoNode*
fo_node_insert_with_next_siblings (FoNode *parent,
gint position,
FoNode *fo_node)
{
g_return_val_if_fail (parent != NULL, fo_node);
g_return_val_if_fail (FO_IS_NODE (parent), fo_node);
g_return_val_if_fail (fo_node != NULL, fo_node);
g_return_val_if_fail (FO_IS_NODE (fo_node), fo_node);
return FO_NODE_GET_CLASS (parent)->insert_with_next_siblings (parent,
position,
fo_node);
}
/**
* fo_node_path_step_sprintf:
* @fo_node: The #FoNode
*
* Creates a string representation of the XPath step for @fo_node.
*
* The string should be freed by the calling function.
*
* Return value: String representing the XPath step for @fo_node.
**/
static gchar*
fo_node_path_step_sprintf (FoNode *fo_node)
{
FoNode *sibling_node;
gchar *node_name;
gint count = 1;
GString *path_step = g_string_new (NULL);
g_return_val_if_fail (FO_IS_NODE (fo_node), NULL);
node_name = fo_object_sprintf (FO_OBJECT (fo_node));
sibling_node = fo_node_prev_sibling (fo_node);
while (sibling_node)
{
if (G_TYPE_FROM_INSTANCE (sibling_node) == G_TYPE_FROM_INSTANCE (fo_node))
count++;
sibling_node = fo_node_prev_sibling (sibling_node);
}
g_string_printf (path_step,
"/%s[%d]",
node_name,
count);
g_free (node_name);
return g_string_free (path_step, FALSE);
}
/**
* fo_node_path_to_root_sprintf:
* @fo_node: The #FoNode.
*
* Creates a string representation of the path from @fo_node to the
* root of its #FoNode tree.
*
* The string should be freed by the calling function.
*
* Return value: String representation of path from @fo_node to its
* root.
**/
static gchar*
fo_node_path_to_root_sprintf (FoNode *fo_node)
{
FoNode *use_node;
GString *path;
gchar *node_name;
g_return_val_if_fail (fo_node != NULL, NULL);
g_return_val_if_fail (FO_IS_NODE (fo_node), NULL);
node_name = fo_node_path_step_sprintf (fo_node);
path = g_string_new (node_name);
g_free (node_name);
use_node = fo_node_parent (FO_NODE (fo_node));
while (use_node)
{
gchar *old_path = g_strdup (path->str);
node_name = fo_node_path_step_sprintf (use_node);
g_string_printf (path,
"%s%s",
node_name,
old_path);
g_free (node_name);
g_free (old_path);
use_node = fo_node_parent (use_node);
}
return g_string_free (path, FALSE);
}
/**
* fo_node_log_warning:
* @object: #FoNode that is subject of @warning.
* @warning: #GError with information about warning that occurred.
*
* Logs both the warning represented by @warning and the #FoNode path from
* @object to the root of its #FoNode tree.
**/
void
fo_node_log_warning (FoObject *object,
GError **warning)
{
FoNode *use_node;
GString *path = g_string_new (NULL);
gchar *node_name;
g_return_if_fail (object != NULL);
g_return_if_fail (FO_IS_NODE (object));
g_return_if_fail (warning != NULL && *warning != NULL);
node_name = fo_node_path_step_sprintf (FO_NODE (object));
g_string_printf (path,
"%s",
node_name);
g_free (node_name);
use_node = fo_node_parent (FO_NODE (object));
while (use_node)
{
gchar *old_path = g_strdup (path->str);
node_name = fo_node_path_step_sprintf (use_node);
g_string_printf (path,
"%s%s",
node_name,
old_path);
g_free (node_name);
g_free (old_path);
use_node = fo_node_parent (use_node);
}
g_warning ("%s: %s\nObject path: %s",
g_quark_to_string ((*warning)->domain),
(*warning)->message,
path->str);
g_string_free (path, TRUE);
g_clear_error (warning);
}
/**
* fo_node_log_error:
* @object: The #FoNode.
* @error: #GError indicating the error.
*
* Logs both the error represented by @error and the #FoNode path from
* @object to the root of its #FoNode tree.
**/
void
fo_node_log_error (FoObject *object,
GError **error)
{
FoNode *use_node;
GString *path = g_string_new (NULL);
gchar *node_name;
g_return_if_fail (object != NULL);
g_return_if_fail (FO_IS_NODE (object));
g_return_if_fail (error != NULL && *error != NULL);
node_name = fo_node_path_step_sprintf (FO_NODE (object));
g_string_printf (path,
"%s",
node_name);
g_free (node_name);
use_node = fo_node_parent (FO_NODE (object));
while (use_node)
{
gchar *old_path = g_strdup (path->str);
node_name = fo_node_path_step_sprintf (use_node);
g_string_printf (path,
"%s%s",
node_name,
old_path);
g_free (node_name);
g_free (old_path);
use_node = fo_node_parent (use_node);
}
g_critical ("%s: %s\nObject path: %s",
g_quark_to_string ((*error)->domain),
(*error)->message,
path->str);
g_string_free (path, TRUE);
g_clear_error (error);
}
/**
* fo_node_log_or_propagate_error:
* @fo_object: #FoObject that is the subject of @src.
* @dest: #GError to which to propagate @src, or NULL.
* @src: #GError with information about error that occurred.
*
* If can propagate @src to @dest, do so, otherwise log @src using
* fo_object_log_error().
*
* Return value: %TRUE if error propagated, otherwise %FALSE.
**/
gboolean
fo_node_log_or_propagate_error (FoObject *fo_object,
GError **dest,
GError *src)
{
GError *new_error;
GString *new_message = g_string_new (NULL);
gchar *path_to_root;
g_return_val_if_fail (FO_IS_NODE (fo_object), TRUE);
g_return_val_if_fail (dest == NULL || *dest == NULL, TRUE);
g_return_val_if_fail (src != NULL, TRUE);
path_to_root = fo_node_path_to_root_sprintf (FO_NODE (fo_object));
g_string_printf (new_message,
"%s\nObject path: %s",
src->message,
path_to_root);
new_error = g_error_new (src->domain,
src->code,
"%s",
new_message->str);
g_string_free (new_message, TRUE);
g_free (path_to_root);
g_error_free (src);
if (dest != NULL)
{
g_propagate_error (dest,
new_error);
return TRUE;
}
else
{
fo_object_log_error (fo_object,
&new_error);
return FALSE;
}
}
/**
* fo_node_maybe_propagate_error:
* @fo_object: #FoObject that is the subject of @src.
* @dest: #GError to which to propagate @src, or NULL.
* @src: #GError with information about error that occurred.
* @continue_after_error: Whether or not to continue after an error.
*
* If @continue_after_error is %FALSE and can propagate @src to @dest,
* then do so, otherwise log @src using fo_object_log_error().
*
* Return value: %TRUE if error propagated, otherwise %FALSE.
**/
gboolean
fo_node_maybe_propagate_error (FoObject *fo_object,
GError **dest,
GError *src,
gboolean continue_after_error)
{
GError *new_error;
GString *new_message = g_string_new (NULL);
gchar *path_to_root;
g_return_val_if_fail (FO_IS_NODE (fo_object), TRUE);
g_return_val_if_fail (dest == NULL || *dest == NULL, TRUE);
g_return_val_if_fail (src != NULL, TRUE);
path_to_root = fo_node_path_to_root_sprintf (FO_NODE (fo_object));
g_string_printf (new_message,
"%s\nObject path: %s",
src->message,
path_to_root);
new_error = g_error_new (src->domain,
src->code,
"%s",
new_message->str);
g_string_free (new_message, TRUE);
g_free (path_to_root);
g_error_free (src);
if ((continue_after_error == FALSE) &&
(dest != NULL))
{
g_propagate_error (dest,
new_error);
return TRUE;
}
else
{
fo_object_log_error (fo_object,
&new_error);
return FALSE;
}
}
|