src/linked_list.c

Sat, 09 Apr 2022 16:37:43 +0200

author
Mike Becker <universe@uap-core.de>
date
Sat, 09 Apr 2022 16:37:43 +0200
changeset 508
8aea65ae1eaf
parent 503
a89857072ace
child 509
0d3c6075f82c
permissions
-rw-r--r--

#168 - add attributes and const

universe@398 1 /*
universe@398 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
universe@398 3 *
universe@398 4 * Copyright 2021 Mike Becker, Olaf Wintermann All rights reserved.
universe@398 5 *
universe@398 6 * Redistribution and use in source and binary forms, with or without
universe@398 7 * modification, are permitted provided that the following conditions are met:
universe@398 8 *
universe@398 9 * 1. Redistributions of source code must retain the above copyright
universe@398 10 * notice, this list of conditions and the following disclaimer.
universe@398 11 *
universe@398 12 * 2. Redistributions in binary form must reproduce the above copyright
universe@398 13 * notice, this list of conditions and the following disclaimer in the
universe@398 14 * documentation and/or other materials provided with the distribution.
universe@398 15 *
universe@398 16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@398 17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@398 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
universe@398 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
universe@398 20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
universe@398 21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
universe@398 22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
universe@398 23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
universe@398 24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
universe@398 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
universe@398 26 * POSSIBILITY OF SUCH DAMAGE.
universe@398 27 */
universe@398 28
universe@398 29 #include "cx/linked_list.h"
universe@401 30 #include <stdint.h>
universe@401 31 #include <string.h>
universe@453 32 #include <assert.h>
universe@398 33
universe@398 34 /* LOW LEVEL LINKED LIST FUNCTIONS */
universe@398 35
universe@468 36 #define CX_LL_PTR(cur, off) (*(void**)(((char*)cur)+off))
universe@480 37 #define ll_prev(node) CX_LL_PTR(node, loc_prev)
universe@480 38 #define ll_next(node) CX_LL_PTR(node, loc_next)
universe@480 39 #define ll_advance(node) CX_LL_PTR(node, loc_advance)
universe@480 40 #define ll_data(node) (follow_ptr?CX_LL_PTR(node, loc_data):(((char*)node)+loc_data))
universe@398 41
universe@481 42 void *cx_linked_list_at(
universe@508 43 void const *start,
universe@481 44 size_t start_index,
universe@481 45 ptrdiff_t loc_advance,
universe@481 46 size_t index
universe@481 47 ) {
universe@473 48 assert(start != NULL);
universe@473 49 assert(loc_advance >= 0);
universe@438 50 size_t i = start_index;
universe@508 51 void const *cur = start;
universe@438 52 while (i != index && cur != NULL) {
universe@480 53 cur = ll_advance(cur);
universe@438 54 i < index ? i++ : i--;
universe@438 55 }
universe@508 56 return (void *) cur;
universe@438 57 }
universe@438 58
universe@481 59 size_t cx_linked_list_find(
universe@489 60 void const *start,
universe@481 61 ptrdiff_t loc_advance,
universe@481 62 ptrdiff_t loc_data,
universe@487 63 bool follow_ptr,
universe@481 64 CxListComparator cmp_func,
universe@489 65 void const *elem
universe@481 66 ) {
universe@480 67 assert(start != NULL);
universe@480 68 assert(loc_advance >= 0);
universe@480 69 assert(loc_data >= 0);
universe@480 70 assert(cmp_func);
universe@480 71
universe@489 72 void const *node = start;
universe@480 73 size_t index = 0;
universe@480 74 do {
universe@480 75 void *current = ll_data(node);
universe@480 76 if (cmp_func(current, elem) == 0) {
universe@480 77 return index;
universe@480 78 }
universe@480 79 node = ll_advance(node);
universe@480 80 index++;
universe@480 81 } while (node != NULL);
universe@480 82 return index;
universe@480 83 }
universe@480 84
universe@481 85 void *cx_linked_list_first(
universe@508 86 void const *node,
universe@481 87 ptrdiff_t loc_prev
universe@481 88 ) {
universe@475 89 return cx_linked_list_last(node, loc_prev);
universe@475 90 }
universe@475 91
universe@481 92 void *cx_linked_list_last(
universe@508 93 void const *node,
universe@481 94 ptrdiff_t loc_next
universe@481 95 ) {
universe@478 96 assert(node != NULL);
universe@473 97 assert(loc_next >= 0);
universe@398 98
universe@508 99 void const *cur = node;
universe@508 100 void const *last;
universe@456 101 do {
universe@456 102 last = cur;
universe@480 103 } while ((cur = ll_next(cur)) != NULL);
universe@398 104
universe@508 105 return (void *) last;
universe@398 106 }
universe@398 107
universe@481 108 void *cx_linked_list_prev(
universe@508 109 void const *begin,
universe@481 110 ptrdiff_t loc_next,
universe@508 111 void const *node
universe@481 112 ) {
universe@473 113 assert(begin != NULL);
universe@478 114 assert(node != NULL);
universe@473 115 assert(loc_next >= 0);
universe@473 116 if (begin == node) return NULL;
universe@508 117 void const *cur = begin;
universe@508 118 void const *next;
universe@473 119 while (1) {
universe@480 120 next = ll_next(cur);
universe@508 121 if (next == node) return (void *) cur;
universe@473 122 cur = next;
universe@473 123 }
universe@473 124 }
universe@473 125
universe@481 126 void cx_linked_list_link(
universe@481 127 void *left,
universe@481 128 void *right,
universe@481 129 ptrdiff_t loc_prev,
universe@481 130 ptrdiff_t loc_next
universe@481 131 ) {
universe@473 132 assert(loc_next >= 0);
universe@481 133 ll_next(left) = right;
universe@481 134 if (loc_prev >= 0) {
universe@481 135 ll_prev(right) = left;
universe@481 136 }
universe@481 137 }
universe@481 138
universe@481 139 void cx_linked_list_unlink(
universe@481 140 void *left,
universe@481 141 void *right,
universe@481 142 ptrdiff_t loc_prev,
universe@481 143 ptrdiff_t loc_next
universe@481 144 ) {
universe@481 145 assert (loc_next >= 0);
universe@481 146 assert(ll_next(left) == right);
universe@481 147 ll_next(left) = NULL;
universe@481 148 if (loc_prev >= 0) {
universe@481 149 assert(ll_prev(right) == left);
universe@481 150 ll_prev(right) = NULL;
universe@481 151 }
universe@481 152 }
universe@481 153
universe@481 154 void cx_linked_list_add(
universe@481 155 void **begin,
universe@481 156 void **end,
universe@481 157 ptrdiff_t loc_prev,
universe@481 158 ptrdiff_t loc_next,
universe@481 159 void *new_node
universe@481 160 ) {
universe@456 161 void *last;
universe@456 162 if (end == NULL) {
universe@456 163 assert(begin != NULL);
universe@478 164 last = *begin == NULL ? NULL : cx_linked_list_last(*begin, loc_next);
universe@456 165 } else {
universe@456 166 last = *end;
universe@456 167 }
universe@481 168 cx_linked_list_insert_chain(begin, end, loc_prev, loc_next, last, new_node, new_node);
universe@481 169 }
universe@481 170
universe@481 171 void cx_linked_list_prepend(
universe@481 172 void **begin,
universe@481 173 void **end,
universe@481 174 ptrdiff_t loc_prev,
universe@481 175 ptrdiff_t loc_next,
universe@481 176 void *new_node
universe@481 177 ) {
universe@481 178 cx_linked_list_insert_chain(begin, end, loc_prev, loc_next, NULL, new_node, new_node);
universe@481 179 }
universe@481 180
universe@481 181 void cx_linked_list_insert(
universe@481 182 void **begin,
universe@481 183 void **end,
universe@481 184 ptrdiff_t loc_prev,
universe@481 185 ptrdiff_t loc_next,
universe@481 186 void *node,
universe@481 187 void *new_node
universe@481 188 ) {
universe@481 189 cx_linked_list_insert_chain(begin, end, loc_prev, loc_next, node, new_node, new_node);
universe@481 190 }
universe@481 191
universe@481 192 void cx_linked_list_insert_chain(
universe@481 193 void **begin,
universe@481 194 void **end,
universe@481 195 ptrdiff_t loc_prev,
universe@481 196 ptrdiff_t loc_next,
universe@481 197 void *node,
universe@481 198 void *insert_begin,
universe@481 199 void *insert_end
universe@481 200 ) {
universe@481 201 // find the end of the chain, if not specified
universe@481 202 if (insert_end == NULL) {
universe@481 203 insert_end = cx_linked_list_last(insert_begin, loc_next);
universe@481 204 }
universe@481 205
universe@481 206 // determine the successor
universe@481 207 void *successor;
universe@481 208 if (node == NULL) {
universe@481 209 assert(begin != NULL || (end != NULL && loc_prev >= 0));
universe@475 210 if (begin != NULL) {
universe@481 211 successor = *begin;
universe@481 212 *begin = insert_begin;
universe@481 213 } else {
universe@481 214 successor = *end == NULL ? NULL : cx_linked_list_first(*end, loc_prev);
universe@475 215 }
universe@428 216 } else {
universe@481 217 successor = ll_next(node);
universe@481 218 cx_linked_list_link(node, insert_begin, loc_prev, loc_next);
universe@398 219 }
universe@398 220
universe@481 221 if (successor == NULL) {
universe@481 222 // the list ends with the new chain
universe@481 223 if (end != NULL) {
universe@481 224 *end = insert_end;
universe@481 225 }
universe@481 226 } else {
universe@481 227 cx_linked_list_link(insert_end, successor, loc_prev, loc_next);
universe@398 228 }
universe@398 229 }
universe@398 230
universe@481 231 void cx_linked_list_remove(
universe@481 232 void **begin,
universe@481 233 void **end,
universe@481 234 ptrdiff_t loc_prev,
universe@481 235 ptrdiff_t loc_next,
universe@481 236 void *node
universe@481 237 ) {
universe@477 238 assert(node != NULL);
universe@473 239 assert(loc_next >= 0);
universe@473 240 assert(loc_prev >= 0 || begin != NULL);
universe@473 241
universe@473 242 // find adjacent nodes
universe@480 243 void *next = ll_next(node);
universe@473 244 void *prev;
universe@473 245 if (loc_prev >= 0) {
universe@480 246 prev = ll_prev(node);
universe@473 247 } else {
universe@473 248 prev = cx_linked_list_prev(*begin, loc_next, node);
universe@473 249 }
universe@473 250
universe@476 251 // update next pointer of prev node, or set begin
universe@476 252 if (prev == NULL) {
universe@476 253 if (begin != NULL) {
universe@476 254 *begin = next;
universe@476 255 }
universe@476 256 } else {
universe@480 257 ll_next(prev) = next;
universe@473 258 }
universe@476 259
universe@476 260 // update prev pointer of next node, or set end
universe@476 261 if (next == NULL) {
universe@476 262 if (end != NULL) {
universe@476 263 *end = prev;
universe@476 264 }
universe@476 265 } else if (loc_prev >= 0) {
universe@480 266 ll_prev(next) = prev;
universe@473 267 }
universe@473 268 }
universe@473 269
universe@481 270 size_t cx_linked_list_size(
universe@489 271 void const *node,
universe@481 272 ptrdiff_t loc_next
universe@481 273 ) {
universe@473 274 assert(loc_next >= 0);
universe@468 275 size_t size = 0;
universe@468 276 while (node != NULL) {
universe@480 277 node = ll_next(node);
universe@468 278 size++;
universe@468 279 }
universe@468 280 return size;
universe@468 281 }
universe@468 282
universe@481 283 static void *cx_linked_list_sort_merge(
universe@481 284 ptrdiff_t loc_prev,
universe@481 285 ptrdiff_t loc_next,
universe@481 286 ptrdiff_t loc_data,
universe@487 287 bool follow_ptr,
universe@481 288 size_t length,
universe@481 289 void *ls,
universe@481 290 void *le,
universe@481 291 void *re,
universe@481 292 CxListComparator cmp_func
universe@481 293 ) {
universe@468 294 const size_t sbo_len = 1024;
universe@468 295 void *sbo[sbo_len];
universe@468 296 void **sorted = (length >= sbo_len) ? malloc(sizeof(void *) * length) : sbo;
universe@508 297 if (sorted == NULL) abort();
universe@468 298 void *rc, *lc;
universe@468 299
universe@468 300 lc = ls;
universe@468 301 rc = le;
universe@468 302 size_t n = 0;
universe@468 303 while (lc && lc != le && rc != re) {
universe@468 304 if (cmp_func(ll_data(lc), ll_data(rc)) <= 0) {
universe@468 305 sorted[n] = lc;
universe@468 306 lc = ll_next(lc);
universe@468 307 } else {
universe@468 308 sorted[n] = rc;
universe@468 309 rc = ll_next(rc);
universe@468 310 }
universe@468 311 n++;
universe@468 312 }
universe@468 313 while (lc && lc != le) {
universe@468 314 sorted[n] = lc;
universe@468 315 lc = ll_next(lc);
universe@468 316 n++;
universe@468 317 }
universe@468 318 while (rc && rc != re) {
universe@468 319 sorted[n] = rc;
universe@468 320 rc = ll_next(rc);
universe@468 321 n++;
universe@468 322 }
universe@468 323
universe@468 324 // Update pointer
universe@468 325 if (loc_prev >= 0) ll_prev(sorted[0]) = NULL;
universe@468 326 for (size_t i = 0; i < length - 1; i++) {
universe@481 327 cx_linked_list_link(sorted[i], sorted[i + 1], loc_prev, loc_next);
universe@468 328 }
universe@468 329 ll_next(sorted[length - 1]) = NULL;
universe@468 330
universe@468 331 void *ret = sorted[0];
universe@468 332 if (sorted != sbo) {
universe@468 333 free(sorted);
universe@468 334 }
universe@468 335 return ret;
universe@468 336 }
universe@468 337
universe@476 338 void cx_linked_list_sort( /* NOLINT(misc-no-recursion) - purposely recursive function */
universe@481 339 void **begin,
universe@481 340 void **end,
universe@481 341 ptrdiff_t loc_prev,
universe@481 342 ptrdiff_t loc_next,
universe@481 343 ptrdiff_t loc_data,
universe@487 344 bool follow_ptr,
universe@481 345 CxListComparator cmp_func
universe@481 346 ) {
universe@468 347 assert(begin != NULL);
universe@473 348 assert(loc_next >= 0);
universe@473 349 assert(loc_data >= 0);
universe@473 350 assert(cmp_func);
universe@468 351
universe@468 352 void *lc, *ls, *le, *re;
universe@468 353
universe@468 354 // set start node
universe@468 355 ls = *begin;
universe@468 356
universe@468 357 // check how many elements are already sorted
universe@468 358 lc = ls;
universe@468 359 size_t ln = 1;
universe@468 360 while (ll_next(lc) != NULL && cmp_func(ll_data(ll_next(lc)), ll_data(lc)) > 0) {
universe@468 361 lc = ll_next(lc);
universe@468 362 ln++;
universe@468 363 }
universe@468 364 le = ll_next(lc);
universe@468 365
universe@468 366 // if first unsorted node is NULL, the list is already completely sorted
universe@468 367 if (le != NULL) {
universe@468 368 void *rc;
universe@468 369 size_t rn = 1;
universe@468 370 rc = le;
universe@468 371 // skip already sorted elements
universe@468 372 while (ll_next(rc) != NULL && cmp_func(ll_data(ll_next(rc)), ll_data(rc)) > 0) {
universe@468 373 rc = ll_next(rc);
universe@468 374 rn++;
universe@468 375 }
universe@468 376 re = ll_next(rc);
universe@468 377
universe@468 378 // {ls,...,le->prev} and {rs,...,re->prev} are sorted - merge them
universe@468 379 void *sorted = cx_linked_list_sort_merge(loc_prev, loc_next, loc_data, follow_ptr,
universe@468 380 ln + rn, ls, le, re, cmp_func);
universe@468 381
universe@468 382 // Something left? Sort it!
universe@468 383 size_t remainder_length = cx_linked_list_size(re, loc_next);
universe@468 384 if (remainder_length > 0) {
universe@468 385 void *remainder = re;
universe@468 386 cx_linked_list_sort(&remainder, NULL, loc_prev, loc_next, loc_data, follow_ptr, cmp_func);
universe@468 387
universe@468 388 // merge sorted list with (also sorted) remainder
universe@468 389 *begin = cx_linked_list_sort_merge(loc_prev, loc_next, loc_data, follow_ptr,
universe@468 390 ln + rn + remainder_length,
universe@468 391 sorted, remainder, NULL, cmp_func);
universe@468 392 } else {
universe@468 393 // no remainder - we've got our sorted list
universe@468 394 *begin = sorted;
universe@468 395 }
universe@468 396 if (end) *end = cx_linked_list_last(sorted, loc_next);
universe@468 397 }
universe@468 398 }
universe@468 399
universe@486 400 int cx_linked_list_compare(
universe@489 401 void const *begin_left,
universe@489 402 void const *begin_right,
universe@486 403 ptrdiff_t loc_advance,
universe@486 404 ptrdiff_t loc_data,
universe@487 405 bool follow_ptr,
universe@486 406 CxListComparator cmp_func
universe@486 407 ) {
universe@489 408 void const *left = begin_left, *right = begin_right;
universe@486 409
universe@486 410 while (left != NULL && right != NULL) {
universe@486 411 int result = cmp_func(ll_data(left), ll_data(right));
universe@486 412 if (result != 0) return result;
universe@486 413 left = ll_advance(left);
universe@486 414 right = ll_advance(right);
universe@486 415 }
universe@486 416
universe@486 417 if (left != NULL) { return 1; }
universe@486 418 else if (right != NULL) { return -1; }
universe@486 419 else { return 0; }
universe@486 420 }
universe@486 421
universe@481 422 void cx_linked_list_reverse(
universe@481 423 void **begin,
universe@481 424 void **end,
universe@481 425 ptrdiff_t loc_prev,
universe@481 426 ptrdiff_t loc_next
universe@481 427 ) {
universe@473 428 assert(begin != NULL);
universe@473 429 assert(loc_next >= 0);
universe@473 430
universe@473 431 // swap all links
universe@473 432 void *prev = NULL;
universe@473 433 void *cur = *begin;
universe@473 434 while (cur != NULL) {
universe@480 435 void *next = ll_next(cur);
universe@473 436
universe@480 437 ll_next(cur) = prev;
universe@473 438 if (loc_prev >= 0) {
universe@480 439 ll_prev(cur) = next;
universe@473 440 }
universe@473 441
universe@473 442 prev = cur;
universe@473 443 cur = next;
universe@473 444 }
universe@473 445
universe@473 446 // update begin and end
universe@473 447 if (end != NULL) {
universe@473 448 *end = *begin;
universe@473 449 }
universe@473 450 *begin = prev;
universe@473 451 }
universe@473 452
universe@398 453 /* HIGH LEVEL LINKED LIST IMPLEMENTATION */
universe@398 454
universe@447 455 typedef struct cx_linked_list_node cx_linked_list_node;
universe@447 456 struct cx_linked_list_node {
universe@447 457 cx_linked_list_node *prev;
universe@447 458 cx_linked_list_node *next;
universe@403 459 char payload[];
universe@447 460 };
universe@402 461
universe@446 462 #define CX_LL_LOC_PREV offsetof(cx_linked_list_node, prev)
universe@446 463 #define CX_LL_LOC_NEXT offsetof(cx_linked_list_node, next)
universe@469 464 #define CX_LL_LOC_DATA offsetof(cx_linked_list_node, payload)
universe@439 465
universe@398 466 typedef struct {
universe@500 467 struct cx_list_s base;
universe@446 468 cx_linked_list_node *begin;
universe@446 469 cx_linked_list_node *end;
universe@398 470 } cx_linked_list;
universe@398 471
universe@481 472 static cx_linked_list_node *cx_ll_node_at(
universe@489 473 cx_linked_list const *list,
universe@481 474 size_t index
universe@481 475 ) {
universe@447 476 if (index >= list->base.size) {
universe@447 477 return NULL;
universe@447 478 } else if (index > list->base.size / 2) {
universe@468 479 return cx_linked_list_at(list->end, list->base.size - 1, CX_LL_LOC_PREV, index);
universe@447 480 } else {
universe@447 481 return cx_linked_list_at(list->begin, 0, CX_LL_LOC_NEXT, index);
universe@447 482 }
universe@447 483 }
universe@447 484
universe@499 485 static int cx_ll_insert_at(
universe@500 486 struct cx_list_s *list,
universe@499 487 cx_linked_list_node *node,
universe@489 488 void const *elem
universe@481 489 ) {
universe@448 490
universe@481 491 // create the new new_node
universe@481 492 cx_linked_list_node *new_node = cxMalloc(list->allocator,
universe@481 493 sizeof(cx_linked_list_node) + list->itemsize);
universe@448 494
universe@448 495 // sortir if failed
universe@481 496 if (new_node == NULL) return 1;
universe@448 497
universe@481 498 // initialize new new_node
universe@481 499 new_node->prev = new_node->next = NULL;
universe@481 500 memcpy(new_node->payload, elem, list->itemsize);
universe@448 501
universe@481 502 // insert
universe@499 503 cx_linked_list *ll = (cx_linked_list *) list;
universe@481 504 cx_linked_list_insert_chain(
universe@481 505 (void **) &ll->begin, (void **) &ll->end,
universe@481 506 CX_LL_LOC_PREV, CX_LL_LOC_NEXT,
universe@481 507 node, new_node, new_node
universe@481 508 );
universe@448 509
universe@448 510 // increase the size and return
universe@448 511 list->size++;
universe@448 512 return 0;
universe@448 513 }
universe@448 514
universe@499 515 static int cx_ll_insert(
universe@500 516 struct cx_list_s *list,
universe@499 517 size_t index,
universe@499 518 void const *elem
universe@499 519 ) {
universe@499 520 // out-of bounds check
universe@499 521 if (index > list->size) return 1;
universe@499 522
universe@499 523 // find position efficiently
universe@499 524 cx_linked_list_node *node = index == 0 ? NULL : cx_ll_node_at((cx_linked_list *) list, index - 1);
universe@499 525
universe@499 526 // perform insert
universe@499 527 return cx_ll_insert_at(list, node, elem);
universe@499 528 }
universe@499 529
universe@481 530 static int cx_ll_add(
universe@500 531 struct cx_list_s *list,
universe@489 532 void const *elem
universe@481 533 ) {
universe@448 534 return cx_ll_insert(list, list->size, elem);
universe@398 535 }
universe@398 536
universe@481 537 static int cx_pll_insert(
universe@500 538 struct cx_list_s *list,
universe@481 539 size_t index,
universe@489 540 void const *elem
universe@481 541 ) {
universe@466 542 return cx_ll_insert(list, index, &elem);
universe@466 543 }
universe@466 544
universe@481 545 static int cx_pll_add(
universe@500 546 struct cx_list_s *list,
universe@489 547 void const *elem
universe@481 548 ) {
universe@466 549 return cx_ll_insert(list, list->size, &elem);
universe@466 550 }
universe@466 551
universe@481 552 static int cx_ll_remove(
universe@500 553 struct cx_list_s *list,
universe@481 554 size_t index
universe@481 555 ) {
universe@447 556 cx_linked_list *ll = (cx_linked_list *) list;
universe@447 557 cx_linked_list_node *node = cx_ll_node_at(ll, index);
universe@447 558
universe@447 559 // out-of-bounds check
universe@447 560 if (node == NULL) return 1;
universe@447 561
universe@476 562 // remove
universe@476 563 cx_linked_list_remove((void **) &ll->begin, (void **) &ll->end,
universe@476 564 CX_LL_LOC_PREV, CX_LL_LOC_NEXT, node);
universe@447 565
universe@447 566 // adjust size
universe@447 567 list->size--;
universe@447 568
universe@447 569 // free and return
universe@447 570 cxFree(list->allocator, node);
universe@447 571
universe@438 572 return 0;
universe@398 573 }
universe@398 574
universe@481 575 static void *cx_ll_at(
universe@500 576 struct cx_list_s const *list,
universe@481 577 size_t index
universe@481 578 ) {
universe@439 579 cx_linked_list *ll = (cx_linked_list *) list;
universe@447 580 cx_linked_list_node *node = cx_ll_node_at(ll, index);
universe@466 581 return node == NULL ? NULL : node->payload;
universe@466 582 }
universe@466 583
universe@481 584 static void *cx_pll_at(
universe@500 585 struct cx_list_s const *list,
universe@481 586 size_t index
universe@481 587 ) {
universe@466 588 cx_linked_list *ll = (cx_linked_list *) list;
universe@466 589 cx_linked_list_node *node = cx_ll_node_at(ll, index);
universe@468 590 return node == NULL ? NULL : *(void **) node->payload;
universe@439 591 }
universe@439 592
universe@481 593 static size_t cx_ll_find(
universe@500 594 struct cx_list_s const *list,
universe@489 595 void const *elem
universe@481 596 ) {
universe@480 597 return cx_linked_list_find(((cx_linked_list *) list)->begin,
universe@480 598 CX_LL_LOC_NEXT, CX_LL_LOC_DATA,
universe@487 599 false, list->cmpfunc, elem);
universe@398 600 }
universe@398 601
universe@481 602 static size_t cx_pll_find(
universe@500 603 struct cx_list_s const *list,
universe@489 604 void const *elem
universe@481 605 ) {
universe@480 606 return cx_linked_list_find(((cx_linked_list *) list)->begin,
universe@480 607 CX_LL_LOC_NEXT, CX_LL_LOC_DATA,
universe@487 608 true, list->cmpfunc, elem);
universe@466 609 }
universe@466 610
universe@500 611 static void cx_ll_sort(struct cx_list_s *list) {
universe@469 612 cx_linked_list *ll = (cx_linked_list *) list;
universe@469 613 cx_linked_list_sort((void **) &ll->begin, (void **) &ll->end,
universe@469 614 CX_LL_LOC_PREV, CX_LL_LOC_NEXT, CX_LL_LOC_DATA,
universe@487 615 false, list->cmpfunc);
universe@469 616 }
universe@469 617
universe@500 618 static void cx_pll_sort(struct cx_list_s *list) {
universe@469 619 cx_linked_list *ll = (cx_linked_list *) list;
universe@469 620 cx_linked_list_sort((void **) &ll->begin, (void **) &ll->end,
universe@469 621 CX_LL_LOC_PREV, CX_LL_LOC_NEXT, CX_LL_LOC_DATA,
universe@487 622 true, list->cmpfunc);
universe@469 623 }
universe@469 624
universe@500 625 static void cx_ll_reverse(struct cx_list_s *list) {
universe@490 626 cx_linked_list *ll = (cx_linked_list *) list;
universe@490 627 cx_linked_list_reverse((void **) &ll->begin, (void **) ll->end, CX_LL_LOC_PREV, CX_LL_LOC_NEXT);
universe@490 628 }
universe@490 629
universe@488 630 static int cx_ll_compare(
universe@500 631 struct cx_list_s const *list,
universe@500 632 struct cx_list_s const *other
universe@488 633 ) {
universe@488 634 cx_linked_list *left = (cx_linked_list *) list;
universe@488 635 cx_linked_list *right = (cx_linked_list *) other;
universe@488 636 return cx_linked_list_compare(left->begin, right->begin,
universe@488 637 CX_LL_LOC_NEXT, CX_LL_LOC_DATA,
universe@488 638 false, list->cmpfunc);
universe@488 639 }
universe@488 640
universe@488 641 static int cx_pll_compare(
universe@500 642 struct cx_list_s const *list,
universe@500 643 struct cx_list_s const *other
universe@488 644 ) {
universe@488 645 cx_linked_list *left = (cx_linked_list *) list;
universe@488 646 cx_linked_list *right = (cx_linked_list *) other;
universe@488 647 return cx_linked_list_compare(left->begin, right->begin,
universe@488 648 CX_LL_LOC_NEXT, CX_LL_LOC_DATA,
universe@488 649 true, list->cmpfunc);
universe@488 650 }
universe@488 651
universe@494 652 static bool cx_ll_iter_valid(CxIterator const *iter) {
universe@495 653 return iter->elem_handle != NULL;
universe@494 654 }
universe@494 655
universe@494 656 static void cx_ll_iter_next(CxIterator *iter) {
universe@495 657 if (iter->remove) {
universe@495 658 iter->remove = false;
universe@495 659 cx_linked_list *ll = iter->src_handle;
universe@495 660 cx_linked_list_node *node = iter->elem_handle;
universe@495 661 iter->elem_handle = node->next;
universe@495 662 cx_linked_list_remove((void **) &ll->begin, (void **) &ll->end,
universe@495 663 CX_LL_LOC_PREV, CX_LL_LOC_NEXT, node);
universe@495 664 ll->base.size--;
universe@495 665 cxFree(ll->base.allocator, node);
universe@495 666 } else {
universe@495 667 iter->index++;
universe@495 668 cx_linked_list_node *node = iter->elem_handle;
universe@495 669 iter->elem_handle = node->next;
universe@495 670 }
universe@494 671 }
universe@494 672
universe@494 673 static void *cx_ll_iter_current(CxIterator const *iter) {
universe@495 674 cx_linked_list_node *node = iter->elem_handle;
universe@494 675 return node->payload;
universe@494 676 }
universe@494 677
universe@494 678 static void *cx_pll_iter_current(CxIterator const *iter) {
universe@495 679 cx_linked_list_node *node = iter->elem_handle;
universe@494 680 return *(void **) node->payload;
universe@494 681 }
universe@494 682
universe@494 683 static CxIterator cx_ll_iterator(
universe@500 684 struct cx_list_s *list,
universe@494 685 size_t index
universe@494 686 ) {
universe@494 687 CxIterator iter;
universe@494 688 iter.index = index;
universe@495 689 iter.src_handle = list;
universe@495 690 iter.elem_handle = cx_ll_node_at((cx_linked_list const *) list, index);
universe@494 691 iter.valid = cx_ll_iter_valid;
universe@494 692 iter.current = cx_ll_iter_current;
universe@494 693 iter.next = cx_ll_iter_next;
universe@495 694 iter.remove = false;
universe@494 695 return iter;
universe@494 696 }
universe@494 697
universe@494 698 static CxIterator cx_pll_iterator(
universe@500 699 struct cx_list_s *list,
universe@494 700 size_t index
universe@494 701 ) {
universe@494 702 CxIterator iter = cx_ll_iterator(list, index);
universe@494 703 iter.current = cx_pll_iter_current;
universe@494 704 return iter;
universe@494 705 }
universe@494 706
universe@499 707 static int cx_ll_insert_iter(
universe@499 708 CxIterator *iter,
universe@499 709 void const *elem,
universe@499 710 int prepend
universe@499 711 ) {
universe@500 712 struct cx_list_s *list = iter->src_handle;
universe@499 713 cx_linked_list_node *node = iter->elem_handle;
universe@499 714 if (node != NULL) {
universe@499 715 assert(prepend >= 0 && prepend <= 1);
universe@499 716 cx_linked_list_node *choice[2] = {node, node->prev};
universe@499 717 int result = cx_ll_insert_at(list, choice[prepend], elem);
universe@499 718 iter->index += prepend * (0 == result);
universe@499 719 return result;
universe@499 720 } else {
universe@499 721 int result = cx_ll_insert(list, list->size, elem);
universe@499 722 iter->index = list->size;
universe@499 723 return result;
universe@499 724 }
universe@499 725 }
universe@499 726
universe@499 727 static int cx_pll_insert_iter(
universe@499 728 CxIterator *iter,
universe@499 729 void const *elem,
universe@499 730 int prepend
universe@499 731 ) {
universe@499 732 return cx_ll_insert_iter(iter, &elem, prepend);
universe@499 733 }
universe@499 734
universe@451 735 static cx_list_class cx_linked_list_class = {
universe@398 736 cx_ll_add,
universe@398 737 cx_ll_insert,
universe@499 738 cx_ll_insert_iter,
universe@398 739 cx_ll_remove,
universe@439 740 cx_ll_at,
universe@404 741 cx_ll_find,
universe@488 742 cx_ll_sort,
universe@490 743 cx_ll_compare,
universe@494 744 cx_ll_reverse,
universe@499 745 cx_ll_iterator
universe@398 746 };
universe@398 747
universe@466 748 static cx_list_class cx_pointer_linked_list_class = {
universe@466 749 cx_pll_add,
universe@466 750 cx_pll_insert,
universe@499 751 cx_pll_insert_iter,
universe@466 752 cx_ll_remove,
universe@466 753 cx_pll_at,
universe@466 754 cx_pll_find,
universe@488 755 cx_pll_sort,
universe@490 756 cx_pll_compare,
universe@494 757 cx_ll_reverse,
universe@494 758 cx_pll_iterator,
universe@466 759 };
universe@466 760
universe@503 761 static CxList *cx_ll_default_destructor(CxList *list) {
universe@503 762 cx_linked_list *ll = (cx_linked_list *) list;
universe@503 763
universe@503 764 cx_linked_list_node *node = ll->begin;
universe@503 765 while (node) {
universe@503 766 void *next = node->next;
universe@503 767 cxFree(list->allocator, node);
universe@503 768 node = next;
universe@503 769 }
universe@503 770
universe@503 771 cxFree(list->allocator, list);
universe@503 772 return NULL;
universe@503 773 }
universe@503 774
universe@500 775 CxList *cxLinkedListCreate(
universe@508 776 CxAllocator const *allocator,
universe@481 777 CxListComparator comparator,
universe@481 778 size_t item_size
universe@481 779 ) {
universe@503 780 cx_linked_list *list = cxCalloc(allocator, 1, sizeof(cx_linked_list));
universe@398 781 if (list == NULL)
universe@398 782 return NULL;
universe@398 783
universe@435 784 list->base.cl = &cx_linked_list_class;
universe@435 785 list->base.allocator = allocator;
universe@503 786 list->base.list_destructor = (cx_destructor_func) cx_ll_default_destructor;
universe@435 787 list->base.cmpfunc = comparator;
universe@435 788 list->base.itemsize = item_size;
universe@435 789 list->base.capacity = SIZE_MAX;
universe@406 790
universe@500 791 return (CxList *) list;
universe@406 792 }
universe@406 793
universe@500 794 CxList *cxPointerLinkedListCreate(
universe@508 795 CxAllocator const *allocator,
universe@481 796 CxListComparator comparator
universe@481 797 ) {
universe@503 798 cx_linked_list *list = cxCalloc(allocator, 1, sizeof(cx_linked_list));
universe@466 799 if (list == NULL)
universe@466 800 return NULL;
universe@466 801
universe@466 802 list->base.cl = &cx_pointer_linked_list_class;
universe@466 803 list->base.allocator = allocator;
universe@503 804 list->base.list_destructor = (cx_destructor_func) cx_ll_default_destructor;
universe@466 805 list->base.cmpfunc = comparator;
universe@468 806 list->base.itemsize = sizeof(void *);
universe@466 807 list->base.capacity = SIZE_MAX;
universe@466 808
universe@500 809 return (CxList *) list;
universe@466 810 }
universe@466 811
universe@500 812 CxList *cxLinkedListFromArray(
universe@508 813 CxAllocator const *allocator,
universe@488 814 CxListComparator comparator,
universe@488 815 size_t item_size,
universe@488 816 size_t num_items,
universe@489 817 void const *array
universe@488 818 ) {
universe@500 819 CxList *list = cxLinkedListCreate(allocator, comparator, item_size);
universe@488 820 if (list == NULL) return NULL;
universe@488 821 for (size_t i = 0; i < num_items; i++) {
universe@488 822 if (0 != cxListAdd(list, ((const unsigned char *) array) + i * item_size)) {
universe@503 823 return cx_ll_default_destructor(list);
universe@488 824 }
universe@488 825 }
universe@488 826 return list;
universe@488 827 }

mercurial