1 \section{\class{wxDebugContext
}}\label{wxdebugcontext
}
3 A class for performing various debugging and memory tracing
4 operations. Full functionality (such as printing out objects
5 currently allocated) is only present in a debugging build of wxWidgets,
6 i.e. if the
\_\_WXDEBUG\_\_ symbol is defined. wxDebugContext
7 and related functions and macros can be compiled out by setting
8 wxUSE
\_DEBUG\_CONTEXT to
0 is setup.h
10 \wxheading{Derived from
}
14 \wxheading{Include files
}
20 \helpref{wxBase
}{librarieslist
}
24 \overview{Overview
}{wxdebugcontextoverview
}
26 \latexignore{\rtfignore{\wxheading{Members
}}}
28 \membersection{wxDebugContext::Check
}\label{wxdebugcontextcheck
}
30 \func{int
}{Check
}{\void}
32 Checks the memory blocks for errors, starting from the currently set
35 \wxheading{Return value
}
37 Returns the number of errors,
38 so a value of zero represents success. Returns -
1 if an error
39 was detected that prevents further checking.
41 \membersection{wxDebugContext::Dump
}\label{wxdebugcontextdump
}
43 \func{bool
}{Dump
}{\void}
45 Performs a memory dump from the currently set checkpoint, writing to the
46 current debug stream. Calls the
{\bf Dump
} member function for each wxObject
49 \wxheading{Return value
}
51 true if the function succeeded, false otherwise.
53 \membersection{wxDebugContext::GetCheckPrevious
}\label{wxdebugcontextgetcheckprevious
}
55 \func{bool
}{GetCheckPrevious
}{\void}
57 Returns true if the memory allocator checks all previous memory blocks for errors.
58 By default, this is false since it slows down execution considerably.
62 \helpref{wxDebugContext::SetCheckPrevious
}{wxdebugcontextsetcheckprevious
}
64 \membersection{wxDebugContext::GetDebugMode
}\label{wxdebugcontextgetdebugmode
}
66 \func{bool
}{GetDebugMode
}{\void}
68 Returns true if debug mode is on. If debug mode is on, the wxObject new and delete
69 operators store or use information about memory allocation. Otherwise,
70 a straight malloc and free will be performed by these operators.
74 \helpref{wxDebugContext::SetDebugMode
}{wxdebugcontextsetdebugmode
}
76 \membersection{wxDebugContext::GetLevel
}\label{wxdebugcontextgetlevel
}
78 \func{int
}{GetLevel
}{\void}
80 Gets the debug level (default
1). The debug level is used by the wxTraceLevel function and
81 the WXTRACELEVEL macro to specify how detailed the trace information is; setting
82 a different level will only have an effect if trace statements in the application
83 specify a value other than one.
85 This is obsolete, replaced by
\helpref{wxLog
}{wxlog
} functionality.
89 \helpref{wxDebugContext::SetLevel
}{wxdebugcontextsetlevel
}
91 \membersection{wxDebugContext::GetStream
}\label{wxdebugcontextgetstream
}
93 \func{ostream\&
}{GetStream
}{\void}
95 Returns the output stream associated with the debug context.
97 This is obsolete, replaced by
\helpref{wxLog
}{wxlog
} functionality.
101 \helpref{wxDebugContext::SetStream
}{wxdebugcontextsetstream
}
103 \membersection{wxDebugContext::GetStreamBuf
}\label{wxdebugcontextgetstreambuf
}
105 \func{streambuf*
}{GetStreamBuf
}{\void}
107 Returns a pointer to the output stream buffer associated with the debug context.
108 There may not necessarily be a stream buffer if the stream has been set
111 This is obsolete, replaced by
\helpref{wxLog
}{wxlog
} functionality.
113 \membersection{wxDebugContext::HasStream
}\label{wxdebugcontexthasstream
}
115 \func{bool
}{HasStream
}{\void}
117 Returns true if there is a stream currently associated
118 with the debug context.
120 This is obsolete, replaced by
\helpref{wxLog
}{wxlog
} functionality.
124 \helpref{wxDebugContext::SetStream
}{wxdebugcontextsetstream
},
\helpref{wxDebugContext::GetStream
}{wxdebugcontextgetstream
}
126 \membersection{wxDebugContext::PrintClasses
}\label{wxdebugcontextprintclasses
}
128 \func{bool
}{PrintClasses
}{\void}
130 Prints a list of the classes declared in this application, giving derivation
131 and whether instances of this class can be dynamically created.
135 \helpref{wxDebugContext::PrintStatistics
}{wxdebugcontextprintstatistics
}
137 \membersection{wxDebugContext::PrintStatistics
}\label{wxdebugcontextprintstatistics
}
139 \func{bool
}{PrintStatistics
}{\param{bool
}{ detailed = true
}}
141 Performs a statistics analysis from the currently set checkpoint, writing
142 to the current debug stream. The number of object and non-object
143 allocations is printed, together with the total size.
145 \wxheading{Parameters
}
147 \docparam{detailed
}{If true, the function will also print how many
148 objects of each class have been allocated, and the space taken by
149 these class instances.
}
153 \helpref{wxDebugContext::PrintStatistics
}{wxdebugcontextprintstatistics
}
155 \membersection{wxDebugContext::SetCheckpoint
}\label{wxdebugcontextsetcheckpoint
}
157 \func{void
}{SetCheckpoint
}{\param{bool
}{ all = false
}}
159 Sets the current checkpoint: Dump and PrintStatistics operations will
160 be performed from this point on. This allows you to ignore allocations
161 that have been performed up to this point.
163 \wxheading{Parameters
}
165 \docparam{all
}{If true, the checkpoint is reset to include all
166 memory allocations since the program started.
}
168 \membersection{wxDebugContext::SetCheckPrevious
}\label{wxdebugcontextsetcheckprevious
}
170 \func{void
}{SetCheckPrevious
}{\param{bool
}{ check
}}
172 Tells the memory allocator to check all previous memory blocks for errors.
173 By default, this is false since it slows down execution considerably.
177 \helpref{wxDebugContext::GetCheckPrevious
}{wxdebugcontextgetcheckprevious
}
179 \membersection{wxDebugContext::SetDebugMode
}\label{wxdebugcontextsetdebugmode
}
181 \func{void
}{SetDebugMode
}{\param{bool
}{ debug
}}
183 Sets the debug mode on or off. If debug mode is on, the wxObject new and delete
184 operators store or use information about memory allocation. Otherwise,
185 a straight malloc and free will be performed by these operators.
187 By default, debug mode is on if
\_\_WXDEBUG\_\_ is defined. If the application
188 uses this function, it should make sure that all object memory allocated
189 is deallocated with the same value of debug mode. Otherwise, the
190 delete operator might try to look for memory information that does not
195 \helpref{wxDebugContext::GetDebugMode
}{wxdebugcontextgetdebugmode
}
197 \membersection{wxDebugContext::SetFile
}\label{wxdebugcontextsetfile
}
199 \func{bool
}{SetFile
}{\param{const wxString\&
}{filename
}}
201 Sets the current debug file and creates a stream. This will delete any existing
202 stream and stream buffer. By default, the debug context stream
203 outputs to the debugger (Windows) or standard error (other platforms).
205 \membersection{wxDebugContext::SetLevel
}\label{wxdebugcontextsetlevel
}
207 \func{void
}{SetLevel
}{\param{int
}{ level
}}
209 Sets the debug level (default
1). The debug level is used by the wxTraceLevel function and
210 the WXTRACELEVEL macro to specify how detailed the trace information is; setting
211 a different level will only have an effect if trace statements in the application
212 specify a value other than one.
214 This is obsolete, replaced by
\helpref{wxLog
}{wxlog
} functionality.
218 \helpref{wxDebugContext::GetLevel
}{wxdebugcontextgetlevel
}
220 \membersection{wxDebugContext::SetStandardError
}\label{wxdebugcontextsetstandarderror
}
222 \func{bool
}{SetStandardError
}{\void}
224 Sets the debugging stream to be the debugger (Windows) or standard error (other platforms).
225 This is the default setting. The existing stream will be flushed and deleted.
227 This is obsolete, replaced by
\helpref{wxLog
}{wxlog
} functionality.
229 \membersection{wxDebugContext::SetStream
}\label{wxdebugcontextsetstream
}
231 \func{void
}{SetStream
}{\param{ostream*
}{stream
},
\param{streambuf*
}{streamBuf = NULL
}}
233 Sets the stream and optionally, stream buffer associated with the debug context.
234 This operation flushes and deletes the existing stream (and stream buffer if any).
236 This is obsolete, replaced by
\helpref{wxLog
}{wxlog
} functionality.
238 \wxheading{Parameters
}
240 \docparam{stream
}{Stream to associate with the debug context. Do not set this to NULL.
}
242 \docparam{streamBuf
}{Stream buffer to associate with the debug context.
}
246 \helpref{wxDebugContext::GetStream
}{wxdebugcontextgetstream
},
\helpref{wxDebugContext::HasStream
}{wxdebugcontexthasstream
}
248 \section{\class{wxDebugStreamBuf
}}\label{wxdebugstreambuf
}
250 This class allows you to treat debugging output in a similar
251 (stream-based) fashion on different platforms. Under
252 Windows, an ostream constructed with this buffer outputs
253 to the debugger, or other program that intercepts debugging
254 output. On other platforms, the output goes to standard error (cerr).
256 This is soon to be obsolete, replaced by
\helpref{wxLog
}{wxlog
} functionality.
258 \wxheading{Derived from
}
262 \wxheading{Include files
}
269 wxDebugStreamBuf streamBuf;
270 ostream stream(&streamBuf);
272 stream << "Hello world!" << endl;
277 \overview{Overview
}{wxdebugcontextoverview
}