src/cx/list.h

Sat, 22 Jan 2022 19:04:32 +0100

author
Mike Becker <universe@uap-core.de>
date
Sat, 22 Jan 2022 19:04:32 +0100
changeset 496
1a07e24801a9
parent 495
2856c74e18ba
child 499
3dc9075df822
permissions
-rw-r--r--

add cx_foreach macro

/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright 2021 Mike Becker, Olaf Wintermann All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 *   1. Redistributions of source code must retain the above copyright
 *      notice, this list of conditions and the following disclaimer.
 *
 *   2. Redistributions in binary form must reproduce the above copyright
 *      notice, this list of conditions and the following disclaimer in the
 *      documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */
/**
 * \file list.h
 * \brief Interface for list implementations.
 * \author Mike Becker
 * \author Olaf Wintermann
 * \version 3.0
 * \copyright 2-Clause BSD License
 */

#ifndef UCX_LIST_H
#define UCX_LIST_H

#include "common.h"
#include "allocator.h"
#include "iterator.h"

#ifdef __cplusplus
extern "C" {
#endif

/**
 * A comparator function comparing two list elements.
 */
typedef int(*CxListComparator)(
        void const *left,
        void const *right
);

/**
 * Internal type for the list structure - use CxList instead.
 */
typedef struct cx_list_s cx_list_s;

/**
 * The class definition for arbitrary lists.
 */
typedef struct {
    /**
     * Member function for adding an element.
     */
    int (*add)(
            cx_list_s *list,
            void const *elem
    );

    /**
     * Member function for inserting an element.
     */
    int (*insert)(
            cx_list_s *list,
            size_t index,
            void const *elem
    );

    /**
     * Member function for removing an element.
     */
    int (*remove)(
            cx_list_s *list,
            size_t index
    );

    /**
     * Member function for element lookup.
     */
    void *(*at)(
            cx_list_s const *list,
            size_t index
    );

    /**
     * Member function for finding an element.
     */
    size_t (*find)(
            cx_list_s const *list,
            void const *elem
    );

    /**
     * Member function for sorting the list in place.
     */
    void (*sort)(cx_list_s *list);

    /**
     * Member function for comparing this list to another list of the same type.
     */
    int (*compare)(
            cx_list_s const *list,
            cx_list_s const *other
    );

    /**
     * Member function for reversing the order of the items.
     */
    void (*reverse)(cx_list_s *list);

    /**
     * Returns an iterator pointing to the specified index.
     */
    CxIterator (*iterator)(
            cx_list_s *list,
            size_t index
    );
} cx_list_class;

/**
 * Structure for holding the base data of a list.
 */
struct cx_list_s {
    /**
     * The list class definition.
     */
    cx_list_class *cl;
    /**
     * The allocator to use.
     */
    CxAllocator allocator;
    /**
     * The comparator function for the elements.
     */
    CxListComparator cmpfunc;
    /**
     * The size of each element (payload only).
     */
    size_t itemsize;
    /**
     * The size of the list (number of currently stored elements).
     */
    size_t size;
    /**
     * The capacity of the list (maximum number of elements).
     */
    size_t capacity;
};

/**
 * Common type for all list implementations.
 */
typedef cx_list_s *CxList;

/**
 * Adds an item to the end of the list.
 *
 * \remark It is implementation defined whether
 * the contents of the element are copied or the
 * pointer is added to the list. In the latter case
 * the \c itemsize of the list SHALL be \c sizeof(void*).
 *
 * @param list the list
 * @param elem a pointer to the element to add
 * @return zero on success, non-zero on memory allocation failure
 */
static inline int cxListAdd(
        CxList list,
        void const *elem
) {
    return list->cl->add(list, elem);
}

/**
 * Inserts an item at the specified index.
 *
 * If \p index equals the list \c size, this is effectively cxListAdd().
 *
 * \remark It is implementation defined whether
 * the contents of the element are copied or the
 * pointer is added to the list. In the latter case
 * the \c itemsize of the list SHALL be \c sizeof(void*).
 *
 * @param list the list
 * @param index the index the element shall have
 * @param elem a pointer to the element to add
 * @return zero on success, non-zero on memory allocation failure
 * or when the index is out of bounds
 */
static inline int cxListInsert(
        CxList list,
        size_t index,
        void const *elem
) {
    return list->cl->insert(list, index, elem);
}

/**
 * Removes the element at the specified index.
 * @param list the list
 * @param index the index of the element
 * @return zero on success, non-zero if the index is out of bounds
 */
static inline int cxListRemove(
        CxList list,
        size_t index
) {
    return list->cl->remove(list, index);
}

/**
 * Returns a pointer to the element at the specified index.
 *
 * @param list the list
 * @param index the index of the element
 * @return a pointer to the element or \c NULL if the index is out of bounds
 */
static inline void *cxListAt(
        CxList list,
        size_t index
) {
    return list->cl->at(list, index);
}

/**
 * Returns an iterator pointing to the item at the specified index.
 *
 * The returned iterator is position-aware.
 *
 * If the index is out of range, a past-the-end iterator will be returned.
 *
 * @param list the list
 * @param index the index where the iterator shall point at
 * @return a new iterator
 */
static inline CxIterator cxListIterator(
        CxList list,
        size_t index
) {
    return list->cl->iterator(list, index);
}

/**
 * Returns an iterator pointing to the first item of the list.
 *
 * The returned iterator is position-aware.
 *
 * If the list is empty, a past-the-end iterator will be returned.
 *
 * @param list the list
 * @return a new iterator
 */
static inline CxIterator cxListBegin(CxList list) {
    return list->cl->iterator(list, 0);
}

/**
 * Returns the index of the first element that equals \p elem.
 *
 * Determining equality is performed by the list's comparator function.
 *
 * @param list the list
 * @param elem the element to find
 * @return the index of the element or \c (size+1) if the element is not found
 */
static inline size_t cxListFind(
        CxList list,
        void const *elem
) {
    return list->cl->find(list, elem);
}

/**
 * Sorts the list in place.
 *
 * \remark The underlying sort algorithm is implementation defined.
 *
 * @param list the list
 */
static inline void cxListSort(CxList list) {
    list->cl->sort(list);
}

/**
 * Reverses the order of the items.
 *
 * @param list the list
 */
static inline void cxListReverse(CxList list) {
    list->cl->reverse(list);
}

/**
 * Compares a list to another list of the same type.
 *
 * First, the list sizes are compared. If they match, the lists are compared element-wise.
 *
 * @param list the list
 * @param other the list to compare to
 * @return zero, if both lists are equal element wise, negative if the first list is smaller, zero if the first list is larger
 */
static inline int cxListCompare(
        CxList list,
        CxList other
) {
    return list->cl->compare(list, other);
}

#ifdef __cplusplus
} /* extern "C" */
#endif

#endif /* UCX_LIST_H */

mercurial