1998-04-22 20:58:34 +08:00
|
|
|
/*
|
|
|
|
* BIRD Resource Manager
|
|
|
|
*
|
1999-03-30 03:35:47 +08:00
|
|
|
* (c) 1998--1999 Martin Mares <mj@ucw.cz>
|
1998-04-22 20:58:34 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_RESOURCE_H_
|
|
|
|
#define _BIRD_RESOURCE_H_
|
|
|
|
|
1998-04-28 22:39:34 +08:00
|
|
|
#include "lib/lists.h"
|
1998-04-22 20:58:34 +08:00
|
|
|
|
|
|
|
/* Resource */
|
|
|
|
|
|
|
|
typedef struct resource {
|
1998-05-04 00:43:39 +08:00
|
|
|
node n; /* Inside resource pool */
|
|
|
|
struct resclass *class; /* Resource class */
|
1998-04-22 20:58:34 +08:00
|
|
|
} resource;
|
|
|
|
|
|
|
|
/* Resource class */
|
|
|
|
|
|
|
|
struct resclass {
|
1998-05-04 00:43:39 +08:00
|
|
|
char *name; /* Resource class name */
|
|
|
|
unsigned size; /* Standard size of single resource */
|
|
|
|
void (*free)(resource *); /* Freeing function */
|
|
|
|
void (*dump)(resource *); /* Dump to debug output */
|
2000-05-09 06:33:38 +08:00
|
|
|
resource *(*lookup)(resource *, unsigned long); /* Look up address (only for debugging) */
|
2010-06-03 04:20:40 +08:00
|
|
|
size_t (*memsize)(resource *); /* Return size of memory used by the resource, may be NULL */
|
1998-04-22 20:58:34 +08:00
|
|
|
};
|
|
|
|
|
2010-06-03 04:20:40 +08:00
|
|
|
/* Estimate of system allocator overhead per item, for memory consumtion stats */
|
|
|
|
#define ALLOC_OVERHEAD 8
|
|
|
|
|
1998-04-22 20:58:34 +08:00
|
|
|
/* Generic resource manipulation */
|
|
|
|
|
|
|
|
typedef struct pool pool;
|
|
|
|
|
1998-05-04 00:43:39 +08:00
|
|
|
void resource_init(void);
|
1998-05-27 05:37:37 +08:00
|
|
|
pool *rp_new(pool *, char *); /* Create new pool */
|
1998-04-22 20:58:34 +08:00
|
|
|
void rfree(void *); /* Free single resource */
|
|
|
|
void rdump(void *); /* Dump to debug output */
|
2010-06-03 04:20:40 +08:00
|
|
|
size_t rmemsize(void *res); /* Return size of memory used by the resource */
|
2000-05-09 06:33:38 +08:00
|
|
|
void rlookup(unsigned long); /* Look up address (only for debugging) */
|
2004-06-01 02:47:19 +08:00
|
|
|
void rmove(void *, pool *); /* Move to a different pool */
|
1998-04-22 20:58:34 +08:00
|
|
|
|
1998-05-04 00:43:39 +08:00
|
|
|
void *ralloc(pool *, struct resclass *);
|
|
|
|
|
|
|
|
extern pool root_pool;
|
1998-04-22 20:58:34 +08:00
|
|
|
|
|
|
|
/* Normal memory blocks */
|
|
|
|
|
|
|
|
void *mb_alloc(pool *, unsigned size);
|
1999-03-04 19:36:26 +08:00
|
|
|
void *mb_allocz(pool *, unsigned size);
|
2013-09-17 05:57:40 +08:00
|
|
|
void *mb_realloc(void *m, unsigned size);
|
1998-05-04 00:43:39 +08:00
|
|
|
void mb_free(void *);
|
1998-04-22 20:58:34 +08:00
|
|
|
|
|
|
|
/* Memory pools with linear allocation */
|
|
|
|
|
1998-12-06 19:59:18 +08:00
|
|
|
typedef struct linpool linpool;
|
1998-04-22 20:58:34 +08:00
|
|
|
|
1998-12-06 19:59:18 +08:00
|
|
|
linpool *lp_new(pool *, unsigned blk);
|
|
|
|
void *lp_alloc(linpool *, unsigned size); /* Aligned */
|
|
|
|
void *lp_allocu(linpool *, unsigned size); /* Unaligned */
|
|
|
|
void *lp_allocz(linpool *, unsigned size); /* With clear */
|
1999-03-30 03:35:47 +08:00
|
|
|
void lp_flush(linpool *); /* Free everything, but leave linpool */
|
1998-04-22 20:58:34 +08:00
|
|
|
|
|
|
|
/* Slabs */
|
|
|
|
|
|
|
|
typedef struct slab slab;
|
|
|
|
|
|
|
|
slab *sl_new(pool *, unsigned size);
|
|
|
|
void *sl_alloc(slab *);
|
|
|
|
void sl_free(slab *, void *);
|
|
|
|
|
1999-03-04 19:36:26 +08:00
|
|
|
/*
|
|
|
|
* Low-level memory allocation functions, please don't use
|
|
|
|
* outside resource manager and possibly sysdep code.
|
|
|
|
*/
|
1998-04-22 20:58:34 +08:00
|
|
|
|
2013-09-17 05:57:40 +08:00
|
|
|
void buffer_realloc(void **buf, unsigned *size, unsigned need, unsigned item_size);
|
|
|
|
|
|
|
|
|
1999-03-04 19:36:26 +08:00
|
|
|
#ifdef HAVE_LIBDMALLOC
|
|
|
|
/*
|
|
|
|
* The standard dmalloc macros tend to produce lots of namespace
|
2009-06-11 05:45:08 +08:00
|
|
|
* conflicts and we use only xmalloc, xrealloc and xfree, so we
|
|
|
|
* can define the stubs ourselves.
|
1999-03-04 19:36:26 +08:00
|
|
|
*/
|
|
|
|
#define DMALLOC_DISABLE
|
|
|
|
#include <dmalloc.h>
|
|
|
|
#define xmalloc(size) _xmalloc_leap(__FILE__, __LINE__, size)
|
2009-06-11 05:45:08 +08:00
|
|
|
#define xrealloc(size) _xrealloc_leap(__FILE__, __LINE__, size)
|
1999-03-04 19:36:26 +08:00
|
|
|
#define xfree(ptr) _xfree_leap(__FILE__, __LINE__, ptr)
|
|
|
|
#else
|
2000-03-30 06:57:46 +08:00
|
|
|
/*
|
|
|
|
* Unfortunately, several libraries we might want to link to define
|
|
|
|
* their own xmalloc and we don't want to interfere with them, hence
|
|
|
|
* the renaming.
|
|
|
|
*/
|
|
|
|
#define xmalloc bird_xmalloc
|
2009-06-11 05:45:08 +08:00
|
|
|
#define xrealloc bird_xrealloc
|
1998-04-22 20:58:34 +08:00
|
|
|
void *xmalloc(unsigned);
|
2009-06-11 05:45:08 +08:00
|
|
|
void *xrealloc(void *, unsigned);
|
1998-04-22 20:58:34 +08:00
|
|
|
#define xfree(x) free(x)
|
1999-03-04 19:36:26 +08:00
|
|
|
#endif
|
1998-04-22 20:58:34 +08:00
|
|
|
|
|
|
|
#endif
|
2013-09-17 05:57:40 +08:00
|
|
|
|