src/cx/list.h

Tue, 28 Dec 2021 17:38:02 +0100

author
Mike Becker <universe@uap-core.de>
date
Tue, 28 Dec 2021 17:38:02 +0100
changeset 489
af6be1e123aa
parent 488
9138acaa494b
child 490
e66551b47466
permissions
-rw-r--r--

add some const qualifiers

universe@390 1 /*
universe@390 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
universe@390 3 *
universe@390 4 * Copyright 2021 Mike Becker, Olaf Wintermann All rights reserved.
universe@390 5 *
universe@390 6 * Redistribution and use in source and binary forms, with or without
universe@390 7 * modification, are permitted provided that the following conditions are met:
universe@390 8 *
universe@390 9 * 1. Redistributions of source code must retain the above copyright
universe@390 10 * notice, this list of conditions and the following disclaimer.
universe@390 11 *
universe@390 12 * 2. Redistributions in binary form must reproduce the above copyright
universe@390 13 * notice, this list of conditions and the following disclaimer in the
universe@390 14 * documentation and/or other materials provided with the distribution.
universe@390 15 *
universe@390 16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@390 17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@390 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
universe@390 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
universe@390 20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
universe@390 21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
universe@390 22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
universe@390 23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
universe@390 24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
universe@390 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
universe@390 26 * POSSIBILITY OF SUCH DAMAGE.
universe@390 27 */
universe@453 28 /**
universe@453 29 * \file list.h
universe@453 30 * \brief Interface for list implementations.
universe@453 31 * \author Mike Becker
universe@453 32 * \author Olaf Wintermann
universe@453 33 * \version 3.0
universe@453 34 * \copyright 2-Clause BSD License
universe@453 35 */
universe@390 36
universe@390 37 #ifndef UCX_LIST_H
universe@390 38 #define UCX_LIST_H
universe@390 39
universe@484 40 #include "common.h"
universe@398 41 #include "allocator.h"
universe@398 42
universe@415 43 #ifdef __cplusplus
universe@415 44 extern "C" {
universe@415 45 #endif
universe@415 46
universe@464 47 /**
universe@464 48 * A comparator function comparing two list elements.
universe@464 49 */
universe@489 50 typedef int(*CxListComparator)(
universe@489 51 void const *left,
universe@489 52 void const *right
universe@489 53 );
universe@398 54
universe@464 55 /**
universe@464 56 * Internal type for the list structure - use CxList instead.
universe@464 57 */
universe@435 58 typedef struct cx_list_s cx_list_s;
universe@435 59
universe@464 60 /**
universe@464 61 * The class definition for arbitrary lists.
universe@464 62 */
universe@398 63 typedef struct {
universe@464 64 /**
universe@464 65 * Member function for adding an element.
universe@464 66 */
universe@489 67 int (*add)(
universe@489 68 cx_list_s *list,
universe@489 69 void const *elem
universe@489 70 );
universe@435 71
universe@464 72 /**
universe@464 73 * Member function for inserting an element.
universe@464 74 */
universe@489 75 int (*insert)(
universe@489 76 cx_list_s *list,
universe@489 77 size_t index,
universe@489 78 void const *elem
universe@489 79 );
universe@435 80
universe@464 81 /**
universe@464 82 * Member function for removing an element.
universe@464 83 */
universe@489 84 int (*remove)(
universe@489 85 cx_list_s *list,
universe@489 86 size_t index
universe@489 87 );
universe@435 88
universe@464 89 /**
universe@464 90 * Member function for element lookup.
universe@464 91 */
universe@489 92 void *(*at)(
universe@489 93 cx_list_s const *list,
universe@489 94 size_t index
universe@489 95 );
universe@439 96
universe@464 97 /**
universe@464 98 * Member function for finding an element.
universe@464 99 */
universe@488 100 size_t (*find)(
universe@489 101 cx_list_s const *list,
universe@489 102 void const *elem
universe@488 103 );
universe@435 104
universe@464 105 /**
universe@469 106 * Member function for sorting the list in place.
universe@469 107 */
universe@469 108 void (*sort)(cx_list_s *list);
universe@488 109
universe@488 110 /**
universe@488 111 * Member function for comparing this list to another list of the same type.
universe@488 112 */
universe@488 113 int (*compare)(
universe@489 114 cx_list_s const *list,
universe@489 115 cx_list_s const *other
universe@488 116 );
universe@435 117 } cx_list_class;
universe@435 118
universe@464 119 /**
universe@464 120 * Structure for holding the base data of a list.
universe@464 121 */
universe@435 122 struct cx_list_s {
universe@464 123 /**
universe@464 124 * The list class definition.
universe@464 125 */
universe@435 126 cx_list_class *cl;
universe@464 127 /**
universe@464 128 * The allocator to use.
universe@464 129 */
universe@398 130 CxAllocator allocator;
universe@464 131 /**
universe@464 132 * The comparator function for the elements.
universe@464 133 */
universe@398 134 CxListComparator cmpfunc;
universe@464 135 /**
universe@464 136 * The size of each element (payload only).
universe@464 137 */
universe@401 138 size_t itemsize;
universe@464 139 /**
universe@464 140 * The size of the list (number of currently stored elements).
universe@464 141 */
universe@401 142 size_t size;
universe@464 143 /**
universe@464 144 * The capacity of the list (maximum number of elements).
universe@464 145 */
universe@401 146 size_t capacity;
universe@435 147 };
universe@398 148
universe@464 149 /**
universe@464 150 * Common type for all list implementations.
universe@464 151 */
universe@412 152 typedef cx_list_s *CxList;
universe@398 153
universe@464 154 /**
universe@464 155 * Adds an item to the end of the list.
universe@464 156 *
universe@464 157 * \remark It is implementation defined whether
universe@464 158 * the contents of the element are copied or the
universe@464 159 * pointer is added to the list. In the latter case
universe@464 160 * the \c itemsize of the list SHALL be \c sizeof(void*).
universe@464 161 *
universe@464 162 * @param list the list
universe@464 163 * @param elem a pointer to the element to add
universe@464 164 * @return zero on success, non-zero on memory allocation failure
universe@464 165 */
universe@489 166 static inline int cxListAdd(
universe@489 167 CxList list,
universe@489 168 void const *elem
universe@489 169 ) {
universe@469 170 return list->cl->add(list, elem);
universe@469 171 }
universe@398 172
universe@464 173 /**
universe@464 174 * Inserts an item at the specified index.
universe@464 175 *
universe@464 176 * If \p index equals the list \c size, this is effectively cxListAdd().
universe@464 177 *
universe@464 178 * \remark It is implementation defined whether
universe@464 179 * the contents of the element are copied or the
universe@464 180 * pointer is added to the list. In the latter case
universe@464 181 * the \c itemsize of the list SHALL be \c sizeof(void*).
universe@464 182 *
universe@464 183 * @param list the list
universe@464 184 * @param index the index the element shall have
universe@464 185 * @param elem a pointer to the element to add
universe@464 186 * @return zero on success, non-zero on memory allocation failure
universe@464 187 * or when the index is out of bounds
universe@464 188 */
universe@489 189 static inline int cxListInsert(
universe@489 190 CxList list,
universe@489 191 size_t index,
universe@489 192 void const *elem
universe@489 193 ) {
universe@469 194 return list->cl->insert(list, index, elem);
universe@469 195 }
universe@398 196
universe@464 197 /**
universe@464 198 * Removes the element at the specified index.
universe@464 199 * @param list the list
universe@464 200 * @param index the index of the element
universe@464 201 * @return zero on success, non-zero if the index is out of bounds
universe@464 202 */
universe@489 203 static inline int cxListRemove(
universe@489 204 CxList list,
universe@489 205 size_t index
universe@489 206 ) {
universe@469 207 return list->cl->remove(list, index);
universe@469 208 }
universe@398 209
universe@464 210 /**
universe@464 211 * Returns a pointer to the element at the specified index.
universe@464 212 *
universe@464 213 * @param list the list
universe@464 214 * @param index the index of the element
universe@464 215 * @return a pointer to the element or \c NULL if the index is out of bounds
universe@464 216 */
universe@489 217 static inline void *cxListAt(
universe@489 218 CxList list,
universe@489 219 size_t index
universe@489 220 ) {
universe@469 221 return list->cl->at(list, index);
universe@469 222 }
universe@439 223
universe@464 224 /**
universe@464 225 * Returns the index of the first element that equals \p elem.
universe@464 226 *
universe@464 227 * Determining equality is performed by the list's comparator function.
universe@464 228 *
universe@464 229 * @param list the list
universe@464 230 * @param elem the element to find
universe@464 231 * @return the index of the element or \c (size+1) if the element is not found
universe@464 232 */
universe@489 233 static inline size_t cxListFind(
universe@489 234 CxList list,
universe@489 235 void const *elem
universe@489 236 ) {
universe@469 237 return list->cl->find(list, elem);
universe@469 238 }
universe@398 239
universe@464 240 /**
universe@469 241 * Sorts the list in place.
universe@469 242 *
universe@469 243 * \remark The underlying sort algorithm is implementation defined.
universe@469 244 *
universe@469 245 * @param list the list
universe@469 246 */
universe@469 247 static inline void cxListSort(CxList list) {
universe@469 248 list->cl->sort(list);
universe@469 249 }
universe@404 250
universe@488 251 /**
universe@488 252 * Compares a list to another list of the same type.
universe@488 253 *
universe@488 254 * First, the list sizes are compared. If they match, the lists are compared element-wise.
universe@488 255 *
universe@488 256 * @param list the list
universe@488 257 * @param other the list to compare to
universe@488 258 * @return zero, if both lists are equal element wise, negative if the first list is smaller, zero if the first list is larger
universe@488 259 */
universe@488 260 static inline int cxListCompare(
universe@488 261 CxList list,
universe@488 262 CxList other
universe@488 263 ) {
universe@488 264 return list->cl->compare(list, other);
universe@488 265 }
universe@488 266
universe@415 267 #ifdef __cplusplus
universe@415 268 } /* extern "C" */
universe@415 269 #endif
universe@415 270
universe@393 271 #endif /* UCX_LIST_H */

mercurial