src/list.c

Thu, 26 Jan 2023 20:59:36 +0100

author
Mike Becker <universe@uap-core.de>
date
Thu, 26 Jan 2023 20:59:36 +0100
changeset 641
d402fead3386
parent 640
55cc3b373c5e
child 647
2e6e9d9f2159
permissions
-rw-r--r--

add new pointer list wrapper - resolves #234

since we need a thread local variable, this drops C99 support

     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 2021 Mike Becker, Olaf Wintermann All rights reserved.
     5  *
     6  * Redistribution and use in source and binary forms, with or without
     7  * modification, are permitted provided that the following conditions are met:
     8  *
     9  *   1. Redistributions of source code must retain the above copyright
    10  *      notice, this list of conditions and the following disclaimer.
    11  *
    12  *   2. Redistributions in binary form must reproduce the above copyright
    13  *      notice, this list of conditions and the following disclaimer in the
    14  *      documentation and/or other materials provided with the distribution.
    15  *
    16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    17  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    19  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
    20  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    26  * POSSIBILITY OF SUCH DAMAGE.
    27  */
    29 #include "cx/list.h"
    31 #include <string.h>
    33 // <editor-fold desc="Store Pointers Functionality">
    35 static _Thread_local CxListComparator cx_pl_cmpfunc_impl;
    37 static int cx_pl_cmpfunc(
    38         void const *l,
    39         void const *r
    40 ) {
    41     void *const *lptr = l;
    42     void *const *rptr = r;
    43     void const *left = lptr == NULL ? NULL : *lptr;
    44     void const *right = rptr == NULL ? NULL : *rptr;
    45     return cx_pl_cmpfunc_impl(left, right);
    46 }
    48 static void cx_pl_hack_cmpfunc(struct cx_list_s const *list) {
    49     // cast away const - this is the hacky thing
    50     struct cx_list_s *l = (struct cx_list_s *) list;
    51     cx_pl_cmpfunc_impl = l->cmpfunc;
    52     l->cmpfunc = cx_pl_cmpfunc;
    53 }
    55 static void cx_pl_unhack_cmpfunc(struct cx_list_s const *list) {
    56     // cast away const - this is the hacky thing
    57     struct cx_list_s *l = (struct cx_list_s *) list;
    58     l->cmpfunc = cx_pl_cmpfunc_impl;
    59 }
    61 static void cx_pl_destructor(struct cx_list_s *list) {
    62     list->climpl->destructor(list);
    63 }
    65 static int cx_pl_insert_element(
    66         struct cx_list_s *list,
    67         size_t index,
    68         void const *element
    69 ) {
    70     return list->climpl->insert_element(list, index, &element);
    71 }
    73 static size_t cx_pl_insert_array(
    74         struct cx_list_s *list,
    75         size_t index,
    76         void const *array,
    77         size_t n
    78 ) {
    79     return list->climpl->insert_array(list, index, array, n);
    80 }
    82 static int cx_pl_insert_iter(
    83         struct cx_mut_iterator_s *iter,
    84         void const *elem,
    85         int prepend
    86 ) {
    87     struct cx_list_s *list = iter->src_handle;
    88     return list->climpl->insert_iter(iter, &elem, prepend);
    89 }
    91 static int cx_pl_remove(
    92         struct cx_list_s *list,
    93         size_t index
    94 ) {
    95     return list->climpl->remove(list, index);
    96 }
    98 static void *cx_pl_at(
    99         struct cx_list_s const *list,
   100         size_t index
   101 ) {
   102     void **ptr = list->climpl->at(list, index);
   103     return ptr == NULL ? NULL : *ptr;
   104 }
   106 static size_t cx_pl_find(
   107         struct cx_list_s const *list,
   108         void const *elem
   109 ) {
   110     cx_pl_hack_cmpfunc(list);
   111     size_t ret = list->climpl->find(list, &elem);
   112     cx_pl_unhack_cmpfunc(list);
   113     return ret;
   114 }
   116 static void cx_pl_sort(struct cx_list_s *list) {
   117     cx_pl_hack_cmpfunc(list);
   118     list->climpl->sort(list);
   119     cx_pl_unhack_cmpfunc(list);
   120 }
   122 static int cx_pl_compare(
   123         struct cx_list_s const *list,
   124         struct cx_list_s const *other
   125 ) {
   126     cx_pl_hack_cmpfunc(list);
   127     int ret = list->climpl->compare(list, other);
   128     cx_pl_unhack_cmpfunc(list);
   129     return ret;
   130 }
   132 static void cx_pl_reverse(struct cx_list_s *list) {
   133     list->climpl->reverse(list);
   134 }
   136 static void *cx_pl_iter_current(void const *it) {
   137     struct cx_iterator_s const *iter = it;
   138     void **ptr = iter->base.current_impl(it);
   139     return ptr == NULL ? NULL : *ptr;
   140 }
   142 static struct cx_iterator_s cx_pl_iterator(
   143         struct cx_list_s const *list,
   144         size_t index
   145 ) {
   146     struct cx_iterator_s iter = list->climpl->iterator(list, index);
   147     iter.base.current_impl = iter.base.current;
   148     iter.base.current = cx_pl_iter_current;
   149     return iter;
   150 }
   152 static cx_list_class cx_pointer_list_class = {
   153         cx_pl_destructor,
   154         cx_pl_insert_element,
   155         cx_pl_insert_array,
   156         cx_pl_insert_iter,
   157         cx_pl_remove,
   158         cx_pl_at,
   159         cx_pl_find,
   160         cx_pl_sort,
   161         cx_pl_compare,
   162         cx_pl_reverse,
   163         cx_pl_iterator,
   164 };
   166 void cxListStoreObjects(CxList *list) {
   167     if (list->climpl != NULL) {
   168         list->cl = list->climpl;
   169         list->climpl = NULL;
   170     }
   171 }
   173 void cxListStorePointers(CxList *list) {
   174     list->itemsize = sizeof(void *);
   175     list->climpl = list->cl;
   176     list->cl = &cx_pointer_list_class;
   177 }
   179 bool cxListIsStoringPointers(CxList *list) {
   180     return list->climpl != NULL;
   181 }
   183 // </editor-fold>
   185 void cxListDestroy(CxList *list) {
   186     switch (list->content_destructor_type) {
   187         case CX_DESTRUCTOR_SIMPLE: {
   188             CxIterator iter = cxListBegin(list);
   189             cx_foreach(void*, elem, iter) {
   190                 list->simple_destructor(elem);
   191             }
   192             break;
   193         }
   194         case CX_DESTRUCTOR_ADVANCED: {
   195             CxIterator iter = cxListBegin(list);
   196             cx_foreach(void*, elem, iter) {
   197                 list->advanced_destructor.func(list->advanced_destructor.data, elem);
   198             }
   199             break;
   200         }
   201         case CX_DESTRUCTOR_NONE:
   202             break; // nothing
   203     }
   205     list->cl->destructor(list);
   206     cxFree(list->allocator, list);
   207 }
   209 int cxListCompare(
   210         CxList const *list,
   211         CxList const *other
   212 ) {
   213     if (list->cl->compare == other->cl->compare) {
   214         // same compare function, lists are compatible
   215         return list->cl->compare(list, other);
   216     } else {
   217         // different compare functions, use iterator
   218         if (list->size == other->size) {
   219             CxIterator left = cxListBegin(list);
   220             CxIterator right = cxListBegin(other);
   221             for (size_t i = 0; i < list->size; i++) {
   222                 void *leftValue = cxIteratorCurrent(left);
   223                 void *rightValue = cxIteratorCurrent(right);
   224                 int d = list->cmpfunc(leftValue, rightValue);
   225                 if (d != 0) {
   226                     return d;
   227                 }
   228                 cxIteratorNext(left);
   229                 cxIteratorNext(right);
   230             }
   231             return 0;
   232         } else {
   233             return list->size < other->size ? -1 : 1;
   234         }
   235     }
   236 }
   238 CxMutIterator cxListMutIterator(
   239         CxList *list,
   240         size_t index
   241 ) {
   242     CxIterator it = list->cl->iterator(list, index);
   243     it.base.mutating = true;
   245     // we know the iterators share the same memory layout
   246     CxMutIterator iter;
   247     memcpy(&iter, &it, sizeof(CxMutIterator));
   248     return iter;
   249 }

mercurial