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
|
/* $Id: cxlist.c,v 1.8 2011/12/22 14:33:32 rpalsa Exp $
*
* This file is part of the ESO C Extension Library
* Copyright (C) 2001-2011 European Southern Observatory
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
* $Author: rpalsa $
* $Date: 2011/12/22 14:33:32 $
* $Revision: 1.8 $
* $Name: cpl-6_1_1 $
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "cxmemory.h"
#include "cxmessages.h"
#include "cxlist.h"
/**
* @defgroup cxlist Doubly Linked Lists
*
* The module implements a doubly linked list object which can be traversed
* in both directions, forward and backward, and methods to create, destroy
* and manipulate it.
*
* @par Synopsis:
* @code
* #include <cxlist.h>
* @endcode
*/
/**@{*/
/*
* Doubly linked list node and list opaque data types
*/
typedef struct _cx_lnode_ cx_lnode;
struct _cx_lnode_ {
cxptr data;
struct _cx_lnode_ *prev;
struct _cx_lnode_ *next;
};
struct _cx_list_ {
cx_lnode head;
};
/*
* Attach data to a list node.
*/
inline static void
_cx_lnode_put(cx_lnode *node, cxcptr data)
{
cx_assert(node != NULL);
node->data = (cxptr)data;
return;
}
/*
* Retrieve data from a list node. The previously stored data is returned
* to the caller.
*/
inline static cxptr
_cx_lnode_get(const cx_lnode *node)
{
if (!node)
return NULL;
return node->data;
}
/*
* Create a new list node.
*/
inline static cx_lnode *
_cx_lnode_create(cxcptr data)
{
cx_lnode *node = cx_malloc(sizeof *node);
_cx_lnode_put(node, data);
node->next = NULL;
node->prev = NULL;
return node;
}
/*
* Deallocate a list node. A handle to the node's data is returned to the
* caller.
*/
inline static cxptr
_cx_lnode_delete(cx_lnode *node)
{
cxptr data;
if (!node)
return NULL;
data = _cx_lnode_get(node);
cx_free(node);
return data;
}
/*
* Destroy a list node, i.e. at first the node's data is deallocated using
* the passed deallocator and then the node itself. If NULL is passed as
* deallocator the data is not deallocated and the function call is
* equivalent to _cx_lnode_delete().
*/
inline static void
_cx_lnode_destroy(cx_lnode *node, cx_free_func dealloc)
{
if (!node)
return;
if (dealloc && node->data)
dealloc(node->data);
cx_free(node);
return;
}
/*
* Check if the given list node follows another.
*/
inline static cxbool
_cx_lnode_follows(const cx_list *list, const cx_lnode *head,
const cx_lnode *node)
{
cx_lnode *n = head->next;
while (n != &list->head) {
if (n == node)
return TRUE;
n = n->next;
}
return FALSE;
}
/*
* Check if the given list node is in a list or not. Note that according
* to this function the head node is not part of the list!
*/
inline static cxbool
_cx_lnode_exists(const cx_list *list, const cx_lnode *node)
{
return _cx_lnode_follows(list, &list->head, node);
}
/*
* Initialize a newly created list object
*/
inline static void
_cx_list_init(cx_list *list)
{
if (!list)
return;
list->head.next = &list->head;
list->head.prev = &list->head;
}
/*
* Get an iterator to the beginning of a list.
*/
inline static cx_list_iterator
_cx_list_begin(const cx_list *list)
{
return list->head.next;
}
/*
* Get an iterator to the end of a list.
*/
inline static cx_list_iterator
_cx_list_end(const cx_list *list)
{
return &(((cx_list *)list)->head);
}
/*
* Calculate the distance between two list nodes.
*/
inline static cxsize
_cx_list_distance(const cx_lnode *first, const cx_lnode *last)
{
register cxsize sz = 0;
register cx_lnode *node;
for (node = (cx_lnode *)first; node != last; node = node->next)
++sz;
return sz;
}
/*
* Extract a single node at the given position.
*/
inline static cx_lnode *
_cx_list_extract(cx_lnode *node)
{
cx_lnode *prev, *next;
prev = node->prev;
next = node->next;
prev->next = next;
next->prev = prev;
return node;
}
/*
* Insert a single node at the given position.
*/
inline static cx_lnode *
_cx_list_insert(cx_lnode *position, cx_lnode *node)
{
node->next = position;
node->prev = position->prev;
position->prev->next = node;
position->prev = node;
return node;
}
/*
* Move a range of list nodes in front of position.
*/
inline static void
_cx_list_transfer(cx_lnode *position, cx_lnode *first, cx_lnode *last)
{
if (position != last) {
cx_lnode *tmp;
/*
* Remove [first, last) from its old position.
*/
last->prev->next = position;
first->prev->next = last;
position->prev->next = first;
/*
* Splice [first, last) into its new position.
*/
tmp = position->prev;
position->prev = last->prev;
last->prev = first->prev;
first->prev = tmp;
}
return;
}
/*
* Check if a given list is sorted using the provided comparison function.
* Returns 1 if the list is sorted, 0 otherwise.
*/
inline static cxbool
_cx_list_sorted(cx_list *list, cx_compare_func compare)
{
cx_lnode *node = list->head.next;
cx_lnode *next = node != NULL ? node->next : NULL;
while (next != &list->head) {
if (compare(_cx_lnode_get(node), _cx_lnode_get(next)) > 0)
return 0;
node = next;
next = next->next;
}
return 1;
}
/*
* Get the next element of a list, i.e. the element directly following the
* current position in the list.
*
* Note that there are no checks whether the current list position actually
* exists in the given list.
*/
inline static cx_list_iterator
_cx_list_next(const cx_list *list, cx_list_const_iterator position)
{
if (position == _cx_list_end(list))
return _cx_list_end(list);
return position->next;
}
/*
* Get the previous element of a list, i.e. the element directly preceding
* the current position in the list.
*
* Note that there are no checks whether the current list position actually
* exists in the given list.
*/
inline static cx_list_iterator
_cx_list_previous(const cx_list *list, cx_list_const_iterator position)
{
if (position == _cx_list_begin(list))
return _cx_list_end(list);
return position->prev;
}
/*
* Remove all elements from a list
*/
inline static void
_cx_list_clear(cx_list *list)
{
cx_list_iterator l;
if (!list)
return;
l = _cx_list_begin(list);
while (l != _cx_list_end(list)) {
cx_lnode *node = l;
l = _cx_list_next(list, l);
_cx_lnode_delete(_cx_list_extract(node));
}
_cx_list_init(list);
return;
}
/*
* Check whether a list is empty.
*/
inline static cxbool
_cx_list_empty(const cx_list *list)
{
return (list->head.next == &list->head);
}
/*
* Compute the size of a list as the distance between the first and the
* sentinel element.
*/
inline static cxsize
_cx_list_size(const cx_list *list)
{
return _cx_list_distance(_cx_list_begin(list), _cx_list_end(list));
}
/*
* Merge two sorted lists keeping the sorting order with respect to the
* given comparison function.
*/
inline static void
_cx_list_merge(cx_list *list1, cx_list *list2, cx_compare_func compare)
{
if (list1 != list2) {
cx_lnode *first1, *last1;
cx_lnode *first2, *last2;
cx_assert(_cx_list_size(list1) + _cx_list_size(list2) >=
_cx_list_size(list1));
cx_assert(_cx_list_sorted(list1, compare));
cx_assert(_cx_list_sorted(list2, compare));
first1 = _cx_list_begin(list1);
last1 = _cx_list_end(list1);
first2 = _cx_list_begin(list2);
last2 = _cx_list_end(list2);
while (first1 != last1 && first2 != last2)
if (compare(_cx_lnode_get(first2), _cx_lnode_get(first1)) < 0) {
cx_lnode *next = _cx_list_next(list2, first2);
_cx_list_transfer(first1, first2, next);
first2 = next;
}
else
first1 = _cx_list_next(list1, first1);
if (first2 != last2)
_cx_list_transfer(last1, first2, last2);
}
return;
}
/*
* Sort the elements of a list with respect to the given comparison function.
*/
inline static void
_cx_list_sort(cx_list *list, cx_compare_func compare)
{
if (_cx_list_size(list) > 1 && !_cx_list_sorted(list, compare)) {
cx_list tmp;
cx_lnode *node;
cxsize middle = _cx_list_size(list) / 2;
_cx_list_init(&tmp);
node = _cx_list_begin(list);
while (middle--)
node = _cx_list_next(list, node);
_cx_list_transfer(_cx_list_begin(&tmp), node, _cx_list_end(list));
_cx_list_sort(list, compare);
_cx_list_sort(&tmp, compare);
_cx_list_merge(list, &tmp, compare);
}
return;
}
/**
* @brief
* Get an iterator for the first list element.
*
* @param list A list.
*
* @return Iterator for the first element in the list or @b cx_list_end()
* if the list is empty.
*
* The function returns a handle to the first element of @em list. The
* handle cannot be used directly to access the element data, but only
* through the appropriate functions.
*/
cx_list_iterator
cx_list_begin(const cx_list *list)
{
cx_assert(list != NULL);
return _cx_list_begin(list);
}
/**
* @brief
* Get an iterator for the position after the last list element.
*
* @param list A list.
*
* @return Iterator for the end of the list.
*
* The function returns an iterator for the position one past the last
* element of the list @em list. The handle cannot be used to directly
* access the element data, but only through the appropriate functions.
*/
cx_list_iterator
cx_list_end(const cx_list *list)
{
cx_assert(list != NULL);
return _cx_list_end(list);
}
/**
* @brief
* Get an iterator for the next list element.
*
* @param list A list.
* @param position Current iterator position.
*
* @return Iterator for the next list element.
*
* The function returns an iterator for the next element in the list
* @em list with respect to the current iterator position @em position.
* If the list @em list is empty or @em position points to the list end
* the function returns @b cx_list_end().
*/
cx_list_iterator
cx_list_next(const cx_list *list, cx_list_const_iterator position)
{
cx_assert(list != NULL);
cx_assert(position == _cx_list_end(list) ||
_cx_lnode_exists(list, position));
return _cx_list_next(list, position);
}
/**
* @brief
* Get an iterator for the previous list element.
*
* @param list A list.
* @param position Current iterator position.
*
* @return Iterator for the previous list element.
*
* The function returns an iterator for the previous element in the list
* @em list with respect to the current iterator position @em position.
* If the list @em list is empty or @em position points to the beginning
* of the list the function returns @b cx_list_end().
*/
cx_list_iterator
cx_list_previous(const cx_list *list, cx_list_const_iterator position)
{
cx_assert(list != NULL);
cx_assert(position == _cx_list_end(list) ||
_cx_lnode_exists(list, position));
return _cx_list_previous(list, position);
}
/**
* @brief
* Remove all elements from a list.
*
* @param list List to be cleared.
*
* @return Nothing.
*
* The list @em list is cleared, i.e. all elements are removed from the list.
* The removed data objects are left untouched, in particular they are not
* deallocated. It is the responsibility of the caller to ensure that there
* are still other references to the removed data objects. After calling
* @b cx_list_clear() the list @em list is empty.
*/
void
cx_list_clear(cx_list *list)
{
_cx_list_clear(list);
return;
}
/**
* @brief
* Check whether a list is empty.
*
* @param list A list.
*
* @return The function returns @c TRUE if the list is empty, and @c FALSE
* otherwise.
*
* The function tests if the list @em list contains data. A call to this
* function is equivalent to the statement:
*
* @code
* return (cx_list_size(list) == 0);
* @endcode
*/
cxbool
cx_list_empty(const cx_list *list)
{
cx_assert(list != NULL);
return _cx_list_empty(list);
}
/**
* @brief
* Create a new list without any elements.
*
* @return Handle to the newly allocated list.
*
* The function allocates memory for the list object and initializes
* it to a empty list.
*/
cx_list *
cx_list_new(void)
{
cx_list *list = cx_malloc(sizeof *list);
_cx_list_init(list);
return list;
}
/**
* @brief
* Destroy a list.
*
* @param list The list to delete.
*
* @return Nothing.
*
* The function deallocates the list object, but not the data objects
* currently stored in the list.
*/
void
cx_list_delete(cx_list *list)
{
_cx_list_clear(list);
cx_assert(cx_list_empty(list));
cx_free(list);
return;
}
/**
* @brief
* Destroy a list and all its elements.
*
* @param list List container to destroy.
* @param deallocate Data deallocator.
*
* @return Nothing.
*
* The function deallocates all data objects referenced by the list using
* the data deallocation function @em deallocate and finally deallocates
* the list itself.
*/
void
cx_list_destroy(cx_list *list, cx_free_func deallocate)
{
cx_list_iterator l;
if (!list)
return;
cx_assert(deallocate != NULL);
l = _cx_list_begin(list);
while (l != _cx_list_end(list)) {
cx_lnode *node = l;
l = _cx_list_next(list, l);
_cx_lnode_destroy(_cx_list_extract(node), deallocate);
}
cx_assert(cx_list_empty(list));
cx_free(list);
return;
}
/**
* @brief
* Get the actual number of list elements.
*
* @param list A list.
*
* @return The current number of elements the list contains, or 0 if the
* list is empty.
*
* Retrieves the number of elements currently stored in the list @em list.
*/
cxsize
cx_list_size(const cx_list *list)
{
cx_assert(list != NULL);
return _cx_list_size(list);
}
/**
* @brief
* Get the maximum number of list elements possible.
*
* @param list A list.
*
* @return The maximum number of elements that can be stored in the list.
*
* Retrieves the lists capacity, i.e. the maximum possible number of data
* items a list can hold.
*/
cxsize
cx_list_max_size(const cx_list *list)
{
cx_assert(list != NULL);
return (cxsize)(-1);
}
/**
* @brief
* Swap the data of two lists.
*
* @param list1 First list.
* @param list2 Second list.
*
* @return Nothing.
*
* The contents of the first list @em list1 will be moved to the second
* list @em list2, while the contents of @em list2 is moved to @em list1.
*/
void
cx_list_swap(cx_list *list1, cx_list *list2)
{
cx_lnode *tmp;
tmp = list1->head.next;
list1->head.next = list2->head.next;
list1->head.next->prev = &list1->head;
list2->head.next = tmp;
list2->head.next->prev = &list2->head;
tmp = list1->head.prev;
list1->head.prev = list2->head.prev;
list1->head.prev->next = &list1->head;
list2->head.prev = tmp;
list2->head.prev->next = &list2->head;
return;
}
/**
* @brief
* Assign data to a list element.
*
* @param list A list.
* @param position List position where the data will be stored
* @param data Data to store.
*
* @return Handle to the previously stored data object.
*
* The function assigns the data object reference @em data
* to the iterator position @em position of the list @em list.
*/
cxptr
cx_list_assign(cx_list *list, cx_list_iterator position, cxcptr data)
{
cxptr tmp;
cx_assert(list != NULL);
cx_assert(_cx_lnode_exists(list, position));
tmp = _cx_lnode_get(position);
_cx_lnode_put(position, data);
return tmp;
}
/**
* @brief
* Get the first element of a list.
*
* @param list The list to query.
*
* @return Handle to the data object stored in the first list element.
*
* The function returns a reference to the first data item in the list
* @em list.
*
* Calling this function with an empty list is an invalid operation, and
* the result is undefined.
*/
cxptr
cx_list_front(const cx_list *list)
{
cx_assert(list != NULL);
cx_assert(!cx_list_empty(list));
return _cx_lnode_get(_cx_list_begin(list));
}
/**
* @brief
* Get the last element of a list.
*
* @param list The list to query.
*
* @return Handle to the data object stored in the last list element.
*
* The function returns a reference to the last data item in the list
* @em list.
*
* Calling this function with an empty list is an invalid operation, and
* the result is undefined.
*
*/
cxptr
cx_list_back(const cx_list *list)
{
cx_assert(list != NULL);
cx_assert(!cx_list_empty(list));
return _cx_lnode_get(_cx_list_previous(list, _cx_list_end(list)));
}
/**
* @brief
* Get the data at a given iterator position.
*
* @param list A list.
* @param position List position the data is retrieved from.
*
* @return Handle to the data object.
*
* The function returns a reference to the data item stored in the list
* @em list at the iterator position @em position.
*/
cxptr
cx_list_get(const cx_list *list, cx_list_const_iterator position)
{
cx_assert(list != NULL);
cx_assert(_cx_lnode_exists(list, position));
return _cx_lnode_get(position);
}
/**
* @brief
* Insert data into a list at a given iterator position.
*
* @param list The list to update.
* @param position List iterator position.
* @param data Data item to insert.
*
* @return List iterator position of the inserted data item.
*
* The function inserts the data object reference @em data into the list
* @em list at the list position given by the list iterator @em position.
*/
cx_list_iterator
cx_list_insert(cx_list *list, cx_list_iterator position, cxcptr data)
{
cx_lnode *node;
cx_assert(list != NULL);
cx_assert(position == _cx_list_end(list) ||
_cx_lnode_exists(list, position));
cx_assert(_cx_list_size(list) + 1 > _cx_list_size(list));
node = _cx_list_insert(position, _cx_lnode_create(data));
cx_assert(_cx_list_size(list) <= cx_list_max_size(list));
return node;
}
/**
* @brief
* Insert data at the beginning of a list.
*
* @param list The list to update.
* @param data Data to add to the list.
*
* @return Nothing.
*
* The data @em data is inserted into the list @em list before the first
* element of the list, so that it becomes the new list head.
*
* It is equivalent to the statement
* @code
* cx_list_insert(list, cx_list_begin(list), data);
* @endcode
*/
void
cx_list_push_front(cx_list *list, cxcptr data)
{
cx_assert(list != NULL);
_cx_list_insert(_cx_list_begin(list), _cx_lnode_create(data));
return;
}
/**
* @brief
* Append data at the end of a list.
*
* @param list The list to update.
* @param data Data to append.
*
* @return Nothing.
*
* The data @em data is inserted into the list @em list after the last
* element, so that it becomes the new list tail.
*
* It is equivalent to the statement
* @code
* cx_list_insert(list, cx_list_end(list), data);
* @endcode
*/
void
cx_list_push_back(cx_list *list, cxcptr data)
{
cx_assert(list != NULL);
_cx_list_insert(_cx_list_end(list), _cx_lnode_create(data));
return;
}
/**
* @brief
* Erase a list element.
*
* @param list The list to update.
* @param position List iterator position.
* @param deallocate Data deallocator.
*
* @return The iterator for the list position after @em position.
*
* The function removes the data object stored at position @em position
* from the list @em list. The data object itself is deallocated by calling
* the data deallocator @em deallocate.
*/
cx_list_iterator
cx_list_erase(cx_list *list, cx_list_iterator position,
cx_free_func deallocate)
{
cx_lnode *next;
cx_assert(list != NULL);
cx_assert(deallocate != NULL);
cx_assert(_cx_lnode_exists(list, position));
next = _cx_list_next(list, position);
_cx_lnode_destroy(_cx_list_extract(position), deallocate);
return next;
}
/**
* @brief
* Extract a list element.
*
* @param list A list.
* @param position List iterator position.
*
* @return Handle to the previously stored data object.
*
* The function removes a data object from the list @em list located at the
* iterator position @em position without destroying the data object.
*
* @see cx_list_erase(), cx_list_remove()
*/
cxptr
cx_list_extract(cx_list *list, cx_list_iterator position)
{
cx_assert(list != NULL);
cx_assert(_cx_lnode_exists(list, position));
_cx_list_extract(position);
return _cx_lnode_delete(position);
}
/**
* @brief
* Remove the first list element.
*
* @param list The list to update.
*
* @return Handle to the data object previously stored as the first
* list element.
*
* The function removes the first element from the list @em list returning
* a handle to the previously stored data.
*
* It is equivalent to the statement
* @code
* cx_list_extract(list, cx_list_begin(list));
* @endcode
*
* Calling this function with an empty list is an invalid operation, and
* the result is undefined.
*/
cxptr
cx_list_pop_front(cx_list *list)
{
cx_assert(!cx_list_empty(list));
return _cx_lnode_delete(_cx_list_extract(cx_list_begin(list)));
}
/**
* @brief
* Remove the last element of a list.
*
* @param list The list to update.
*
* @return Handle to the data object previously stored as the last
* list element.
*
* The function removes the last element from the list @em list returning
* a handle to the previously stored data.
*
* It is equivalent to the statement
* @code
* cx_list_extract(list, cx_list_previous(list, cx_list_end(list)));
* @endcode
*
* Calling this function with an empty list is an invalid operation, and
* the result is undefined.
*/
cxptr
cx_list_pop_back(cx_list *list)
{
cx_lnode *position = NULL;
cx_assert(!cx_list_empty(list));
position = _cx_list_previous(list, cx_list_end(list));
return _cx_lnode_delete(_cx_list_extract(position));
}
/**
* @brief
* Remove all elements with a given value from a list.
*
* @param list A list object.
* @param data Data to remove.
*
* @return Nothing.
*
* The value @em data is searched in the list @em list. If the data is
* found it is removed from the list. The data object itself is not
* deallocated.
*/
void
cx_list_remove(cx_list *list, cxcptr data)
{
cx_lnode *first, *last;
first = cx_list_begin(list);
last = _cx_list_end(list);
while (first != last) {
cx_lnode *next = _cx_list_next(list, first);
if (_cx_lnode_get(first) == data) {
_cx_list_extract(first);
_cx_lnode_delete(first);
}
first = next;
}
return;
}
/**
* @brief
* Remove duplicates of consecutive elements.
*
* @param list A list.
* @param compare Function comparing the list elements.
*
* @return Nothing.
*
* The function removes duplicates of consecutive list elements, i.e. list
* elements with the same value, from the list @em list. The equality of
* the list elements is checked using the comparison function @em compare.
* The comparison function @em compare must return an integer less than,
* equal or greater than zero if the first argument passed to it is found,
* respectively, to be less than, match, or be greater than the second
* argument.
*/
void
cx_list_unique(cx_list *list, cx_compare_func compare)
{
cx_lnode *first, *last, *next;
cx_assert(list != NULL);
cx_assert(compare != NULL);
if (cx_list_empty(list))
return;
first = _cx_list_begin(list);
last = _cx_list_end(list);
next = _cx_list_next(list, first);
while (next != last) {
if (compare(_cx_lnode_get(first), _cx_lnode_get(next)) == 0) {
_cx_list_extract(next);
_cx_lnode_delete(next);
}
else
first = next;
next = _cx_list_next(list, first);
}
return;
}
/**
* @brief
* Move a range of list elements in front of a given position.
*
* @param tlist Target list.
* @param position Target iterator position.
* @param slist Source list.
* @param first Position of the first element to move.
* @param last Position of the last element to move.
*
* @return Nothing.
*
* The range of list elements from the iterator position @em first to
* @em last, but not including @em last, is moved from the source list
* @em slist in front of the position @em position of the target list
* @em tlist. Target and source list may be identical, provided that the
* target position @em position does not fall within the range of list
* elements to move.
*/
void
cx_list_splice(cx_list *tlist, cx_list_iterator position,
cx_list *slist, cx_list_iterator first,
cx_list_iterator last)
{
cx_assert(slist != NULL);
cx_assert(first == _cx_list_end(slist) || _cx_lnode_exists(slist, first));
cx_assert(last == _cx_list_end(slist) ||
_cx_lnode_follows(slist, first, last));
if (first != last) {
cx_assert(tlist != NULL);
cx_assert(position == _cx_list_end(tlist) ||
_cx_lnode_exists(tlist, position));
cx_assert(slist != tlist ||
(_cx_lnode_follows(slist, position, first) ||
_cx_lnode_follows(slist, last, position)));
_cx_list_transfer(position, first, last);
}
return;
}
/**
* @brief
* Merge two sorted lists.
*
* @param list1 First list to merge.
* @param list2 Second list to merge.
* @param compare Function comparing the list elements.
*
* @return Nothing.
*
* The function combines the two lists @em list1 and @em list2 by moving all
* elements from @em list2 into @em list1, so that all elements are still
* sorted. The function requires that both input lists are already sorted.
* The sorting order in which the elements of @em list2 are inserted
* into @em list1 is determined by the comparison function @em compare.
* The comparison function @em compare must return an integer less than, equal
* or greater than zero if the first argument passed to it is found,
* respectively, to be less than, match, or be greater than the second
* argument.
*
* The list @em list2 is consumed by this process, i.e. after the successful
* merging of the two lists, list @em list2 will be empty.
*/
void
cx_list_merge(cx_list *list1, cx_list *list2, cx_compare_func compare)
{
cx_assert(list1 != NULL);
cx_assert(list2 != NULL);
cx_assert(compare != NULL);
_cx_list_merge(list1, list2, compare);
return;
}
/**
* @brief
* Sort all elements of a list using the given comparison function.
*
* @param list The list to sort.
* @param compare Function comparing the list elements.
*
* @return Nothing.
*
* The input list @em list is sorted using the comparison function
* @em compare to determine the order of two list elements. The comparison
* function @em compare must return an integer less than, equal
* or greater than zero if the first argument passed to it is found,
* respectively, to be less than, match, or be greater than the second
* argument.
*/
void
cx_list_sort(cx_list *list, cx_compare_func compare)
{
cx_assert(list != NULL);
cx_assert(compare != NULL);
_cx_list_sort(list, compare);
return;
}
/**
* @brief
* Reverse the order of all list elements.
*
* @param list The list to reverse.
*
* @return Nothing.
*
* The order of the elements of the list @em list is reversed.
*/
void
cx_list_reverse(cx_list *list)
{
cx_assert(list != NULL);
/*
* Nothing to be done if the list has length 0 or 1
*/
if (list->head.next != &list->head &&
list->head.next->next != &list->head) {
cx_lnode *first = _cx_list_begin(list);
first = _cx_list_next(list, first);
while (first != _cx_list_end(list)) {
cx_lnode *old = first;
first = _cx_list_next(list, first);
_cx_list_transfer(_cx_list_begin(list), old, first);
}
}
return;
}
/**@}*/
|