blob: 0d76cc06ac0dbd45ce3698792e0d98298465f1c5 [file] [log] [blame]
Benny Prijono9033e312005-11-21 02:08:39 +00001/* $Id$ */
2/*
Benny Prijono844653c2008-12-23 17:27:53 +00003 * Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com)
4 * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
Benny Prijono9033e312005-11-21 02:08:39 +00005 *
6 * This program 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20#include <pj/pool.h>
21#include <pj/except.h>
22#include <pj/os.h>
23#include <pj/compat/malloc.h>
24
Benny Prijono8508aa02006-03-30 15:56:01 +000025#if !PJ_HAS_POOL_ALT_API
26
Benny Prijono9033e312005-11-21 02:08:39 +000027/*
28 * This file contains pool default policy definition and implementation.
29 */
Benny Prijonoba4abc92007-06-01 07:26:21 +000030#include "pool_signature.h"
Benny Prijono9033e312005-11-21 02:08:39 +000031
32
33static void *default_block_alloc(pj_pool_factory *factory, pj_size_t size)
34{
Benny Prijonoc6e165f2006-07-09 10:05:46 +000035 void *p;
Benny Prijono9033e312005-11-21 02:08:39 +000036
Benny Prijonoc6e165f2006-07-09 10:05:46 +000037 PJ_CHECK_STACK();
38
39 if (factory->on_block_alloc) {
40 int rc;
41 rc = factory->on_block_alloc(factory, size);
42 if (!rc)
43 return NULL;
44 }
45
Benny Prijonoba4abc92007-06-01 07:26:21 +000046 p = malloc(size+(SIG_SIZE << 1));
Benny Prijonoc6e165f2006-07-09 10:05:46 +000047
48 if (p == NULL) {
49 if (factory->on_block_free)
50 factory->on_block_free(factory, size);
Benny Prijonoba4abc92007-06-01 07:26:21 +000051 } else {
52 /* Apply signature when PJ_SAFE_POOL is set. It will move
53 * "p" pointer forward.
54 */
55 APPLY_SIG(p, size);
Benny Prijonoc6e165f2006-07-09 10:05:46 +000056 }
57
58 return p;
Benny Prijono9033e312005-11-21 02:08:39 +000059}
60
Benny Prijonoc6e165f2006-07-09 10:05:46 +000061static void default_block_free(pj_pool_factory *factory, void *mem,
62 pj_size_t size)
Benny Prijono9033e312005-11-21 02:08:39 +000063{
64 PJ_CHECK_STACK();
Benny Prijonoc6e165f2006-07-09 10:05:46 +000065
66 if (factory->on_block_free)
67 factory->on_block_free(factory, size);
Benny Prijono9033e312005-11-21 02:08:39 +000068
Benny Prijonoba4abc92007-06-01 07:26:21 +000069 /* Check and remove signature when PJ_SAFE_POOL is set. It will
70 * move "mem" pointer backward.
71 */
72 REMOVE_SIG(mem, size);
73
74 /* Note that when PJ_SAFE_POOL is set, the actual size of the block
75 * is size + SIG_SIZE*2.
76 */
77
Benny Prijono9033e312005-11-21 02:08:39 +000078 free(mem);
79}
80
81static void default_pool_callback(pj_pool_t *pool, pj_size_t size)
82{
83 PJ_CHECK_STACK();
84 PJ_UNUSED_ARG(pool);
85 PJ_UNUSED_ARG(size);
86
87 PJ_THROW(PJ_NO_MEMORY_EXCEPTION);
88}
89
Benny Prijono1af6beb2007-08-16 11:26:10 +000090PJ_DEF_DATA(pj_pool_factory_policy) pj_pool_factory_default_policy =
Benny Prijono9033e312005-11-21 02:08:39 +000091{
92 &default_block_alloc,
93 &default_block_free,
94 &default_pool_callback,
95 0
96};
Benny Prijono8508aa02006-03-30 15:56:01 +000097
Benny Prijono8ab968f2007-07-20 08:08:30 +000098PJ_DEF(const pj_pool_factory_policy*) pj_pool_factory_get_default_policy(void)
99{
100 return &pj_pool_factory_default_policy;
101}
102
103
Benny Prijono8508aa02006-03-30 15:56:01 +0000104#endif /* PJ_HAS_POOL_ALT_API */