| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- // Copyright (C) 2004-2025 Artifex Software, Inc.
- //
- // This file is part of MuPDF.
- //
- // MuPDF is free software: you can redistribute it and/or modify it under the
- // terms of the GNU Affero General Public License as published by the Free
- // Software Foundation, either version 3 of the License, or (at your option)
- // any later version.
- //
- // MuPDF 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 Affero General Public License for more
- // details.
- //
- // You should have received a copy of the GNU Affero General Public License
- // along with MuPDF. If not, see <https://www.gnu.org/licenses/agpl-3.0.en.html>
- //
- // Alternative licensing terms are available from the licensor.
- // For commercial licensing, see <https://www.artifex.com/> or contact
- // Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco,
- // CA 94129, USA, for further information.
- #include "mupdf/fitz.h"
- #include <string.h>
- #include <stdio.h>
- typedef struct fz_pool_node
- {
- struct fz_pool_node *next;
- char mem[FZ_FLEXIBLE_ARRAY];
- } fz_pool_node;
- #define POOL_SIZE (4<<10) /* default size of pool blocks */
- #define POOL_SELF (1<<10) /* size where allocs are put into their own blocks */
- struct fz_pool
- {
- size_t size;
- fz_pool_node *head, *tail;
- char *pos, *end;
- };
- fz_pool *fz_new_pool(fz_context *ctx)
- {
- fz_pool *pool;
- fz_pool_node *node = NULL;
- pool = fz_malloc_struct(ctx, fz_pool);
- fz_try(ctx)
- {
- node = Memento_label(fz_calloc(ctx, offsetof(fz_pool_node, mem) + POOL_SIZE, 1), "fz_pool_block");
- pool->head = pool->tail = node;
- pool->pos = node->mem;
- pool->end = node->mem + POOL_SIZE;
- }
- fz_catch(ctx)
- {
- fz_free(ctx, pool);
- fz_rethrow(ctx);
- }
- return pool;
- }
- static void *fz_pool_alloc_oversize(fz_context *ctx, fz_pool *pool, size_t size)
- {
- fz_pool_node *node;
- /* link in memory at the head of the list */
- node = Memento_label(fz_calloc(ctx, offsetof(fz_pool_node, mem) + size, 1), "fz_pool_oversize");
- node->next = pool->head;
- pool->head = node;
- pool->size += offsetof(fz_pool_node, mem) + size;
- return node->mem;
- }
- void *fz_pool_alloc(fz_context *ctx, fz_pool *pool, size_t size)
- {
- char *ptr;
- if (size >= POOL_SELF)
- return fz_pool_alloc_oversize(ctx, pool, size);
- /* round size to pointer alignment (we don't expect to use doubles) */
- size = (size + FZ_POINTER_ALIGN_MOD - 1) & ~(FZ_POINTER_ALIGN_MOD-1);
- if (pool->pos + size > pool->end)
- {
- fz_pool_node *node = Memento_label(fz_calloc(ctx, offsetof(fz_pool_node, mem) + POOL_SIZE, 1), "fz_pool_block");
- pool->tail = pool->tail->next = node;
- pool->pos = node->mem;
- pool->end = node->mem + POOL_SIZE;
- pool->size += offsetof(fz_pool_node, mem) + POOL_SIZE;
- }
- ptr = pool->pos;
- pool->pos += size;
- return ptr;
- }
- char *fz_pool_strdup(fz_context *ctx, fz_pool *pool, const char *s)
- {
- size_t n = strlen(s) + 1;
- char *p = fz_pool_alloc(ctx, pool, n);
- memcpy(p, s, n);
- return p;
- }
- size_t fz_pool_size(fz_context *ctx, fz_pool *pool)
- {
- return pool ? pool->size : 0;
- }
- void fz_drop_pool(fz_context *ctx, fz_pool *pool)
- {
- fz_pool_node *node;
- if (!pool)
- return;
- node = pool->head;
- while (node)
- {
- fz_pool_node *next = node->next;
- fz_free(ctx, node);
- node = next;
- }
- fz_free(ctx, pool);
- }
|