b58bbed17f5a2bea7a7a596148d8420deef6eb50
[bertos.git] / bertos / struct / heap.h
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2004 Develer S.r.l. (http://www.develer.com/)
30  * Copyright 1999, 2000, 2001, 2008 Bernie Innocenti <bernie@codewiz.org>
31  * -->
32  *
33  * \brief Heap subsystem (public interface).
34  *
35  * \todo Heap memory could be defined as an array of MemChunk, and used
36  * in this form also within the implementation. This would probably remove
37  * memory alignment problems, and also some aliasing issues.
38  *
39  * \version $Id$
40  * \author Bernie Innocenti <bernie@codewiz.org>
41  */
42
43 #ifndef STRUCT_HEAP_H
44 #define STRUCT_HEAP_H
45
46 #include "cfg/cfg_heap.h"
47 #include <cfg/compiler.h>
48 #include <cfg/macros.h> // IS_POW2()
49
50 /* NOTE: struct size must be a 2's power! */
51 typedef struct _MemChunk
52 {
53         struct _MemChunk *next;
54         size_t size;
55 } MemChunk;
56
57 STATIC_ASSERT(IS_POW2(sizeof(MemChunk)));
58
59 typedef MemChunk heap_buf_t;
60
61 /// A heap
62 typedef struct Heap
63 {
64         struct _MemChunk *FreeList;     ///< Head of the free list
65 } Heap;
66
67 /**
68  * Utility macro to allocate a heap of size \a size.
69  *
70  * \param name Variable name for the heap.
71  * \param size Heap size in bytes.
72  */
73 #define HEAP_DEFINE_BUF(name, size) \
74         heap_buf_t name[((size) + sizeof(heap_buf_t) - 1) / sizeof(heap_buf_t)];
75
76 /// Initialize \a heap within the buffer pointed by \a memory which is of \a size bytes
77 void heap_init(struct Heap* heap, void* memory, size_t size);
78
79 /// Allocate a chunk of memory of \a size bytes from the heap
80 void *heap_allocmem(struct Heap* heap, size_t size);
81
82 /// Free a chunk of memory of \a size bytes from the heap
83 void heap_freemem(struct Heap* heap, void *mem, size_t size);
84
85
86 #define HNEW(heap, type) \
87         (type*)heap_allocmem(heap, sizeof(type))
88
89 #define HNEWVEC(heap, type, nelem) \
90         (type*)heap_allocmem(heap, sizeof(type) * (nelem))
91
92 #define HDELETE(heap, type, mem) \
93         heap_freemem(heap, mem, sizeof(type))
94
95 #define HDELETEVEC(heap, type, nelem, mem) \
96         heap_freemem(heap, mem, sizeof(type) * (nelem))
97
98
99 #if CONFIG_HEAP_MALLOC
100
101 void *heap_malloc(struct Heap* heap, size_t size);
102 void *heap_calloc(struct Heap* heap, size_t size);
103 void heap_free(struct Heap* heap, void * mem);
104
105 #endif
106
107 int heap_testSetup(void);
108 int heap_testRun(void);
109 int heap_testTearDown(void);
110
111 #endif /* STRUCT_HEAP_H */