1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
|
/*
* Ostatnia aktualizacja:
*
* - $Id: pool.c,v 1.4 2002/12/14 19:36:11 mati Exp $
*
*/
#include "libtlen.h"
#ifdef POOL_DEBUG
int pool__total = 0;
int pool__ltotal = 0;
HASHTABLE pool__disturbed = NULL;
void *
_pool__malloc (size_t size)
{
pool__total++;
return malloc (size);
}
void
_pool__free (void *block)
{
pool__total--;
free (block);
}
#else
#define _pool__malloc malloc
#define _pool__free free
#endif
/* make an empty pool */
pool
_pool_new (char *zone)
{
pool p;
while ((p = _pool__malloc (sizeof (_pool))) == NULL)
sleep (1);
p->cleanup = NULL;
p->heap = NULL;
p->size = 0;
#ifdef POOL_DEBUG
p->lsize = -1;
p->zone[0] = '\0';
strcat (p->zone, zone);
sprintf (p->name, "%X", p);
if (pool__disturbed == NULL)
{
pool__disturbed = 1; /* reentrancy flag! */
pool__disturbed =
ghash_create (POOL_DEBUG, (KEYHASHFUNC) str_hash_code,
(KEYCOMPAREFUNC) j_strcmp);
}
if (pool__disturbed != 1)
ghash_put (pool__disturbed, p->name, p);
#endif
return p;
}
/* free a heap */
void
_pool_heap_free (void *arg)
{
struct pheap *h = (struct pheap *) arg;
_pool__free (h->block);
_pool__free (h);
}
/* mem should always be freed last */
void
_pool_cleanup_append (pool p, struct pfree *pf)
{
struct pfree *cur;
if (p->cleanup == NULL)
{
p->cleanup = pf;
return;
}
/* fast forward to end of list */
for (cur = p->cleanup; cur->next != NULL; cur = cur->next) ;
cur->next = pf;
}
/* create a cleanup tracker */
struct pfree *
_pool_free (pool p, pool_cleaner f, void *arg)
{
struct pfree *ret;
/* make the storage for the tracker */
while ((ret = _pool__malloc (sizeof (struct pfree))) == NULL)
sleep (1);
ret->f = f;
ret->arg = arg;
ret->next = NULL;
return ret;
}
/* create a heap and make sure it get's cleaned up */
struct pheap *
_pool_heap (pool p, int size)
{
struct pheap *ret;
struct pfree *clean;
/* make the return heap */
while ((ret = _pool__malloc (sizeof (struct pheap))) == NULL)
sleep (1);
while ((ret->block = _pool__malloc (size)) == NULL)
sleep (1);
ret->size = size;
p->size += size;
ret->used = 0;
/* append to the cleanup list */
clean = _pool_free (p, _pool_heap_free, (void *) ret);
clean->heap = ret; /* for future use in finding used mem for pstrdup */
_pool_cleanup_append (p, clean);
return ret;
}
pool
_pool_new_heap (int size, char *zone)
{
pool p;
p = _pool_new (zone);
p->heap = _pool_heap (p, size);
return p;
}
void *
pmalloc (pool p, int size)
{
void *block;
if (p == NULL)
{
fprintf (stderr,
"Memory Leak! [pmalloc received NULL pool, unable to track allocation, exiting]\n");
abort ();
}
/* if there is no heap for this pool or it's a big request, just raw, I like how we clean this :) */
if (p->heap == NULL || size > (p->heap->size / 2))
{
while ((block = _pool__malloc (size)) == NULL)
sleep (1);
p->size += size;
_pool_cleanup_append (p, _pool_free (p, _pool__free, block));
return block;
}
/* we have to preserve boundaries, long story :) */
if (size >= 4)
while (p->heap->used & 7)
p->heap->used++;
/* if we don't fit in the old heap, replace it */
if (size > (p->heap->size - p->heap->used))
p->heap = _pool_heap (p, p->heap->size);
/* the current heap has room */
block = (char *) p->heap->block + p->heap->used;
p->heap->used += size;
return block;
}
void *
pmalloc_x (pool p, int size, char c)
{
void *result = pmalloc (p, size);
if (result != NULL)
memset (result, c, size);
return result;
}
/* easy safety utility (for creating blank mem for structs, etc) */
void *
pmalloco (pool p, int size)
{
void *block = pmalloc (p, size);
memset (block, 0, size);
return block;
}
/* XXX efficient: move this to const char * and then loop throug the existing heaps to see if src is within a block in this pool */
char *
pstrdup (pool p, const char *src)
{
char *ret;
if (src == NULL)
return NULL;
ret = pmalloc (p, strlen (src) + 1);
strcpy (ret, src);
return ret;
}
/* when move above, this one would actually return a new block */
char *
pstrdupx (pool p, const char *src)
{
return pstrdup (p, src);
}
int
pool_size (pool p)
{
if (p == NULL)
return 0;
return p->size;
}
void
pool_free (pool p)
{
struct pfree *cur, *stub;
if (p == NULL)
return;
cur = p->cleanup;
while (cur != NULL)
{
(*cur->f) (cur->arg);
stub = cur->next;
_pool__free (cur);
cur = stub;
}
#ifdef POOL_DEBUG
ghash_remove (pool__disturbed, p->name);
#endif
_pool__free (p);
}
/* public cleanup utils, insert in a way that they are run FIFO, before mem frees */
void
pool_cleanup (pool p, pool_cleaner f, void *arg)
{
struct pfree *clean;
clean = _pool_free (p, f, arg);
clean->next = p->cleanup;
p->cleanup = clean;
}
#ifdef POOL_DEBUG
void debug_log (char *zone, const char *msgfmt, ...);
int
_pool_stat (void *arg, const void *key, void *data)
{
pool p = (pool) data;
if (p->lsize == -1)
debug_log ("leak", "%s: %X is a new pool", p->zone, p->name);
else if (p->size > p->lsize)
debug_log ("leak", "%s: %X grew %d", p->zone, p->name,
p->size - p->lsize);
else if ((int) arg)
debug_log ("leak", "%s: %X exists %d", p->zone, p->name,
p->size);
p->lsize = p->size;
return 1;
}
void
pool_stat (int full)
{
ghash_walk (pool__disturbed, _pool_stat, (void *) full);
if (pool__total != pool__ltotal)
debug_log ("leak", "%d\ttotal missed mallocs", pool__total);
pool__ltotal = pool__total;
return;
}
#else
void
pool_stat (int full)
{
return;
}
#endif
|