ucx/mempool.c

Wed, 14 Aug 2013 13:13:36 +0200

author
Mike Becker <universe@uap-core.de>
date
Wed, 14 Aug 2013 13:13:36 +0200
changeset 141
c466e2a6cbd0
parent 138
7800811078b8
child 158
81d580042da1
permissions
-rw-r--r--

added mempool clamp + some minor fixes

olaf@13 1 /*
universe@103 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
olaf@13 3 *
universe@103 4 * Copyright 2013 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@13 78 return pool;
olaf@13 79 }
olaf@13 80
universe@15 81 int ucx_mempool_chcap(UcxMempool *pool, size_t newcap) {
universe@69 82 void **data = (void**) realloc(pool->data, newcap*sizeof(void*));
universe@135 83 if (data) {
universe@15 84 pool->data = data;
universe@15 85 pool->size = newcap;
universe@15 86 return EXIT_SUCCESS;
universe@135 87 } else {
universe@135 88 return EXIT_FAILURE;
universe@15 89 }
olaf@13 90 }
olaf@13 91
olaf@13 92 void *ucx_mempool_malloc(UcxMempool *pool, size_t n) {
universe@141 93 if (pool->ndata >= pool->size) {
universe@141 94 // The hard coded 16 is documented for this function and ucx_mempool_new
universe@141 95 if (ucx_mempool_chcap(pool, pool->size + 16) == EXIT_FAILURE) {
universe@141 96 return NULL;
universe@141 97 }
universe@141 98 }
universe@141 99
olaf@13 100 ucx_memchunk *mem = (ucx_memchunk*)malloc(sizeof(ucx_destructor) + n);
universe@135 101 if (!mem) {
universe@135 102 return NULL;
universe@135 103 }
olaf@13 104
olaf@13 105 mem->destructor = NULL;
olaf@13 106 pool->data[pool->ndata] = mem;
olaf@13 107 pool->ndata++;
olaf@13 108
universe@135 109 return &(mem->c);
olaf@13 110 }
olaf@13 111
olaf@13 112 void *ucx_mempool_calloc(UcxMempool *pool, size_t nelem, size_t elsize) {
olaf@13 113 void *ptr = ucx_mempool_malloc(pool, nelem*elsize);
universe@135 114 if (!ptr) {
olaf@13 115 return NULL;
olaf@13 116 }
olaf@13 117 memset(ptr, 0, nelem * elsize);
olaf@13 118 return ptr;
olaf@13 119 }
olaf@13 120
olaf@13 121 void *ucx_mempool_realloc(UcxMempool *pool, void *ptr, size_t n) {
universe@28 122 char *mem = ((char*)ptr) - sizeof(ucx_destructor);
universe@15 123 char *newm = (char*) realloc(mem, n + sizeof(ucx_destructor));
universe@135 124 if (!newm) {
universe@135 125 return NULL;
universe@135 126 }
universe@15 127 if (mem != newm) {
universe@95 128 for(size_t i=0 ; i < pool->ndata ; i++) {
olaf@14 129 if(pool->data[i] == mem) {
olaf@14 130 pool->data[i] = newm;
universe@28 131 return newm + sizeof(ucx_destructor);
olaf@14 132 }
olaf@13 133 }
universe@116 134 fprintf(stderr, "FATAL: 0x%08" PRIxPTR" not in mpool 0x%08" PRIxPTR"\n",
universe@75 135 (intptr_t)ptr, (intptr_t)pool);
universe@141 136 exit(EXIT_FAILURE);
universe@16 137 } else {
universe@28 138 return newm + sizeof(ucx_destructor);
olaf@13 139 }
olaf@13 140 }
olaf@13 141
olaf@113 142 void ucx_mempool_free(UcxMempool *pool, void *ptr) {
olaf@113 143 ucx_memchunk *chunk = (ucx_memchunk*)((char*)ptr-sizeof(ucx_destructor));
olaf@113 144 for(size_t i=0 ; i<pool->ndata ; i++) {
olaf@113 145 if(chunk == pool->data[i]) {
olaf@113 146 if(chunk->destructor != NULL) {
universe@141 147 chunk->destructor(&(chunk->c));
olaf@113 148 }
olaf@113 149 free(chunk);
olaf@113 150 size_t last_index = pool->ndata - 1;
olaf@113 151 if(i != last_index) {
olaf@113 152 pool->data[i] = pool->data[last_index];
universe@141 153 pool->data[last_index] = NULL;
olaf@113 154 }
olaf@113 155 pool->ndata--;
olaf@113 156 return;
olaf@113 157 }
olaf@113 158 }
universe@116 159 fprintf(stderr, "FATAL: 0x%08" PRIxPTR" not in mpool 0x%08" PRIxPTR"\n",
olaf@113 160 (intptr_t)ptr, (intptr_t)pool);
universe@135 161 exit(EXIT_FAILURE);
olaf@113 162 }
olaf@113 163
olaf@113 164 void ucx_mempool_destroy(UcxMempool *pool) {
olaf@13 165 ucx_memchunk *chunk;
universe@95 166 for(size_t i=0 ; i<pool->ndata ; i++) {
olaf@13 167 chunk = (ucx_memchunk*) pool->data[i];
olaf@113 168 if(chunk) {
universe@135 169 if(chunk->destructor) {
universe@135 170 chunk->destructor(&(chunk->c));
olaf@113 171 }
olaf@113 172 free(chunk);
olaf@13 173 }
olaf@13 174 }
olaf@13 175 free(pool->data);
olaf@13 176 free(pool);
olaf@13 177 }
olaf@13 178
olaf@13 179 void ucx_mempool_set_destr(void *ptr, ucx_destructor func) {
olaf@13 180 *(ucx_destructor*)((char*)ptr-sizeof(ucx_destructor)) = func;
olaf@13 181 }
olaf@13 182
olaf@13 183 void ucx_mempool_reg_destr(UcxMempool *pool, void *ptr, ucx_destructor destr) {
olaf@13 184 ucx_regdestr *rd = (ucx_regdestr*)ucx_mempool_malloc(
olaf@13 185 pool,
olaf@13 186 sizeof(ucx_regdestr));
olaf@13 187 rd->destructor = destr;
olaf@14 188 rd->ptr = ptr;
olaf@13 189 ucx_mempool_set_destr(rd, ucx_mempool_shared_destr);
olaf@13 190 }
olaf@113 191
olaf@113 192 UcxAllocator* ucx_mempool_allocator(UcxMempool *pool) {
olaf@113 193 UcxAllocator *allocator = (UcxAllocator*)ucx_mempool_malloc(
olaf@113 194 pool, sizeof(UcxAllocator));
olaf@113 195 if(!allocator) {
olaf@113 196 return NULL;
olaf@113 197 }
olaf@113 198 allocator->malloc = (ucx_allocator_malloc)ucx_mempool_malloc;
olaf@113 199 allocator->calloc = (ucx_allocator_calloc)ucx_mempool_calloc;
olaf@113 200 allocator->realloc = (ucx_allocator_realloc)ucx_mempool_realloc;
olaf@113 201 allocator->free = (ucx_allocator_free)ucx_mempool_free;
olaf@113 202 allocator->pool = pool;
olaf@113 203 return allocator;
olaf@113 204 }

mercurial