4 * @copyright Copyright (C) 2016 Sproute Networks, Inc.
6 * @author Avneesh Sachdev <avneesh@sproute.com>
8 * This file is part of Quagga.
10 * Quagga is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2, or (at your option) any
15 * Quagga is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with Quagga; see the file COPYING. If not, write to the Free
22 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
27 * Header file for quagga protobuf memory management code.
30 #ifndef _QPB_ALLOCATOR_H_
31 #define _QPB_ALLOCATOR_H_
33 #include <google/protobuf-c/protobuf-c.h>
35 struct linear_allocator_t_;
38 * Alias for ProtobufCAllocator that is easier on the fingers.
40 typedef ProtobufCAllocator qpb_allocator_t;
46 qpb_alloc (qpb_allocator_t *allocator, size_t size)
48 return allocator->alloc (allocator->allocator_data, size);
54 * Allocate space for the specified number of pointers.
57 qpb_alloc_ptr_array (qpb_allocator_t *allocator, size_t num_ptrs)
59 return qpb_alloc (allocator, num_ptrs * sizeof (void *));
66 qpb_free (qpb_allocator_t *allocator, void *ptr)
68 allocator->free (allocator->allocator_data, ptr);
74 * Convenience macro to reduce the probability of allocating memory of
75 * incorrect size. It returns enough memory to store the given type,
76 * and evaluates to an appropriately typed pointer.
78 #define QPB_ALLOC(allocator, type) \
79 (type *) qpb_alloc(allocator, sizeof(type))
85 extern void qpb_allocator_init_linear (qpb_allocator_t *,
86 struct linear_allocator_t_ *);
89 * The following macros are for the common case where a qpb allocator
90 * is being used alongside a linear allocator that allocates memory
93 #define QPB_DECLARE_STACK_ALLOCATOR(allocator, size) \
94 qpb_allocator_t allocator; \
95 linear_allocator_t lin_ ## allocator; \
96 char lin_ ## allocator ## _buf[size]
98 #define QPB_INIT_STACK_ALLOCATOR(allocator) \
101 linear_allocator_init(&(lin_ ## allocator), \
102 lin_ ## allocator ## _buf, \
103 sizeof(lin_ ## allocator ## _buf)); \
104 qpb_allocator_init_linear(&allocator, &(lin_ ## allocator)); \
107 #define QPB_RESET_STACK_ALLOCATOR(allocator) \
110 linear_allocator_reset (&(lin_ ## allocator)); \
113 #endif /* _QPB_ALLOCATOR_H_ */