]> git.saurik.com Git - wxWidgets.git/blame - include/wx/memory.h
Common code for the same handling of wxSL_INVERSE.
[wxWidgets.git] / include / wx / memory.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: memory.h
3// Purpose: MDI classes
4// Author: Arthur Seaton, Julian Smart
5// Modified by:
6// Created: 29/01/98
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Julian Smart
65571936 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _WX_MEMORYH__
13#define _WX_MEMORYH__
c801d85f 14
12028905 15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
c801d85f
KB
16#pragma interface "memory.h"
17#endif
18
19#include "wx/defs.h"
2432b92d 20#include "wx/string.h"
ced55544 21#include "wx/msgout.h"
c801d85f
KB
22
23/*
24 The macro which will be expanded to include the file and line number
25 info, or to be a straight call to the new operator.
26*/
27
ea57084d 28#if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
c801d85f
KB
29
30#include <stddef.h>
31
ea57084d 32#ifdef __WXDEBUG__
e55ad60e 33
4e32eea1
WS
34WXDLLIMPEXP_BASE void * wxDebugAlloc(size_t size, wxChar * fileName, int lineNum, bool isObject, bool isVect = false);
35WXDLLIMPEXP_BASE void wxDebugFree(void * buf, bool isVect = false);
2db0bbde
JS
36
37//**********************************************************************************
38/*
39 The global operator new used for everything apart from getting
40 dynamic storage within this function itself.
41*/
42
43// We'll only do malloc and free for the moment: leave the interesting
44// stuff for the wxObject versions.
241421a6 45
c801d85f 46
47d67540 47#if wxUSE_GLOBAL_MEMORY_OPERATORS
c801d85f 48
6b037754
JS
49// Undefine temporarily (new is #defined in object.h) because we want to
50// declare some new operators.
c801d85f 51#ifdef new
3f4a0c5b 52 #undef new
c801d85f
KB
53#endif
54
5dcf05ae 55#if defined(__SUNCC__)
3f4a0c5b
VZ
56 #define wxUSE_ARRAY_MEMORY_OPERATORS 0
57#elif !( defined (__VISUALC__) && (__VISUALC__ <= 1020) ) || defined( __MWERKS__)
58 #define wxUSE_ARRAY_MEMORY_OPERATORS 1
ba6f401d
VZ
59#elif defined (__SGI_CC_)
60 // only supported by -n32 compilers
61 #ifndef __EDG_ABI_COMPATIBILITY_VERSION
62 #define wxUSE_ARRAY_MEMORY_OPERATORS 0
63 #endif
2db0bbde
JS
64#elif !( defined (__VISUALC__) && (__VISUALC__ <= 1020) ) || defined( __MWERKS__)
65 #define wxUSE_ARRAY_MEMORY_OPERATORS 1
5dcf05ae 66#else
ba6f401d 67 // ::operator new[] is a recent C++ feature, so assume it's not supported
3f4a0c5b 68 #define wxUSE_ARRAY_MEMORY_OPERATORS 0
5dcf05ae
JS
69#endif
70
241421a6
JS
71// devik 2000-8-29: All new/delete ops are now inline because they can't
72// be marked as dllexport/dllimport. It then leads to weird bugs when
73// used on MSW as DLL
74#if defined(__WXMSW__) && (defined(WXUSINGDLL) || defined(WXMAKINGDLL_BASE))
75inline void * operator new (size_t size, wxChar * fileName, int lineNum)
76{
77 return wxDebugAlloc(size, fileName, lineNum, FALSE, FALSE);
78}
79
80inline void * operator new (size_t size)
81{
82 return wxDebugAlloc(size, NULL, 0, FALSE);
83}
84
85inline void operator delete (void * buf)
86{
87 wxDebugFree(buf, FALSE);
88}
89
90#if wxUSE_ARRAY_MEMORY_OPERATORS
91inline void * operator new[] (size_t size)
92{
93 return wxDebugAlloc(size, NULL, 0, FALSE, TRUE);
94}
95
96inline void * operator new[] (size_t size, wxChar * fileName, int lineNum)
97{
98 return wxDebugAlloc(size, fileName, lineNum, FALSE, TRUE);
99}
100
101inline void operator delete[] (void * buf)
102{
103 wxDebugFree(buf, TRUE);
104}
105#endif // wxUSE_ARRAY_MEMORY_OPERATORS
106
107#else
108
aaf1bbfd 109void * operator new (size_t size, wxChar * fileName, int lineNum);
b40b0f5b 110
aaf1bbfd 111void * operator new (size_t size);
2db0bbde 112
aaf1bbfd 113void operator delete (void * buf);
c801d85f 114
5dcf05ae 115#if wxUSE_ARRAY_MEMORY_OPERATORS
aaf1bbfd
JS
116void * operator new[] (size_t size);
117
118void * operator new[] (size_t size, wxChar * fileName, int lineNum);
119
120void operator delete[] (void * buf);
241421a6
JS
121#endif // wxUSE_ARRAY_MEMORY_OPERATORS
122#endif // defined(__WXMSW__) && (defined(WXUSINGDLL) || defined(WXMAKINGDLL_BASE))
c801d85f 123
ba14d986
VZ
124// VC++ 6.0 and MWERKS
125#if ( defined(__VISUALC__) && (__VISUALC__ >= 1200) ) || defined(__MWERKS__)
2db0bbde
JS
126inline void operator delete(void* pData, wxChar* /* fileName */, int /* lineNum */)
127{
4e32eea1 128 wxDebugFree(pData, false);
2db0bbde
JS
129}
130inline void operator delete[](void* pData, wxChar* /* fileName */, int /* lineNum */)
131{
4e32eea1 132 wxDebugFree(pData, true);
2db0bbde
JS
133}
134#endif // __VISUALC__>=1200
135#endif // wxUSE_GLOBAL_MEMORY_OPERATORS
136#endif // __WXDEBUG__
137
138//**********************************************************************************
c801d85f
KB
139
140typedef unsigned int wxMarkerType;
141
142/*
143 Define the struct which will be placed at the start of all dynamically
144 allocated memory.
145*/
146
bddd7a8d 147class WXDLLIMPEXP_BASE wxMemStruct {
c801d85f 148
bddd7a8d 149friend class WXDLLIMPEXP_BASE wxDebugContext; // access to the m_next pointer for list traversal.
c801d85f
KB
150
151public:
152public:
153 int AssertList ();
154
155 size_t RequestSize () { return m_reqSize; }
156 wxMarkerType Marker () { return m_firstMarker; }
157
158 // When an object is deleted we set the id slot to a specific value.
159 inline void SetDeleted ();
160 inline int IsDeleted ();
161
162 int Append ();
163 int Unlink ();
164
165 // Used to determine if the object is really a wxMemStruct.
166 // Not a foolproof test by any means, but better than none I hope!
167 int AssertIt ();
168
169 // Do all validation on a node.
170 int ValidateNode ();
171
172 // Check the integrity of a node and of the list, node by node.
173 int CheckBlock ();
174 int CheckAllPrevious ();
175
176 // Print a single node.
177 void PrintNode ();
178
179 // Called when the memory linking functions get an error.
180 void ErrorMsg (const char *);
181 void ErrorMsg ();
182
183 inline void *GetActualData(void) const { return m_actualData; }
184
185 void Dump(void);
186
187public:
188 // Check for underwriting. There are 2 of these checks. This one
189 // inside the struct and another right after the struct.
190 wxMarkerType m_firstMarker;
191
192 // File name and line number are from cpp.
4de6207a 193 wxChar* m_fileName;
c801d85f
KB
194 int m_lineNum;
195
196 // The amount of memory requested by the caller.
197 size_t m_reqSize;
198
199 // Used to try to verify that we really are dealing with an object
200 // of the required class. Can be 1 of 2 values these indicating a valid
201 // wxMemStruct object, or a deleted wxMemStruct object.
202 wxMarkerType m_id;
203
204 wxMemStruct * m_prev;
205 wxMemStruct * m_next;
206
207 void * m_actualData;
208 bool m_isObject;
209};
210
211
212typedef void (wxMemStruct::*PmSFV) ();
213
214
215/*
b073db94 216 Debugging class. This will only have a single instance, but it's
c801d85f
KB
217 a reasonable way to keep everything together and to make this
218 available for change if needed by someone else.
219 A lot of this stuff would be better off within the wxMemStruct class, but
b073db94 220 it's stuff which we need to access at times when there is no wxMemStruct
c801d85f
KB
221 object so we use this class instead. Think of it as a collection of
222 globals which have to do with the wxMemStruct class.
223*/
224
bddd7a8d 225class WXDLLIMPEXP_BASE wxDebugContext {
c801d85f
KB
226
227protected:
228 // Used to set alignment for markers.
229 static size_t CalcAlignment ();
230
231 // Returns the amount of padding needed after something of the given
232 // size. This is so that when we cast pointers backwards and forwards
233 // the pointer value will be valid for a wxMarkerType.
234 static size_t GetPadding (const size_t size) ;
235
236 // Traverse the list.
237 static void TraverseList (PmSFV, wxMemStruct *from = NULL);
238
c801d85f
KB
239 static int debugLevel;
240 static bool debugOn;
241
478e6b71
VZ
242 static int m_balign; // byte alignment
243 static int m_balignmask; // mask for performing byte alignment
c801d85f
KB
244public:
245 // Set a checkpoint to dump only the memory from
246 // a given point
247 static wxMemStruct *checkPoint;
248
249 wxDebugContext(void);
250 ~wxDebugContext(void);
251
c801d85f
KB
252 static int GetLevel(void) { return debugLevel; }
253 static void SetLevel(int level) { debugLevel = level; }
254
255 static bool GetDebugMode(void) { return debugOn; }
256 static void SetDebugMode(bool flag) { debugOn = flag; }
257
4e32eea1 258 static void SetCheckpoint(bool all = false);
c801d85f 259 static wxMemStruct *GetCheckpoint(void) { return checkPoint; }
2bd5bbc9 260
c801d85f
KB
261 // Calculated from the request size and any padding needed
262 // before the final marker.
263 static size_t PaddedSize (const size_t reqSize);
264
265 // Calc the total amount of space we need from the system
266 // to satisfy a caller request. This includes all padding.
267 static size_t TotSize (const size_t reqSize);
268
269 // Return valid pointers to offsets within the allocated memory.
270 static char * StructPos (const char * buf);
271 static char * MidMarkerPos (const char * buf);
272 static char * CallerMemPos (const char * buf);
273 static char * EndMarkerPos (const char * buf, const size_t size);
274
275 // Given a pointer to the start of the caller requested area
276 // return a pointer to the start of the entire alloc\'d buffer.
277 static char * StartPos (const char * caller);
278
279 // Access to the list.
280 static wxMemStruct * GetHead () { return m_head; }
281 static wxMemStruct * GetTail () { return m_tail; }
282
283 // Set the list sentinals.
284 static wxMemStruct * SetHead (wxMemStruct * st) { return (m_head = st); }
285 static wxMemStruct * SetTail (wxMemStruct * st) { return (m_tail = st); }
286
287 // If this is set then every new operation checks the validity
288 // of the all previous nodes in the list.
289 static bool GetCheckPrevious () { return m_checkPrevious; }
290 static void SetCheckPrevious (bool value) { m_checkPrevious = value; }
291
4e32eea1
WS
292 // Checks all nodes, or all nodes if checkAll is true
293 static int Check(bool checkAll = false);
c801d85f
KB
294
295 // Print out the list of wxMemStruct nodes.
296 static bool PrintList(void);
297
298 // Dump objects
299 static bool Dump(void);
300
301 // Print statistics
4e32eea1 302 static bool PrintStatistics(bool detailed = true);
c801d85f
KB
303
304 // Print out the classes in the application.
305 static bool PrintClasses(void);
306
307 // Count the number of non-wxDebugContext-related objects
308 // that are outstanding
4e32eea1 309 static int CountObjectsLeft(bool sinceCheckpoint = false);
c801d85f 310
ced55544
VS
311 // This function is used to output the dump
312 static void OutputDumpLine(const wxChar *szFormat, ...);
313
c801d85f
KB
314private:
315 // Store these here to allow access to the list without
316 // needing to have a wxMemStruct object.
317 static wxMemStruct* m_head;
318 static wxMemStruct* m_tail;
319
4e32eea1
WS
320 // Set to false if we're not checking all previous nodes when
321 // we do a new. Set to true when we are.
c801d85f
KB
322 static bool m_checkPrevious;
323};
324
ced55544
VS
325// Final cleanup (e.g. deleting the log object and doing memory leak checking)
326// will be delayed until all wxDebugContextDumpDelayCounter objects have been
327// destructed. Adding one wxDebugContextDumpDelayCounter per file will delay
328// memory leak checking until after destructing all global objects.
329class WXDLLIMPEXP_BASE wxDebugContextDumpDelayCounter
330{
331public:
332 wxDebugContextDumpDelayCounter() {
333 sm_count++;
334 }
335
336 ~wxDebugContextDumpDelayCounter() {
337 sm_count--;
338 if(!sm_count) DoDump();
339 }
340private:
341 void DoDump();
342 static int sm_count;
343};
344
345// make leak dump after all globals have been destructed
346static wxDebugContextDumpDelayCounter wxDebugContextDumpDelayCounter_File;
347#define WXDEBUG_DUMPDELAYCOUNTER \
348 static wxDebugContextDumpDelayCounter wxDebugContextDumpDelayCounter_Extra;
349
6b037754 350// Output a debug message, in a system dependent fashion.
bddd7a8d
VZ
351void WXDLLIMPEXP_BASE wxTrace(const wxChar *fmt ...) ATTRIBUTE_PRINTF_1;
352void WXDLLIMPEXP_BASE wxTraceLevel(int level, const wxChar *fmt ...) ATTRIBUTE_PRINTF_2;
c801d85f
KB
353
354#define WXTRACE wxTrace
355#define WXTRACELEVEL wxTraceLevel
356
ced55544
VS
357#else // (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
358
359#define WXDEBUG_DUMPDELAYCOUNTER
c801d85f 360
f2e5c082
VZ
361// Borland C++ Builder 6 seems to have troubles with inline functions (see bug
362// 819700)
363#if 0
364 inline void wxTrace(const wxChar *WXUNUSED(fmt)) {}
365 inline void wxTraceLevel(int WXUNUSED(level), const wxChar *WXUNUSED(fmt)) {}
366#else
367 #define wxTrace(fmt)
368 #define wxTraceLevel(l, fmt)
369#endif
c801d85f 370
4e32eea1
WS
371#define WXTRACE true ? (void)0 : wxTrace
372#define WXTRACELEVEL true ? (void)0 : wxTraceLevel
c801d85f 373
ced55544 374#endif // (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
c801d85f
KB
375
376#endif
34138703 377 // _WX_MEMORYH__
c801d85f 378