summaryrefslogtreecommitdiff
path: root/tests/suite/ecore/src/lib/eina_chained_mempool.c
blob: e79d5078d87e2e425b9c1ed16c72879366d94e7c (plain)
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
/* EINA - EFL data type library
 * Copyright (C) 2008-2010 Cedric BAIL, Vincent Torri
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library;
 * if not, see <https://www.gnu.org/licenses/>.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <stdlib.h>
#include <string.h>

#ifdef EFL_HAVE_POSIX_THREADS
#include <pthread.h>
#endif

#ifdef EFL_HAVE_WIN32_THREADS
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#undef WIN32_LEAN_AND_MEAN
#endif

#include "eina_inlist.h"
#include "eina_error.h"
#include "eina_module.h"
#include "eina_mempool.h"
#include "eina_trash.h"

#include "eina_private.h"

#ifdef DEBUG
#include "eina_log.h"

static int _eina_mempool_log_dom = -1;

#ifdef INF
#undef INF
#endif
#define INF(...) EINA_LOG_DOM_INFO(_eina_mempool_log_dom, __VA_ARGS__)
#endif

typedef struct _Chained_Mempool Chained_Mempool;
struct _Chained_Mempool {
	Eina_Inlist *first;
	const char *name;
	int item_alloc;
	int pool_size;
	int alloc_size;
	int group_size;
	int usage;
#ifdef EFL_HAVE_THREADS
#ifdef EFL_HAVE_POSIX_THREADS
	pthread_mutex_t mutex;
#else
	HANDLE mutex;
#endif
#endif
};

typedef struct _Chained_Pool Chained_Pool;
struct _Chained_Pool {
	EINA_INLIST;
	Eina_Trash *base;
	int usage;
};

static inline Chained_Pool *_eina_chained_mp_pool_new(Chained_Mempool *
						      pool)
{
	Chained_Pool *p;
	unsigned char *ptr;
	int i;

	eina_error_set(0);
	p = malloc(pool->alloc_size);
	if (!p) {
		eina_error_set(EINA_ERROR_OUT_OF_MEMORY);
		return NULL;
	}

	ptr =
	    (unsigned char *) p +
	    eina_mempool_alignof(sizeof(Chained_Pool));
	p->usage = 0;
	p->base = NULL;
	for (i = 0; i < pool->pool_size; ++i, ptr += pool->item_alloc)
		eina_trash_push(&p->base, ptr);
	return p;
}

static inline void _eina_chained_mp_pool_free(Chained_Pool * p)
{
	free(p);
}

static void *eina_chained_mempool_malloc(void *data,
					 __UNUSED__ unsigned int size)
{
	Chained_Mempool *pool = data;
	Chained_Pool *p = NULL;
	void *mem;

#ifdef EFL_HAVE_THREADS
#ifdef EFL_HAVE_POSIX_THREADS
	pthread_mutex_lock(&pool->mutex);
#else
	WaitForSingleObject(pool->mutex, INFINITE);
#endif
#endif

	// look 4 pool from 2nd bucket on
	EINA_INLIST_FOREACH(pool->first, p) {
		// base is not NULL - has a free slot
		if (p->base) {
			pool->first =
			    eina_inlist_demote(pool->first,
					       EINA_INLIST_GET(p));
			break;
		}
	}

	// we have reached the end of the list - no free pools
	if (!p) {
		p = _eina_chained_mp_pool_new(pool);
		if (!p) {
#ifdef EFL_HAVE_PTHREAD
#ifdef EFL_HAVE_POSIX_THREADS
			pthread_mutex_unlock(&pool->mutex);
#else
			ReleaseMutex(pool->mutex);
#endif
#endif
			return NULL;
		}

		pool->first =
		    eina_inlist_prepend(pool->first, EINA_INLIST_GET(p));
	}
	// Request a free pointer
	mem = eina_trash_pop(&p->base);
	// move to end - it just filled up
	if (!p->base)
		pool->first =
		    eina_inlist_demote(pool->first, EINA_INLIST_GET(p));

	p->usage++;
	pool->usage++;

#ifdef EFL_HAVE_THREADS
#ifdef EFL_HAVE_POSIX_THREADS
	pthread_mutex_unlock(&pool->mutex);
#else
	ReleaseMutex(pool->mutex);
#endif
#endif

	return mem;
}

static void eina_chained_mempool_free(void *data, void *ptr)
{
	Chained_Mempool *pool = data;
	Chained_Pool *p;
	void *pmem;
	int psize;

	psize = pool->group_size;
	// look 4 pool

#ifdef EFL_HAVE_THREADS
#ifdef EFL_HAVE_POSIX_THREADS
	pthread_mutex_lock(&pool->mutex);
#else
	WaitForSingleObject(pool->mutex, INFINITE);
#endif
#endif

	EINA_INLIST_FOREACH(pool->first, p) {
		// pool mem base
		pmem =
		    (void *) (((unsigned char *) p) +
			      sizeof(Chained_Pool));
		// is it in pool mem?
		if ((ptr >= pmem) &&
		    ((unsigned char *) ptr <
		     (((unsigned char *) pmem) + psize))) {
			// freed node points to prev free node
			eina_trash_push(&p->base, ptr);
			// next free node is now the one we freed
			p->usage--;
			pool->usage--;
			if (p->usage == 0) {
				// free bucket
				pool->first =
				    eina_inlist_remove(pool->first,
						       EINA_INLIST_GET(p));
				_eina_chained_mp_pool_free(p);
			} else
				// move to front
				pool->first =
				    eina_inlist_promote(pool->first,
							EINA_INLIST_GET
							(p));

			break;
		}
	}

#ifdef EFL_HAVE_THREADS
#ifdef EFL_HAVE_POSIX_THREADS
	pthread_mutex_unlock(&pool->mutex);
#else
	ReleaseMutex(pool->mutex);
#endif
#endif
}

static void *eina_chained_mempool_realloc(__UNUSED__ void *data,
					  __UNUSED__ void *element,
					  __UNUSED__ unsigned int size)
{
	return NULL;
}

static void *eina_chained_mempool_init(const char *context,
				       __UNUSED__ const char *option,
				       va_list args)
{
	Chained_Mempool *mp;
	int item_size;
	size_t length;

	length = context ? strlen(context) + 1 : 0;

	mp = calloc(1, sizeof(Chained_Mempool) + length);
	if (!mp)
		return NULL;

	item_size = va_arg(args, int);
	mp->pool_size = va_arg(args, int);

	if (length) {
		mp->name = (const char *) (mp + 1);
		memcpy((char *) mp->name, context, length);
	}

	mp->item_alloc = eina_mempool_alignof(item_size);
	mp->group_size = mp->item_alloc * mp->pool_size;
	mp->alloc_size =
	    mp->group_size + eina_mempool_alignof(sizeof(Chained_Pool));

#ifdef EFL_HAVE_THREADS
#ifdef EFL_HAVE_POSIX_THREADS
	pthread_mutex_init(&mp->mutex, NULL);
#else
	mp->mutex = CreateMutex(NULL, FALSE, NULL);
#endif
#endif

	return mp;
}

static void eina_chained_mempool_shutdown(void *data)
{
	Chained_Mempool *mp;

	mp = (Chained_Mempool *) data;

	while (mp->first) {
		Chained_Pool *p = (Chained_Pool *) mp->first;

#ifdef DEBUG
		if (p->usage > 0)
			INF("Bad news we are destroying not an empty mempool [%s]\n", mp->name);

#endif

		mp->first = eina_inlist_remove(mp->first, mp->first);
		_eina_chained_mp_pool_free(p);
	}

#ifdef EFL_HAVE_THREADS
#ifdef EFL_HAVE_POSIX_THREADS
	pthread_mutex_destroy(&mp->mutex);
#else
	CloseHandle(mp->mutex);
#endif
#endif

	free(mp);
}

static Eina_Mempool_Backend _eina_chained_mp_backend = {
	"chained_mempool",
	&eina_chained_mempool_init,
	&eina_chained_mempool_free,
	&eina_chained_mempool_malloc,
	&eina_chained_mempool_realloc,
	NULL,
	NULL,
	&eina_chained_mempool_shutdown
};

Eina_Bool chained_init(void)
{
#ifdef DEBUG
	_eina_mempool_log_dom = eina_log_domain_register("eina_mempool",
							 EINA_LOG_COLOR_DEFAULT);
	if (_eina_mempool_log_dom < 0) {
		EINA_LOG_ERR
		    ("Could not register log domain: eina_mempool");
		return EINA_FALSE;
	}
#endif
	return eina_mempool_register(&_eina_chained_mp_backend);
}

void chained_shutdown(void)
{
	eina_mempool_unregister(&_eina_chained_mp_backend);
#ifdef DEBUG
	eina_log_domain_unregister(_eina_mempool_log_dom);
	_eina_mempool_log_dom = -1;
#endif
}

#ifndef EINA_STATIC_BUILD_CHAINED_POOL

EINA_MODULE_INIT(chained_init);
EINA_MODULE_SHUTDOWN(chained_shutdown);

#endif				/* ! EINA_STATIC_BUILD_CHAINED_POOL */