src/cx/mempool.h

Thu, 07 Nov 2024 22:46:58 +0100

author
Mike Becker <universe@uap-core.de>
date
Thu, 07 Nov 2024 22:46:58 +0100
changeset 985
68754c7de906
parent 890
54565fd74e74
permissions
-rw-r--r--

major refactoring of attributes

resolves #460
resolves #471
resolves #472

/*
 * 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 mempool.h
 * \brief Interface for memory pool implementations.
 * \author Mike Becker
 * \author Olaf Wintermann
 * \copyright 2-Clause BSD License
 */

#ifndef UCX_MEMPOOL_H
#define UCX_MEMPOOL_H

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

#ifdef __cplusplus
extern "C" {
#endif

/** Internal structure for pooled memory. */
struct cx_mempool_memory_s;

/**
 * The basic structure of a memory pool.
 * Should be the first member of an actual memory pool implementation.
 */
struct cx_mempool_s {
    /** The provided allocator. */
    const CxAllocator *allocator;

    /**
     * A destructor that shall be automatically registered for newly allocated memory.
     * This destructor MUST NOT free the memory.
     */
    cx_destructor_func auto_destr;

    /** Array of pooled memory. */
    struct cx_mempool_memory_s **data;

    /** Number of pooled memory items. */
    size_t size;

    /** Memory pool capacity. */
    size_t capacity;
};

/**
 * Common type for all memory pool implementations.
 */
typedef struct cx_mempool_s CxMempool;

/**
 * Destroys a memory pool and frees the managed memory.
 *
 * @param pool the memory pool to destroy
 */
void cxMempoolDestroy(CxMempool *pool);

/**
 * Creates an array-based memory pool with a shared destructor function.
 *
 * This destructor MUST NOT free the memory.
 *
 * @param capacity the initial capacity of the pool
 * @param destr optional destructor function to use for allocated memory
 * @return the created memory pool or \c NULL if allocation failed
 */
cx_attr_nodiscard
cx_attr_malloc
cx_attr_dealloc(cxMempoolDestroy, 1)
CxMempool *cxMempoolCreate(size_t capacity, cx_destructor_func destr);

/**
 * Creates a basic array-based memory pool.
 *
 * @param capacity the initial capacity of the pool
 * @return the created memory pool or \c NULL if allocation failed
 */
#define cxBasicMempoolCreate(capacity) cxMempoolCreate(capacity, NULL)

/**
 * Sets the destructor function for a specific allocated memory object.
 *
 * If the memory is not managed by a UCX memory pool, the behavior is undefined.
 * The destructor MUST NOT free the memory.
 *
 * @param memory the object allocated in the pool
 * @param fnc the destructor function
 */
cx_attr_nonnull
void cxMempoolSetDestructor(
        void *memory,
        cx_destructor_func fnc
);

/**
 * Removes the destructor function for a specific allocated memory object.
 *
 * If the memory is not managed by a UCX memory pool, the behavior is undefined.
 * The destructor MUST NOT free the memory.
 *
 * @param memory the object allocated in the pool
 */
cx_attr_nonnull
void cxMempoolRemoveDestructor(void *memory);

/**
 * Registers foreign memory with this pool.
 *
 * The destructor, in contrast to memory allocated by the pool, MUST free the memory.
 *
 * A small portion of memory will be allocated to register the information in the pool.
 * If that allocation fails, this function will return non-zero.
 *
 * @param pool the pool
 * @param memory the object to register (MUST NOT be already allocated in the pool)
 * @param destr the destructor function
 * @return zero on success, non-zero on failure
 */
cx_attr_nonnull
int cxMempoolRegister(
        CxMempool *pool,
        void *memory,
        cx_destructor_func destr
);

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

#endif // UCX_MEMPOOL_H

mercurial