ucx/mempool.c

Tue, 19 Sep 2017 14:35:08 +0200

author
Mike Becker <universe@uap-core.de>
date
Tue, 19 Sep 2017 14:35:08 +0200
changeset 248
dff45a2234ce
parent 242
a3597d704421
child 250
b7d1317b138e
permissions
-rw-r--r--

explicit cast from (void*) for (ucx_memchunk*) to silence a warning

olaf@13 1 /*
universe@103 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
olaf@13 3 *
universe@225 4 * Copyright 2016 Olaf Wintermann. All rights reserved.
universe@103 5 *
universe@103 6 * Redistribution and use in source and binary forms, with or without
universe@103 7 * modification, are permitted provided that the following conditions are met:
universe@103 8 *
universe@103 9 * 1. Redistributions of source code must retain the above copyright
universe@103 10 * notice, this list of conditions and the following disclaimer.
universe@103 11 *
universe@103 12 * 2. Redistributions in binary form must reproduce the above copyright
universe@103 13 * notice, this list of conditions and the following disclaimer in the
universe@103 14 * documentation and/or other materials provided with the distribution.
universe@103 15 *
universe@103 16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@103 17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@103 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
universe@103 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
universe@103 20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
universe@103 21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
universe@103 22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
universe@103 23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
universe@103 24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
universe@103 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
universe@103 26 * POSSIBILITY OF SUCH DAMAGE.
olaf@13 27 */
olaf@13 28
olaf@13 29 #include <stdlib.h>
olaf@13 30 #include <string.h>
olaf@13 31 #include <stdio.h>
universe@95 32 #ifdef __cplusplus
universe@95 33 #define __STDC_FORMAT_MACROS
universe@95 34 #endif
universe@75 35 #include <inttypes.h>
olaf@13 36
olaf@17 37 #include "mempool.h"
olaf@13 38
universe@138 39 /** Capsule for destructible memory chunks. */
olaf@13 40 typedef struct {
universe@138 41 /** The destructor for the memory chunk. */
olaf@13 42 ucx_destructor destructor;
universe@138 43 /**
universe@138 44 * First byte of the memory chunk.
universe@138 45 * Note, that the address <code>&amp;c</code> is also the address
universe@138 46 * of the whole memory chunk.
universe@138 47 */
olaf@13 48 char c;
olaf@13 49 } ucx_memchunk;
olaf@13 50
universe@138 51 /** Capsule for data and its destructor. */
olaf@13 52 typedef struct {
universe@138 53 /** The destructor for the data. */
olaf@13 54 ucx_destructor destructor;
universe@138 55 /** A pointer to the data. */
olaf@13 56 void *ptr;
olaf@13 57 } ucx_regdestr;
olaf@13 58
olaf@131 59 UCX_EXTERN void ucx_mempool_shared_destr(void* ptr) {
olaf@13 60 ucx_regdestr *rd = (ucx_regdestr*)ptr;
olaf@13 61 rd->destructor(rd->ptr);
olaf@13 62 }
olaf@13 63
olaf@13 64 UcxMempool *ucx_mempool_new(size_t n) {
olaf@14 65 UcxMempool *pool = (UcxMempool*)malloc(sizeof(UcxMempool));
universe@135 66 if (!pool) {
universe@135 67 return NULL;
universe@135 68 }
universe@15 69
universe@69 70 pool->data = (void**) malloc(n * sizeof(void*));
universe@15 71 if (pool->data == NULL) {
universe@15 72 free(pool);
universe@15 73 return NULL;
universe@15 74 }
universe@15 75
olaf@13 76 pool->ndata = 0;
olaf@13 77 pool->size = n;
olaf@158 78
olaf@158 79 UcxAllocator *allocator = (UcxAllocator*)malloc(sizeof(UcxAllocator));
olaf@158 80 if(!allocator) {
olaf@158 81 free(pool->data);
olaf@158 82 free(pool);
olaf@158 83 return NULL;
olaf@158 84 }
olaf@158 85 allocator->malloc = (ucx_allocator_malloc)ucx_mempool_malloc;
olaf@158 86 allocator->calloc = (ucx_allocator_calloc)ucx_mempool_calloc;
olaf@158 87 allocator->realloc = (ucx_allocator_realloc)ucx_mempool_realloc;
olaf@158 88 allocator->free = (ucx_allocator_free)ucx_mempool_free;
olaf@158 89 allocator->pool = pool;
olaf@158 90 pool->allocator = allocator;
olaf@158 91
olaf@13 92 return pool;
olaf@13 93 }
olaf@13 94
universe@15 95 int ucx_mempool_chcap(UcxMempool *pool, size_t newcap) {
universe@241 96 if (newcap < pool->ndata) {
universe@241 97 return 1;
universe@241 98 }
universe@241 99
universe@69 100 void **data = (void**) realloc(pool->data, newcap*sizeof(void*));
universe@135 101 if (data) {
universe@15 102 pool->data = data;
universe@15 103 pool->size = newcap;
universe@241 104 return 0;
universe@135 105 } else {
universe@241 106 return 1;
universe@15 107 }
olaf@13 108 }
olaf@13 109
olaf@13 110 void *ucx_mempool_malloc(UcxMempool *pool, size_t n) {
universe@141 111 if (pool->ndata >= pool->size) {
universe@242 112 size_t newcap = pool->size*2;
universe@242 113 if (newcap < pool->size || ucx_mempool_chcap(pool, newcap)) {
universe@141 114 return NULL;
universe@141 115 }
universe@141 116 }
universe@141 117
universe@248 118 void *p = malloc(sizeof(ucx_destructor) + n);
universe@248 119 ucx_memchunk *mem = (ucx_memchunk*)p;
universe@135 120 if (!mem) {
universe@135 121 return NULL;
universe@135 122 }
olaf@13 123
olaf@13 124 mem->destructor = NULL;
olaf@13 125 pool->data[pool->ndata] = mem;
olaf@13 126 pool->ndata++;
olaf@13 127
universe@135 128 return &(mem->c);
olaf@13 129 }
olaf@13 130
olaf@13 131 void *ucx_mempool_calloc(UcxMempool *pool, size_t nelem, size_t elsize) {
olaf@13 132 void *ptr = ucx_mempool_malloc(pool, nelem*elsize);
universe@135 133 if (!ptr) {
olaf@13 134 return NULL;
olaf@13 135 }
olaf@13 136 memset(ptr, 0, nelem * elsize);
olaf@13 137 return ptr;
olaf@13 138 }
olaf@13 139
olaf@13 140 void *ucx_mempool_realloc(UcxMempool *pool, void *ptr, size_t n) {
universe@28 141 char *mem = ((char*)ptr) - sizeof(ucx_destructor);
universe@15 142 char *newm = (char*) realloc(mem, n + sizeof(ucx_destructor));
universe@135 143 if (!newm) {
universe@135 144 return NULL;
universe@135 145 }
universe@15 146 if (mem != newm) {
universe@95 147 for(size_t i=0 ; i < pool->ndata ; i++) {
olaf@14 148 if(pool->data[i] == mem) {
olaf@14 149 pool->data[i] = newm;
universe@28 150 return newm + sizeof(ucx_destructor);
olaf@14 151 }
olaf@13 152 }
universe@116 153 fprintf(stderr, "FATAL: 0x%08" PRIxPTR" not in mpool 0x%08" PRIxPTR"\n",
universe@75 154 (intptr_t)ptr, (intptr_t)pool);
universe@241 155 abort();
universe@16 156 } else {
universe@28 157 return newm + sizeof(ucx_destructor);
olaf@13 158 }
olaf@13 159 }
olaf@13 160
olaf@113 161 void ucx_mempool_free(UcxMempool *pool, void *ptr) {
olaf@113 162 ucx_memchunk *chunk = (ucx_memchunk*)((char*)ptr-sizeof(ucx_destructor));
olaf@113 163 for(size_t i=0 ; i<pool->ndata ; i++) {
olaf@113 164 if(chunk == pool->data[i]) {
olaf@113 165 if(chunk->destructor != NULL) {
universe@141 166 chunk->destructor(&(chunk->c));
olaf@113 167 }
olaf@113 168 free(chunk);
olaf@113 169 size_t last_index = pool->ndata - 1;
olaf@113 170 if(i != last_index) {
olaf@113 171 pool->data[i] = pool->data[last_index];
universe@141 172 pool->data[last_index] = NULL;
olaf@113 173 }
olaf@113 174 pool->ndata--;
olaf@113 175 return;
olaf@113 176 }
olaf@113 177 }
universe@116 178 fprintf(stderr, "FATAL: 0x%08" PRIxPTR" not in mpool 0x%08" PRIxPTR"\n",
olaf@113 179 (intptr_t)ptr, (intptr_t)pool);
universe@240 180 abort();
olaf@113 181 }
olaf@113 182
olaf@113 183 void ucx_mempool_destroy(UcxMempool *pool) {
olaf@13 184 ucx_memchunk *chunk;
universe@95 185 for(size_t i=0 ; i<pool->ndata ; i++) {
olaf@13 186 chunk = (ucx_memchunk*) pool->data[i];
olaf@113 187 if(chunk) {
universe@135 188 if(chunk->destructor) {
universe@135 189 chunk->destructor(&(chunk->c));
olaf@113 190 }
olaf@113 191 free(chunk);
olaf@13 192 }
olaf@13 193 }
olaf@13 194 free(pool->data);
olaf@158 195 free(pool->allocator);
olaf@13 196 free(pool);
olaf@13 197 }
olaf@13 198
olaf@13 199 void ucx_mempool_set_destr(void *ptr, ucx_destructor func) {
olaf@13 200 *(ucx_destructor*)((char*)ptr-sizeof(ucx_destructor)) = func;
olaf@13 201 }
olaf@13 202
olaf@13 203 void ucx_mempool_reg_destr(UcxMempool *pool, void *ptr, ucx_destructor destr) {
olaf@13 204 ucx_regdestr *rd = (ucx_regdestr*)ucx_mempool_malloc(
olaf@13 205 pool,
olaf@13 206 sizeof(ucx_regdestr));
olaf@13 207 rd->destructor = destr;
olaf@14 208 rd->ptr = ptr;
olaf@13 209 ucx_mempool_set_destr(rd, ucx_mempool_shared_destr);
olaf@13 210 }
olaf@113 211

mercurial