1 | /*
|
---|
2 | * Summary: interface for the memory allocator
|
---|
3 | * Description: provides interfaces for the memory allocator,
|
---|
4 | * including debugging capabilities.
|
---|
5 | *
|
---|
6 | * Copy: See Copyright for the status of this software.
|
---|
7 | *
|
---|
8 | * Author: Daniel Veillard
|
---|
9 | */
|
---|
10 |
|
---|
11 |
|
---|
12 | #ifndef __DEBUG_MEMORY_ALLOC__
|
---|
13 | #define __DEBUG_MEMORY_ALLOC__
|
---|
14 |
|
---|
15 | #include <stdio.h>
|
---|
16 | #include <libxml/xmlversion.h>
|
---|
17 |
|
---|
18 | /**
|
---|
19 | * DEBUG_MEMORY:
|
---|
20 | *
|
---|
21 | * DEBUG_MEMORY replaces the allocator with a collect and debug
|
---|
22 | * shell to the libc allocator.
|
---|
23 | * DEBUG_MEMORY should only be activated when debugging
|
---|
24 | * libxml i.e. if libxml has been configured with --with-debug-mem too.
|
---|
25 | */
|
---|
26 | /* #define DEBUG_MEMORY_FREED */
|
---|
27 | /* #define DEBUG_MEMORY_LOCATION */
|
---|
28 |
|
---|
29 | #ifndef VBOX /* Avoid spewing out boring libxml2 memory logging. */
|
---|
30 | #ifdef DEBUG
|
---|
31 | #ifndef DEBUG_MEMORY
|
---|
32 | #define DEBUG_MEMORY
|
---|
33 | #endif
|
---|
34 | #endif
|
---|
35 | #endif /* !VBOX */
|
---|
36 |
|
---|
37 | /**
|
---|
38 | * DEBUG_MEMORY_LOCATION:
|
---|
39 | *
|
---|
40 | * DEBUG_MEMORY_LOCATION should be activated only when debugging
|
---|
41 | * libxml i.e. if libxml has been configured with --with-debug-mem too.
|
---|
42 | */
|
---|
43 | #ifdef DEBUG_MEMORY_LOCATION
|
---|
44 | #endif
|
---|
45 |
|
---|
46 | #ifdef __cplusplus
|
---|
47 | extern "C" {
|
---|
48 | #endif
|
---|
49 |
|
---|
50 | /*
|
---|
51 | * The XML memory wrapper support 4 basic overloadable functions.
|
---|
52 | */
|
---|
53 | /**
|
---|
54 | * xmlFreeFunc:
|
---|
55 | * @mem: an already allocated block of memory
|
---|
56 | *
|
---|
57 | * Signature for a free() implementation.
|
---|
58 | */
|
---|
59 | typedef void (XMLCALL *xmlFreeFunc)(void *mem);
|
---|
60 | /**
|
---|
61 | * xmlMallocFunc:
|
---|
62 | * @size: the size requested in bytes
|
---|
63 | *
|
---|
64 | * Signature for a malloc() implementation.
|
---|
65 | *
|
---|
66 | * Returns a pointer to the newly allocated block or NULL in case of error.
|
---|
67 | */
|
---|
68 | typedef void *(XMLCALL *xmlMallocFunc)(size_t size);
|
---|
69 |
|
---|
70 | /**
|
---|
71 | * xmlReallocFunc:
|
---|
72 | * @mem: an already allocated block of memory
|
---|
73 | * @size: the new size requested in bytes
|
---|
74 | *
|
---|
75 | * Signature for a realloc() implementation.
|
---|
76 | *
|
---|
77 | * Returns a pointer to the newly reallocated block or NULL in case of error.
|
---|
78 | */
|
---|
79 | typedef void *(XMLCALL *xmlReallocFunc)(void *mem, size_t size);
|
---|
80 |
|
---|
81 | /**
|
---|
82 | * xmlStrdupFunc:
|
---|
83 | * @str: a zero terminated string
|
---|
84 | *
|
---|
85 | * Signature for an strdup() implementation.
|
---|
86 | *
|
---|
87 | * Returns the copy of the string or NULL in case of error.
|
---|
88 | */
|
---|
89 | typedef char *(XMLCALL *xmlStrdupFunc)(const char *str);
|
---|
90 |
|
---|
91 | /*
|
---|
92 | * The 4 interfaces used for all memory handling within libxml.
|
---|
93 | LIBXML_DLL_IMPORT extern xmlFreeFunc xmlFree;
|
---|
94 | LIBXML_DLL_IMPORT extern xmlMallocFunc xmlMalloc;
|
---|
95 | LIBXML_DLL_IMPORT extern xmlMallocFunc xmlMallocAtomic;
|
---|
96 | LIBXML_DLL_IMPORT extern xmlReallocFunc xmlRealloc;
|
---|
97 | LIBXML_DLL_IMPORT extern xmlStrdupFunc xmlMemStrdup;
|
---|
98 | */
|
---|
99 |
|
---|
100 | /*
|
---|
101 | * The way to overload the existing functions.
|
---|
102 | * The xmlGc function have an extra entry for atomic block
|
---|
103 | * allocations useful for garbage collected memory allocators
|
---|
104 | */
|
---|
105 | XMLPUBFUN int XMLCALL
|
---|
106 | xmlMemSetup (xmlFreeFunc freeFunc,
|
---|
107 | xmlMallocFunc mallocFunc,
|
---|
108 | xmlReallocFunc reallocFunc,
|
---|
109 | xmlStrdupFunc strdupFunc);
|
---|
110 | XMLPUBFUN int XMLCALL
|
---|
111 | xmlMemGet (xmlFreeFunc *freeFunc,
|
---|
112 | xmlMallocFunc *mallocFunc,
|
---|
113 | xmlReallocFunc *reallocFunc,
|
---|
114 | xmlStrdupFunc *strdupFunc);
|
---|
115 | XMLPUBFUN int XMLCALL
|
---|
116 | xmlGcMemSetup (xmlFreeFunc freeFunc,
|
---|
117 | xmlMallocFunc mallocFunc,
|
---|
118 | xmlMallocFunc mallocAtomicFunc,
|
---|
119 | xmlReallocFunc reallocFunc,
|
---|
120 | xmlStrdupFunc strdupFunc);
|
---|
121 | XMLPUBFUN int XMLCALL
|
---|
122 | xmlGcMemGet (xmlFreeFunc *freeFunc,
|
---|
123 | xmlMallocFunc *mallocFunc,
|
---|
124 | xmlMallocFunc *mallocAtomicFunc,
|
---|
125 | xmlReallocFunc *reallocFunc,
|
---|
126 | xmlStrdupFunc *strdupFunc);
|
---|
127 |
|
---|
128 | /*
|
---|
129 | * Initialization of the memory layer.
|
---|
130 | */
|
---|
131 | XMLPUBFUN int XMLCALL
|
---|
132 | xmlInitMemory (void);
|
---|
133 |
|
---|
134 | /*
|
---|
135 | * Cleanup of the memory layer.
|
---|
136 | */
|
---|
137 | XMLPUBFUN void XMLCALL
|
---|
138 | xmlCleanupMemory (void);
|
---|
139 | /*
|
---|
140 | * These are specific to the XML debug memory wrapper.
|
---|
141 | */
|
---|
142 | XMLPUBFUN int XMLCALL
|
---|
143 | xmlMemUsed (void);
|
---|
144 | XMLPUBFUN int XMLCALL
|
---|
145 | xmlMemBlocks (void);
|
---|
146 | XMLPUBFUN void XMLCALL
|
---|
147 | xmlMemDisplay (FILE *fp);
|
---|
148 | XMLPUBFUN void XMLCALL
|
---|
149 | xmlMemShow (FILE *fp, int nr);
|
---|
150 | XMLPUBFUN void XMLCALL
|
---|
151 | xmlMemoryDump (void);
|
---|
152 | XMLPUBFUN void * XMLCALL
|
---|
153 | xmlMemMalloc (size_t size);
|
---|
154 | XMLPUBFUN void * XMLCALL
|
---|
155 | xmlMemRealloc (void *ptr,size_t size);
|
---|
156 | XMLPUBFUN void XMLCALL
|
---|
157 | xmlMemFree (void *ptr);
|
---|
158 | XMLPUBFUN char * XMLCALL
|
---|
159 | xmlMemoryStrdup (const char *str);
|
---|
160 | XMLPUBFUN void * XMLCALL
|
---|
161 | xmlMallocLoc (size_t size, const char *file, int line);
|
---|
162 | XMLPUBFUN void * XMLCALL
|
---|
163 | xmlReallocLoc (void *ptr, size_t size, const char *file, int line);
|
---|
164 | XMLPUBFUN void * XMLCALL
|
---|
165 | xmlMallocAtomicLoc (size_t size, const char *file, int line);
|
---|
166 | XMLPUBFUN char * XMLCALL
|
---|
167 | xmlMemStrdupLoc (const char *str, const char *file, int line);
|
---|
168 |
|
---|
169 |
|
---|
170 | #ifdef DEBUG_MEMORY_LOCATION
|
---|
171 | /**
|
---|
172 | * xmlMalloc:
|
---|
173 | * @size: number of bytes to allocate
|
---|
174 | *
|
---|
175 | * Wrapper for the malloc() function used in the XML library.
|
---|
176 | *
|
---|
177 | * Returns the pointer to the allocated area or NULL in case of error.
|
---|
178 | */
|
---|
179 | #define xmlMalloc(size) xmlMallocLoc((size), __FILE__, __LINE__)
|
---|
180 | /**
|
---|
181 | * xmlMallocAtomic:
|
---|
182 | * @size: number of bytes to allocate
|
---|
183 | *
|
---|
184 | * Wrapper for the malloc() function used in the XML library for allocation
|
---|
185 | * of block not containing pointers to other areas.
|
---|
186 | *
|
---|
187 | * Returns the pointer to the allocated area or NULL in case of error.
|
---|
188 | */
|
---|
189 | #define xmlMallocAtomic(size) xmlMallocAtomicLoc((size), __FILE__, __LINE__)
|
---|
190 | /**
|
---|
191 | * xmlRealloc:
|
---|
192 | * @ptr: pointer to the existing allocated area
|
---|
193 | * @size: number of bytes to allocate
|
---|
194 | *
|
---|
195 | * Wrapper for the realloc() function used in the XML library.
|
---|
196 | *
|
---|
197 | * Returns the pointer to the allocated area or NULL in case of error.
|
---|
198 | */
|
---|
199 | #define xmlRealloc(ptr, size) xmlReallocLoc((ptr), (size), __FILE__, __LINE__)
|
---|
200 | /**
|
---|
201 | * xmlMemStrdup:
|
---|
202 | * @str: pointer to the existing string
|
---|
203 | *
|
---|
204 | * Wrapper for the strdup() function, xmlStrdup() is usually preferred.
|
---|
205 | *
|
---|
206 | * Returns the pointer to the allocated area or NULL in case of error.
|
---|
207 | */
|
---|
208 | #define xmlMemStrdup(str) xmlMemStrdupLoc((str), __FILE__, __LINE__)
|
---|
209 |
|
---|
210 | #endif /* DEBUG_MEMORY_LOCATION */
|
---|
211 |
|
---|
212 | #ifdef __cplusplus
|
---|
213 | }
|
---|
214 | #endif /* __cplusplus */
|
---|
215 |
|
---|
216 | #ifndef __XML_GLOBALS_H
|
---|
217 | #ifndef __XML_THREADS_H__
|
---|
218 | #include <libxml/threads.h>
|
---|
219 | #include <libxml/globals.h>
|
---|
220 | #endif
|
---|
221 | #endif
|
---|
222 |
|
---|
223 | #endif /* __DEBUG_MEMORY_ALLOC__ */
|
---|
224 |
|
---|