-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmem_pool.c
173 lines (142 loc) · 4.7 KB
/
mem_pool.c
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
/*
* This file is part of libsysperf
*
* Copyright (C) 2001, 2004-2007 by Nokia Corporation.
*
* Contact: Eero Tamminen <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*
*/
/* ========================================================================= *
* File: mem_pool.c
*
* Author: Simo Piiroinen
*
* -------------------------------------------------------------------------
*
* History:
*
* 21-Jun-2005 Simo Piiroinen
* - initial version
* ========================================================================= */
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include "msg.h"
#include "mem_pool.h"
/* ========================================================================= *
* mem_chunk_t
* ========================================================================= */
/* ------------------------------------------------------------------------- *
* mem_chunk_create
* ------------------------------------------------------------------------- */
mem_chunk_t *mem_chunk_create(size_t size)
{
msg_debug("%s: %d kB\n", __FUNCTION__, size >> 10);
mem_chunk_t *self = malloc(sizeof *self + size);
self->head = 0;
self->tail = size;
return self;
}
/* ------------------------------------------------------------------------- *
* mem_chunk_delete
* ------------------------------------------------------------------------- */
void mem_chunk_delete(mem_chunk_t *self)
{
msg_debug("%s: %d kB\n", __FUNCTION__, self->head >> 10);
free(self);
}
/* ------------------------------------------------------------------------- *
* mem_chunk_avail
* ------------------------------------------------------------------------- */
size_t mem_chunk_avail(mem_chunk_t *self)
{
return (self != 0) ? (self->tail - self->head) : 0;
}
/* ------------------------------------------------------------------------- *
* mem_chunk_alloc
* ------------------------------------------------------------------------- */
void *mem_chunk_alloc(mem_chunk_t *self, size_t size)
{
void *addr = &self->data[self->head];
self->head += size;
assert( self->head <= self->tail );
return addr;
}
/* ------------------------------------------------------------------------- *
* mem_pool_ctor
* ------------------------------------------------------------------------- */
void mem_pool_ctor(mem_pool_t *self)
{
//self->alloc = 256 << 10;
self->alloc = 512 << 10;
self->chunk = 0;
}
/* ------------------------------------------------------------------------- *
* mem_pool_dtor
* ------------------------------------------------------------------------- */
void mem_pool_dtor(mem_pool_t *self)
{
mem_chunk_t *chunk;
while( (chunk = self->chunk) != 0 )
{
self->chunk = chunk->next;
mem_chunk_delete(chunk);
}
}
/* ------------------------------------------------------------------------- *
* mem_pool_create
* ------------------------------------------------------------------------- */
mem_pool_t *mem_pool_create(void)
{
mem_pool_t *self = calloc(1, sizeof *self);
mem_pool_ctor(self);
return self;
}
/* ------------------------------------------------------------------------- *
* mem_pool_delete
* ------------------------------------------------------------------------- */
void mem_pool_delete(mem_pool_t *self)
{
if( self != 0 )
{
mem_pool_dtor(self);
free(self);
}
}
/* ------------------------------------------------------------------------- *
* mem_pool_alloc
* ------------------------------------------------------------------------- */
void *mem_pool_alloc(mem_pool_t *self, size_t size)
{
size = (size + 3) & ~3;
if( mem_chunk_avail(self->chunk) < size )
{
mem_chunk_t *chunk;
chunk = mem_chunk_create(self->alloc);
chunk->next = self->chunk;
self->chunk = chunk;
}
return mem_chunk_alloc(self->chunk, size);
}
/* ------------------------------------------------------------------------- *
* mem_pool_strdup
* ------------------------------------------------------------------------- */
void *mem_pool_strdup(mem_pool_t *self, const char *str)
{
size_t len = strlen(str) + 1;
return memcpy(mem_pool_alloc(self, len), str, len);
}