]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: log.h | |
3 | // Purpose: interface of wxLog* classes | |
4 | // Author: wxWidgets team | |
5 | // Licence: wxWindows licence | |
6 | ///////////////////////////////////////////////////////////////////////////// | |
7 | ||
8 | #if wxUSE_BASE | |
9 | ||
10 | /** | |
11 | Different standard log levels (you may also define your own) used with | |
12 | by standard wxLog functions wxLogGeneric(), wxLogError(), wxLogWarning(), etc... | |
13 | */ | |
14 | enum wxLogLevelValues | |
15 | { | |
16 | wxLOG_FatalError, //!< program can't continue, abort immediately | |
17 | wxLOG_Error, //!< a serious error, user must be informed about it | |
18 | wxLOG_Warning, //!< user is normally informed about it but may be ignored | |
19 | wxLOG_Message, //!< normal message (i.e. normal output of a non GUI app) | |
20 | wxLOG_Status, //!< informational: might go to the status line of GUI app | |
21 | wxLOG_Info, //!< informational message (a.k.a. 'Verbose') | |
22 | wxLOG_Debug, //!< never shown to the user, disabled in release mode | |
23 | wxLOG_Trace, //!< trace messages are also only enabled in debug mode | |
24 | wxLOG_Progress, //!< used for progress indicator (not yet) | |
25 | wxLOG_User = 100, //!< user defined levels start here | |
26 | wxLOG_Max = 10000 | |
27 | }; | |
28 | ||
29 | /** | |
30 | The type used to specify a log level. | |
31 | ||
32 | Default values of ::wxLogLevel used by wxWidgets are contained in the | |
33 | ::wxLogLevelValues enumeration. | |
34 | */ | |
35 | typedef unsigned long wxLogLevel; | |
36 | ||
37 | /** | |
38 | Information about a log record (unit of the log output). | |
39 | */ | |
40 | class wxLogRecordInfo | |
41 | { | |
42 | public: | |
43 | /// The name of the file where this log message was generated. | |
44 | const char *filename; | |
45 | ||
46 | /// The line number at which this log message was generated. | |
47 | int line; | |
48 | ||
49 | /** | |
50 | The name of the function where the log record was generated. | |
51 | ||
52 | This field may be @NULL if the compiler doesn't support @c __FUNCTION__ | |
53 | (but most modern compilers do). | |
54 | */ | |
55 | const char *func; | |
56 | ||
57 | /// Time when the log message was generated. | |
58 | time_t timestamp; | |
59 | ||
60 | /** | |
61 | Id of the thread in which the message was generated. | |
62 | ||
63 | This field is only available if wxWidgets was built with threads | |
64 | support (<code>wxUSE_THREADS == 1</code>). | |
65 | ||
66 | @see wxThread::GetCurrentId() | |
67 | */ | |
68 | wxThreadIdType threadId; | |
69 | }; | |
70 | ||
71 | /** | |
72 | @class wxLogFormatter | |
73 | ||
74 | wxLogFormatter class is used to format the log messages. It implements the | |
75 | default formatting and can be derived from to create custom formatters. | |
76 | ||
77 | The default implementation formats the message into a string containing | |
78 | the time stamp, level-dependent prefix and the message itself. | |
79 | ||
80 | To change it, you can derive from it and override its Format() method. For | |
81 | example, to include the thread id in the log messages you can use | |
82 | @code | |
83 | class LogFormatterWithThread : public wxLogFormatter | |
84 | { | |
85 | virtual wxString Format(wxLogLevel level, | |
86 | const wxString& msg, | |
87 | const wxLogRecordInfo& info) const | |
88 | { | |
89 | return wxString::Format("[%d] %s(%d) : %s", | |
90 | info.threadId, info.filename, info.line, msg); | |
91 | } | |
92 | }; | |
93 | @endcode | |
94 | And then associate it with wxLog instance using its SetFormatter(). Then, | |
95 | if you call: | |
96 | ||
97 | @code | |
98 | wxLogMessage(_("*** Application started ***")); | |
99 | @endcode | |
100 | ||
101 | the log output could be something like: | |
102 | ||
103 | @verbatim | |
104 | [7872] d:\testApp\src\testApp.cpp(85) : *** Application started *** | |
105 | @endverbatim | |
106 | ||
107 | @library{wxbase} | |
108 | @category{logging} | |
109 | ||
110 | @see @ref overview_log | |
111 | ||
112 | @since 2.9.4 | |
113 | */ | |
114 | class wxLogFormatter | |
115 | { | |
116 | public: | |
117 | /** | |
118 | The default ctor does nothing. | |
119 | */ | |
120 | wxLogFormatter(); | |
121 | ||
122 | ||
123 | /** | |
124 | This function creates the full log message string. | |
125 | ||
126 | Override it to customize the output string format. | |
127 | ||
128 | @param level | |
129 | The level of this log record, e.g. ::wxLOG_Error. | |
130 | @param msg | |
131 | The log message itself. | |
132 | @param info | |
133 | All the other information (such as time, component, location...) | |
134 | associated with this log record. | |
135 | ||
136 | @return | |
137 | The formated message. | |
138 | ||
139 | @note | |
140 | Time stamping is disabled for Visual C++ users in debug builds by | |
141 | default because otherwise it would be impossible to directly go to the line | |
142 | from which the log message was generated by simply clicking in the debugger | |
143 | window on the corresponding error message. If you wish to enable it, override | |
144 | FormatTime(). | |
145 | */ | |
146 | virtual wxString Format(wxLogLevel level, | |
147 | const wxString& msg, | |
148 | const wxLogRecordInfo& info) const; | |
149 | ||
150 | protected: | |
151 | /** | |
152 | This function formats the time stamp part of the log message. | |
153 | ||
154 | Override this function if you need to customize just the time stamp. | |
155 | ||
156 | @param time | |
157 | Time to format. | |
158 | ||
159 | @return | |
160 | The formated time string, may be empty. | |
161 | */ | |
162 | virtual wxString FormatTime(time_t time) const; | |
163 | }; | |
164 | ||
165 | ||
166 | /** | |
167 | @class wxLog | |
168 | ||
169 | wxLog class defines the interface for the <em>log targets</em> used by wxWidgets | |
170 | logging functions as explained in the @ref overview_log. | |
171 | ||
172 | The only situations when you need to directly use this class is when you want | |
173 | to derive your own log target because the existing ones don't satisfy your | |
174 | needs. | |
175 | ||
176 | Otherwise, it is completely hidden behind the @ref group_funcmacro_log "wxLogXXX() functions" | |
177 | and you may not even know about its existence. | |
178 | ||
179 | @note For console-mode applications, the default target is wxLogStderr, so | |
180 | that all @e wxLogXXX() functions print on @c stderr when @c wxUSE_GUI = 0. | |
181 | ||
182 | @library{wxbase} | |
183 | @category{logging} | |
184 | ||
185 | @see @ref overview_log, @ref group_funcmacro_log "wxLogXXX() functions" | |
186 | */ | |
187 | class wxLog | |
188 | { | |
189 | public: | |
190 | /** | |
191 | @name Trace mask functions | |
192 | */ | |
193 | //@{ | |
194 | ||
195 | /** | |
196 | Add the @a mask to the list of allowed masks for wxLogTrace(). | |
197 | ||
198 | @see RemoveTraceMask(), GetTraceMasks() | |
199 | */ | |
200 | static void AddTraceMask(const wxString& mask); | |
201 | ||
202 | /** | |
203 | Removes all trace masks previously set with AddTraceMask(). | |
204 | ||
205 | @see RemoveTraceMask() | |
206 | */ | |
207 | static void ClearTraceMasks(); | |
208 | ||
209 | /** | |
210 | Returns the currently allowed list of string trace masks. | |
211 | ||
212 | @see AddTraceMask(). | |
213 | */ | |
214 | static const wxArrayString& GetTraceMasks(); | |
215 | ||
216 | /** | |
217 | Returns @true if the @a mask is one of allowed masks for wxLogTrace(). | |
218 | ||
219 | See also: AddTraceMask(), RemoveTraceMask() | |
220 | */ | |
221 | static bool IsAllowedTraceMask(const wxString& mask); | |
222 | ||
223 | /** | |
224 | Remove the @a mask from the list of allowed masks for | |
225 | wxLogTrace(). | |
226 | ||
227 | @see AddTraceMask() | |
228 | */ | |
229 | static void RemoveTraceMask(const wxString& mask); | |
230 | ||
231 | //@} | |
232 | ||
233 | ||
234 | ||
235 | /** | |
236 | @name Log target functions | |
237 | */ | |
238 | //@{ | |
239 | ||
240 | /** | |
241 | Instructs wxLog to not create new log targets on the fly if there is none | |
242 | currently (see GetActiveTarget()). | |
243 | ||
244 | (Almost) for internal use only: it is supposed to be called by the | |
245 | application shutdown code (where you don't want the log target to be | |
246 | automatically created anymore). | |
247 | ||
248 | Note that this function also calls ClearTraceMasks(). | |
249 | */ | |
250 | static void DontCreateOnDemand(); | |
251 | ||
252 | /** | |
253 | Returns the pointer to the active log target (may be @NULL). | |
254 | ||
255 | Notice that if SetActiveTarget() hadn't been previously explicitly | |
256 | called, this function will by default try to create a log target by | |
257 | calling wxAppTraits::CreateLogTarget() which may be overridden in a | |
258 | user-defined traits class to change the default behaviour. You may also | |
259 | call DontCreateOnDemand() to disable this behaviour. | |
260 | ||
261 | When this function is called from threads other than main one, | |
262 | auto-creation doesn't happen. But if the thread has a thread-specific | |
263 | log target previously set by SetThreadActiveTarget(), it is returned | |
264 | instead of the global one. Otherwise, the global log target is | |
265 | returned. | |
266 | */ | |
267 | static wxLog* GetActiveTarget(); | |
268 | ||
269 | /** | |
270 | Sets the specified log target as the active one. | |
271 | ||
272 | Returns the pointer to the previous active log target (may be @NULL). | |
273 | To suppress logging use a new instance of wxLogNull not @NULL. If the | |
274 | active log target is set to @NULL a new default log target will be | |
275 | created when logging occurs. | |
276 | ||
277 | @see SetThreadActiveTarget() | |
278 | */ | |
279 | static wxLog* SetActiveTarget(wxLog* logtarget); | |
280 | ||
281 | /** | |
282 | Sets a thread-specific log target. | |
283 | ||
284 | The log target passed to this function will be used for all messages | |
285 | logged by the current thread using the usual wxLog functions. This | |
286 | shouldn't be called from the main thread which never uses a thread- | |
287 | specific log target but can be used for the other threads to handle | |
288 | thread logging completely separately; instead of buffering thread log | |
289 | messages in the main thread logger. | |
290 | ||
291 | Notice that unlike for SetActiveTarget(), wxWidgets does not destroy | |
292 | the thread-specific log targets when the thread terminates so doing | |
293 | this is your responsibility. | |
294 | ||
295 | This method is only available if @c wxUSE_THREADS is 1, i.e. wxWidgets | |
296 | was compiled with threads support. | |
297 | ||
298 | @param logger | |
299 | The new thread-specific log target, possibly @NULL. | |
300 | @return | |
301 | The previous thread-specific log target, initially @NULL. | |
302 | ||
303 | @since 2.9.1 | |
304 | */ | |
305 | static wxLog *SetThreadActiveTarget(wxLog *logger); | |
306 | ||
307 | /** | |
308 | Flushes the current log target if any, does nothing if there is none. | |
309 | ||
310 | When this method is called from the main thread context, it also | |
311 | flushes any previously buffered messages logged by the other threads. | |
312 | When it is called from the other threads it simply calls Flush() on the | |
313 | currently active log target, so it mostly makes sense to do this if a | |
314 | thread has its own logger set with SetThreadActiveTarget(). | |
315 | */ | |
316 | static void FlushActive(); | |
317 | ||
318 | /** | |
319 | Resumes logging previously suspended by a call to Suspend(). | |
320 | All messages logged in the meanwhile will be flushed soon. | |
321 | */ | |
322 | static void Resume(); | |
323 | ||
324 | /** | |
325 | Suspends the logging until Resume() is called. | |
326 | ||
327 | Note that the latter must be called the same number of times as the former | |
328 | to undo it, i.e. if you call Suspend() twice you must call Resume() twice as well. | |
329 | ||
330 | Note that suspending the logging means that the log sink won't be flushed | |
331 | periodically, it doesn't have any effect if the current log target does the | |
332 | logging immediately without waiting for Flush() to be called (the standard | |
333 | GUI log target only shows the log dialog when it is flushed, so Suspend() | |
334 | works as expected with it). | |
335 | ||
336 | @see Resume(), wxLogNull | |
337 | */ | |
338 | static void Suspend(); | |
339 | ||
340 | //@} | |
341 | ||
342 | ||
343 | ||
344 | /** | |
345 | @name Log level functions | |
346 | */ | |
347 | //@{ | |
348 | ||
349 | /** | |
350 | Returns the current log level limit. | |
351 | ||
352 | All messages at levels strictly greater than the value returned by this | |
353 | function are not logged at all. | |
354 | ||
355 | @see SetLogLevel(), IsLevelEnabled() | |
356 | */ | |
357 | static wxLogLevel GetLogLevel(); | |
358 | ||
359 | /** | |
360 | Returns true if logging at this level is enabled for the current thread. | |
361 | ||
362 | This function only returns @true if logging is globally enabled and if | |
363 | @a level is less than or equal to the maximal log level enabled for the | |
364 | given @a component. | |
365 | ||
366 | @see IsEnabled(), SetLogLevel(), GetLogLevel(), SetComponentLevel() | |
367 | ||
368 | @since 2.9.1 | |
369 | */ | |
370 | static bool IsLevelEnabled(wxLogLevel level, wxString component); | |
371 | ||
372 | /** | |
373 | Sets the log level for the given component. | |
374 | ||
375 | For example, to disable all but error messages from wxWidgets network | |
376 | classes you may use | |
377 | @code | |
378 | wxLog::SetComponentLevel("wx/net", wxLOG_Error); | |
379 | @endcode | |
380 | ||
381 | SetLogLevel() may be used to set the global log level. | |
382 | ||
383 | @param component | |
384 | Non-empty component name, possibly using slashes (@c /) to separate | |
385 | it into several parts. | |
386 | @param level | |
387 | Maximal level of log messages from this component which will be | |
388 | handled instead of being simply discarded. | |
389 | ||
390 | @since 2.9.1 | |
391 | */ | |
392 | static void SetComponentLevel(const wxString& component, wxLogLevel level); | |
393 | ||
394 | /** | |
395 | Specifies that log messages with level greater (numerically) than | |
396 | @a logLevel should be ignored and not sent to the active log target. | |
397 | ||
398 | @see SetComponentLevel() | |
399 | */ | |
400 | static void SetLogLevel(wxLogLevel logLevel); | |
401 | ||
402 | //@} | |
403 | ||
404 | ||
405 | ||
406 | /** | |
407 | @name Enable/disable features functions | |
408 | */ | |
409 | //@{ | |
410 | ||
411 | /** | |
412 | Globally enable or disable logging. | |
413 | ||
414 | Calling this function with @false argument disables all log messages | |
415 | for the current thread. | |
416 | ||
417 | @see wxLogNull, IsEnabled() | |
418 | ||
419 | @return | |
420 | The old state, i.e. @true if logging was previously enabled and | |
421 | @false if it was disabled. | |
422 | */ | |
423 | static bool EnableLogging(bool enable = true); | |
424 | ||
425 | /** | |
426 | Returns true if logging is enabled at all now. | |
427 | ||
428 | @see IsLevelEnabled(), EnableLogging() | |
429 | */ | |
430 | static bool IsEnabled(); | |
431 | ||
432 | /** | |
433 | Returns whether the repetition counting mode is enabled. | |
434 | */ | |
435 | static bool GetRepetitionCounting(); | |
436 | ||
437 | /** | |
438 | Enables logging mode in which a log message is logged once, and in case exactly | |
439 | the same message successively repeats one or more times, only the number of | |
440 | repetitions is logged. | |
441 | */ | |
442 | static void SetRepetitionCounting(bool repetCounting = true); | |
443 | ||
444 | /** | |
445 | Returns the current timestamp format string. | |
446 | ||
447 | Notice that the current time stamp is only used by the default log | |
448 | formatter and custom formatters may ignore this format. | |
449 | */ | |
450 | static const wxString& GetTimestamp(); | |
451 | ||
452 | /** | |
453 | Sets the timestamp format prepended by the default log targets to all | |
454 | messages. The string may contain any normal characters as well as % | |
455 | prefixed format specifiers, see @e strftime() manual for details. | |
456 | Passing an empty string to this function disables message time stamping. | |
457 | ||
458 | Notice that the current time stamp is only used by the default log | |
459 | formatter and custom formatters may ignore this format. You can also | |
460 | define a custom wxLogFormatter to customize the time stamp handling | |
461 | beyond changing its format. | |
462 | */ | |
463 | static void SetTimestamp(const wxString& format); | |
464 | ||
465 | /** | |
466 | Disables time stamping of the log messages. | |
467 | ||
468 | Notice that the current time stamp is only used by the default log | |
469 | formatter and custom formatters may ignore calls to this function. | |
470 | ||
471 | @since 2.9.0 | |
472 | */ | |
473 | static void DisableTimestamp(); | |
474 | ||
475 | /** | |
476 | Returns whether the verbose mode is currently active. | |
477 | */ | |
478 | static bool GetVerbose(); | |
479 | ||
480 | /** | |
481 | Activates or deactivates verbose mode in which the verbose messages are | |
482 | logged as the normal ones instead of being silently dropped. | |
483 | ||
484 | The verbose messages are the trace messages which are not disabled in the | |
485 | release mode and are generated by wxLogVerbose(). | |
486 | ||
487 | @see @ref overview_log | |
488 | */ | |
489 | static void SetVerbose(bool verbose = true); | |
490 | ||
491 | //@} | |
492 | ||
493 | ||
494 | /** | |
495 | Sets the specified formatter as the active one. | |
496 | ||
497 | @param formatter | |
498 | The new formatter. If @NULL, reset to the default formatter. | |
499 | ||
500 | Returns the pointer to the previous formatter. You must delete it | |
501 | if you don't plan to attach it again to a wxLog object later. | |
502 | ||
503 | @since 2.9.4 | |
504 | */ | |
505 | wxLogFormatter *SetFormatter(wxLogFormatter* formatter); | |
506 | ||
507 | ||
508 | /** | |
509 | Some of wxLog implementations, most notably the standard wxLogGui class, | |
510 | buffer the messages (for example, to avoid showing the user a zillion of modal | |
511 | message boxes one after another -- which would be really annoying). | |
512 | This function shows them all and clears the buffer contents. | |
513 | If the buffer is already empty, nothing happens. | |
514 | ||
515 | If you override this method in a derived class, call the base class | |
516 | version first, before doing anything else. | |
517 | */ | |
518 | virtual void Flush(); | |
519 | ||
520 | /** | |
521 | Log the given record. | |
522 | ||
523 | This function should only be called from the DoLog() implementations in | |
524 | the derived classes if they need to call DoLogRecord() on another log | |
525 | object (they can, of course, just use wxLog::DoLogRecord() call syntax | |
526 | to call it on the object itself). It should not be used for logging new | |
527 | messages which can be only sent to the currently active logger using | |
528 | OnLog() which also checks if the logging (for this level) is enabled | |
529 | while this method just directly calls DoLog(). | |
530 | ||
531 | Example of use of this class from wxLogChain: | |
532 | @code | |
533 | void wxLogChain::DoLogRecord(wxLogLevel level, | |
534 | const wxString& msg, | |
535 | const wxLogRecordInfo& info) | |
536 | { | |
537 | // let the previous logger show it | |
538 | if ( m_logOld && IsPassingMessages() ) | |
539 | m_logOld->LogRecord(level, msg, info); | |
540 | ||
541 | // and also send it to the new one | |
542 | if ( m_logNew && m_logNew != this ) | |
543 | m_logNew->LogRecord(level, msg, info); | |
544 | } | |
545 | @endcode | |
546 | ||
547 | @since 2.9.1 | |
548 | */ | |
549 | void LogRecord(wxLogLevel level, const wxString& msg, const wxLogRecordInfo& info); | |
550 | ||
551 | protected: | |
552 | /** | |
553 | @name Logging callbacks. | |
554 | ||
555 | The functions which should be overridden by custom log targets. | |
556 | ||
557 | When defining a new log target, you have a choice between overriding | |
558 | DoLogRecord(), which provides maximal flexibility, DoLogTextAtLevel() | |
559 | which can be used if you don't intend to change the default log | |
560 | messages formatting but want to handle log messages of different levels | |
561 | differently or, in the simplest case, DoLogText(). | |
562 | */ | |
563 | //@{ | |
564 | ||
565 | /** | |
566 | Called to log a new record. | |
567 | ||
568 | Any log message created by wxLogXXX() functions is passed to this | |
569 | method of the active log target. The default implementation prepends | |
570 | the timestamp and, for some log levels (e.g. error and warning), the | |
571 | corresponding prefix to @a msg and passes it to DoLogTextAtLevel(). | |
572 | ||
573 | You may override this method to implement custom formatting of the | |
574 | log messages or to implement custom filtering of log messages (e.g. you | |
575 | could discard all log messages coming from the given source file). | |
576 | */ | |
577 | virtual void DoLogRecord(wxLogLevel level, | |
578 | const wxString& msg, | |
579 | const wxLogRecordInfo& info); | |
580 | ||
581 | /** | |
582 | Called to log the specified string at given level. | |
583 | ||
584 | The base class versions logs debug and trace messages on the system | |
585 | default debug output channel and passes all the other messages to | |
586 | DoLogText(). | |
587 | */ | |
588 | virtual void DoLogTextAtLevel(wxLogLevel level, const wxString& msg); | |
589 | ||
590 | /** | |
591 | Called to log the specified string. | |
592 | ||
593 | A simple implementation might just send the string to @c stdout or | |
594 | @c stderr or save it in a file (of course, the already existing | |
595 | wxLogStderr can be used for this). | |
596 | ||
597 | The base class version of this function asserts so it must be | |
598 | overridden if you don't override DoLogRecord() or DoLogTextAtLevel(). | |
599 | */ | |
600 | virtual void DoLogText(const wxString& msg); | |
601 | ||
602 | //@} | |
603 | }; | |
604 | ||
605 | ||
606 | ||
607 | /** | |
608 | @class wxLogChain | |
609 | ||
610 | This simple class allows you to chain log sinks, that is to install a new sink but | |
611 | keep passing log messages to the old one instead of replacing it completely as | |
612 | wxLog::SetActiveTarget does. | |
613 | ||
614 | It is especially useful when you want to divert the logs somewhere (for | |
615 | example to a file or a log window) but also keep showing the error messages | |
616 | using the standard dialogs as wxLogGui does by default. | |
617 | ||
618 | Example of usage: | |
619 | ||
620 | @code | |
621 | wxLogChain *logChain = new wxLogChain(new wxLogStderr); | |
622 | ||
623 | // all the log messages are sent to stderr and also processed as usually | |
624 | ... | |
625 | ||
626 | // don't delete logChain directly as this would leave a dangling | |
627 | // pointer as active log target, use SetActiveTarget() instead | |
628 | delete wxLog::SetActiveTarget(...something else or NULL...); | |
629 | @endcode | |
630 | ||
631 | @library{wxbase} | |
632 | @category{logging} | |
633 | */ | |
634 | class wxLogChain : public wxLog | |
635 | { | |
636 | public: | |
637 | /** | |
638 | Sets the specified @c logger (which may be @NULL) as the default log | |
639 | target but the log messages are also passed to the previous log target if any. | |
640 | */ | |
641 | wxLogChain(wxLog* logger); | |
642 | ||
643 | /** | |
644 | Destroys the previous log target. | |
645 | */ | |
646 | virtual ~wxLogChain(); | |
647 | ||
648 | /** | |
649 | Detaches the old log target so it won't be destroyed when the wxLogChain object | |
650 | is destroyed. | |
651 | */ | |
652 | void DetachOldLog(); | |
653 | ||
654 | /** | |
655 | Returns the pointer to the previously active log target (which may be @NULL). | |
656 | */ | |
657 | wxLog* GetOldLog() const; | |
658 | ||
659 | /** | |
660 | Returns @true if the messages are passed to the previously active log | |
661 | target (default) or @false if PassMessages() had been called. | |
662 | */ | |
663 | bool IsPassingMessages() const; | |
664 | ||
665 | /** | |
666 | By default, the log messages are passed to the previously active log target. | |
667 | Calling this function with @false parameter disables this behaviour | |
668 | (presumably temporarily, as you shouldn't use wxLogChain at all otherwise) and | |
669 | it can be reenabled by calling it again with @a passMessages set to @true. | |
670 | */ | |
671 | void PassMessages(bool passMessages); | |
672 | ||
673 | /** | |
674 | Sets another log target to use (may be @NULL). | |
675 | ||
676 | The log target specified in the wxLogChain(wxLog*) constructor or in a | |
677 | previous call to this function is deleted. | |
678 | This doesn't change the old log target value (the one the messages are | |
679 | forwarded to) which still remains the same as was active when wxLogChain | |
680 | object was created. | |
681 | */ | |
682 | void SetLog(wxLog* logger); | |
683 | }; | |
684 | ||
685 | ||
686 | ||
687 | /** | |
688 | @class wxLogInterposer | |
689 | ||
690 | A special version of wxLogChain which uses itself as the new log target. | |
691 | It forwards log messages to the previously installed one in addition to | |
692 | processing them itself. | |
693 | ||
694 | Unlike wxLogChain which is usually used directly as is, this class must be | |
695 | derived from to implement wxLog::DoLog and/or wxLog::DoLogString methods. | |
696 | ||
697 | wxLogInterposer destroys the previous log target in its destructor. | |
698 | If you don't want this to happen, use wxLogInterposerTemp instead. | |
699 | ||
700 | @library{wxbase} | |
701 | @category{logging} | |
702 | */ | |
703 | class wxLogInterposer : public wxLogChain | |
704 | { | |
705 | public: | |
706 | /** | |
707 | The default constructor installs this object as the current active log target. | |
708 | */ | |
709 | wxLogInterposer(); | |
710 | }; | |
711 | ||
712 | ||
713 | ||
714 | /** | |
715 | @class wxLogInterposerTemp | |
716 | ||
717 | A special version of wxLogChain which uses itself as the new log target. | |
718 | It forwards log messages to the previously installed one in addition to | |
719 | processing them itself. Unlike wxLogInterposer, it doesn't delete the old | |
720 | target which means it can be used to temporarily redirect log output. | |
721 | ||
722 | As per wxLogInterposer, this class must be derived from to implement | |
723 | wxLog::DoLog and/or wxLog::DoLogString methods. | |
724 | ||
725 | @library{wxbase} | |
726 | @category{logging} | |
727 | */ | |
728 | class wxLogInterposerTemp : public wxLogChain | |
729 | { | |
730 | public: | |
731 | /** | |
732 | The default constructor installs this object as the current active log target. | |
733 | */ | |
734 | wxLogInterposerTemp(); | |
735 | }; | |
736 | ||
737 | ||
738 | /** | |
739 | @class wxLogStream | |
740 | ||
741 | This class can be used to redirect the log messages to a C++ stream. | |
742 | ||
743 | Please note that this class is only available if wxWidgets was compiled with | |
744 | the standard iostream library support (@c wxUSE_STD_IOSTREAM must be on). | |
745 | ||
746 | @library{wxbase} | |
747 | @category{logging} | |
748 | ||
749 | @see wxLogStderr, wxStreamToTextRedirector | |
750 | */ | |
751 | class wxLogStream : public wxLog | |
752 | { | |
753 | public: | |
754 | /** | |
755 | Constructs a log target which sends all the log messages to the given | |
756 | output stream. If it is @NULL, the messages are sent to @c cerr. | |
757 | */ | |
758 | wxLogStream(std::ostream *ostr = NULL); | |
759 | }; | |
760 | ||
761 | ||
762 | ||
763 | /** | |
764 | @class wxLogStderr | |
765 | ||
766 | This class can be used to redirect the log messages to a C file stream (not to | |
767 | be confused with C++ streams). | |
768 | ||
769 | It is the default log target for the non-GUI wxWidgets applications which | |
770 | send all the output to @c stderr. | |
771 | ||
772 | @library{wxbase} | |
773 | @category{logging} | |
774 | ||
775 | @see wxLogStream | |
776 | */ | |
777 | class wxLogStderr : public wxLog | |
778 | { | |
779 | public: | |
780 | /** | |
781 | Constructs a log target which sends all the log messages to the given | |
782 | @c FILE. If it is @NULL, the messages are sent to @c stderr. | |
783 | */ | |
784 | wxLogStderr(FILE* fp = NULL); | |
785 | }; | |
786 | ||
787 | ||
788 | ||
789 | /** | |
790 | @class wxLogBuffer | |
791 | ||
792 | wxLogBuffer is a very simple implementation of log sink which simply collects | |
793 | all the logged messages in a string (except the debug messages which are output | |
794 | in the usual way immediately as we're presumably not interested in collecting | |
795 | them for later). The messages from different log function calls are separated | |
796 | by the new lines. | |
797 | ||
798 | All the messages collected so far can be shown to the user (and the current | |
799 | buffer cleared) by calling the overloaded wxLogBuffer::Flush method. | |
800 | ||
801 | @library{wxbase} | |
802 | @category{logging} | |
803 | */ | |
804 | class wxLogBuffer : public wxLog | |
805 | { | |
806 | public: | |
807 | /** | |
808 | The default ctor does nothing. | |
809 | */ | |
810 | wxLogBuffer(); | |
811 | ||
812 | /** | |
813 | Shows all the messages collected so far to the user (using a message box in the | |
814 | GUI applications or by printing them out to the console in text mode) and | |
815 | clears the internal buffer. | |
816 | */ | |
817 | virtual void Flush(); | |
818 | ||
819 | /** | |
820 | Returns the current buffer contains. Messages from different log function calls | |
821 | are separated with the new lines in the buffer. | |
822 | The buffer can be cleared by Flush() which will also show the current | |
823 | contents to the user. | |
824 | */ | |
825 | const wxString& GetBuffer() const; | |
826 | }; | |
827 | ||
828 | ||
829 | ||
830 | /** | |
831 | @class wxLogNull | |
832 | ||
833 | This class allows you to temporarily suspend logging. All calls to the log | |
834 | functions during the life time of an object of this class are just ignored. | |
835 | ||
836 | In particular, it can be used to suppress the log messages given by wxWidgets | |
837 | itself but it should be noted that it is rarely the best way to cope with this | |
838 | problem as @b all log messages are suppressed, even if they indicate a | |
839 | completely different error than the one the programmer wanted to suppress. | |
840 | ||
841 | For instance, the example of the overview: | |
842 | ||
843 | @code | |
844 | wxFile file; | |
845 | ||
846 | // wxFile.Open() normally complains if file can't be opened, we don't want it | |
847 | { | |
848 | wxLogNull logNo; | |
849 | if ( !file.Open("bar") ) | |
850 | ... process error ourselves ... | |
851 | } // ~wxLogNull called, old log sink restored | |
852 | ||
853 | wxLogMessage("..."); // ok | |
854 | @endcode | |
855 | ||
856 | would be better written as: | |
857 | ||
858 | @code | |
859 | wxFile file; | |
860 | ||
861 | // don't try to open file if it doesn't exist, we are prepared to deal with | |
862 | // this ourselves - but all other errors are not expected | |
863 | if ( wxFile::Exists("bar") ) | |
864 | { | |
865 | // gives an error message if the file couldn't be opened | |
866 | file.Open("bar"); | |
867 | } | |
868 | else | |
869 | { | |
870 | ... | |
871 | } | |
872 | @endcode | |
873 | ||
874 | ||
875 | @library{wxbase} | |
876 | @category{logging} | |
877 | */ | |
878 | class wxLogNull | |
879 | { | |
880 | public: | |
881 | /** | |
882 | Suspends logging. | |
883 | */ | |
884 | wxLogNull(); | |
885 | ||
886 | /** | |
887 | Resumes logging. | |
888 | */ | |
889 | ~wxLogNull(); | |
890 | }; | |
891 | ||
892 | #endif // wxUSE_BASE | |
893 | ||
894 | #if wxUSE_GUI | |
895 | ||
896 | /** | |
897 | @class wxLogWindow | |
898 | ||
899 | This class represents a background log window: to be precise, it collects all | |
900 | log messages in the log frame which it manages but also passes them on to the | |
901 | log target which was active at the moment of its creation. This allows you, for | |
902 | example, to show all the log messages in a frame but still continue to process | |
903 | them normally by showing the standard log dialog. | |
904 | ||
905 | @library{wxcore} | |
906 | @category{logging} | |
907 | ||
908 | @see wxLogTextCtrl | |
909 | */ | |
910 | class wxLogWindow : public wxLogInterposer | |
911 | { | |
912 | public: | |
913 | /** | |
914 | Creates the log frame window and starts collecting the messages in it. | |
915 | ||
916 | @param pParent | |
917 | The parent window for the log frame, may be @NULL | |
918 | @param szTitle | |
919 | The title for the log frame | |
920 | @param show | |
921 | @true to show the frame initially (default), otherwise | |
922 | Show() must be called later. | |
923 | @param passToOld | |
924 | @true to process the log messages normally in addition to logging them | |
925 | in the log frame (default), @false to only log them in the log frame. | |
926 | Note that if no targets were set using wxLog::SetActiveTarget() then | |
927 | wxLogWindow simply becomes the active one and messages won't be passed | |
928 | to other targets. | |
929 | */ | |
930 | wxLogWindow(wxWindow* pParent, const wxString& szTitle, bool show = true, | |
931 | bool passToOld = true); | |
932 | ||
933 | /** | |
934 | Returns the associated log frame window. This may be used to position or resize | |
935 | it but use Show() to show or hide it. | |
936 | */ | |
937 | wxFrame* GetFrame() const; | |
938 | ||
939 | /** | |
940 | Called if the user closes the window interactively, will not be | |
941 | called if it is destroyed for another reason (such as when program | |
942 | exits). | |
943 | ||
944 | Return @true from here to allow the frame to close, @false to | |
945 | prevent this from happening. | |
946 | ||
947 | @see OnFrameDelete() | |
948 | */ | |
949 | virtual bool OnFrameClose(wxFrame* frame); | |
950 | ||
951 | /** | |
952 | Called right before the log frame is going to be deleted: will | |
953 | always be called unlike OnFrameClose(). | |
954 | */ | |
955 | virtual void OnFrameDelete(wxFrame* frame); | |
956 | ||
957 | /** | |
958 | Shows or hides the frame. | |
959 | */ | |
960 | void Show(bool show = true); | |
961 | }; | |
962 | ||
963 | ||
964 | ||
965 | /** | |
966 | @class wxLogGui | |
967 | ||
968 | This is the default log target for the GUI wxWidgets applications. | |
969 | ||
970 | Please see @ref overview_log_customize for explanation of how to change the | |
971 | default log target. | |
972 | ||
973 | An object of this class is used by default to show the log messages created | |
974 | by using wxLogMessage(), wxLogError() and other logging functions. It | |
975 | doesn't display the messages logged by them immediately however but | |
976 | accumulates all messages logged during an event handler execution and then | |
977 | shows them all at once when its Flush() method is called during the idle | |
978 | time processing. This has the important advantage of showing only a single | |
979 | dialog to the user even if several messages were logged because of a single | |
980 | error as it often happens (e.g. a low level function could log a message | |
981 | because it failed to open a file resulting in its caller logging another | |
982 | message due to the failure of higher level operation requiring the use of | |
983 | this file). If you need to force the display of all previously logged | |
984 | messages immediately you can use wxLog::FlushActive() to force the dialog | |
985 | display. | |
986 | ||
987 | Also notice that if an error message is logged when several informative | |
988 | messages had been already logged before, the informative messages are | |
989 | discarded on the assumption that they are not useful -- and may be | |
990 | confusing and hence harmful -- any more after the error. The warning | |
991 | and error messages are never discarded however and any informational | |
992 | messages logged after the first error one are also kept (as they may | |
993 | contain information about the error recovery). You may override DoLog() | |
994 | method to change this behaviour. | |
995 | ||
996 | At any rate, it is possible that that several messages were accumulated | |
997 | before this class Flush() method is called. If this is the case, Flush() | |
998 | uses a custom dialog which shows the last message directly and allows the | |
999 | user to view the previously logged ones by expanding the "Details" | |
1000 | wxCollapsiblePane inside it. This custom dialog also provides the buttons | |
1001 | for copying the log messages to the clipboard and saving them to a file. | |
1002 | ||
1003 | However if only a single message is present when Flush() is called, just a | |
1004 | wxMessageBox() is used to show it. This has the advantage of being closer | |
1005 | to the native behaviour but it doesn't give the user any possibility to | |
1006 | copy or save the message (except for the recent Windows versions where @c | |
1007 | Ctrl-C may be pressed in the message box to copy its contents to the | |
1008 | clipboard) so you may want to override DoShowSingleLogMessage() to | |
1009 | customize wxLogGui -- the dialogs sample shows how to do this. | |
1010 | ||
1011 | @library{wxcore} | |
1012 | @category{logging} | |
1013 | */ | |
1014 | class wxLogGui : public wxLog | |
1015 | { | |
1016 | public: | |
1017 | /** | |
1018 | Default constructor. | |
1019 | */ | |
1020 | wxLogGui(); | |
1021 | ||
1022 | /** | |
1023 | Presents the accumulated log messages, if any, to the user. | |
1024 | ||
1025 | This method is called during the idle time and should show any messages | |
1026 | accumulated in wxLogGui#m_aMessages field to the user. | |
1027 | */ | |
1028 | virtual void Flush(); | |
1029 | ||
1030 | protected: | |
1031 | /** | |
1032 | Returns the appropriate title for the dialog. | |
1033 | ||
1034 | The title is constructed from wxApp::GetAppDisplayName() and the | |
1035 | severity string (e.g. "error" or "warning") appropriate for the current | |
1036 | wxLogGui#m_bErrors and wxLogGui#m_bWarnings values. | |
1037 | */ | |
1038 | wxString GetTitle() const; | |
1039 | ||
1040 | /** | |
1041 | Returns wxICON_ERROR, wxICON_WARNING or wxICON_INFORMATION depending on | |
1042 | the current maximal severity. | |
1043 | ||
1044 | This value is suitable to be used in the style parameter of | |
1045 | wxMessageBox() function. | |
1046 | */ | |
1047 | int GetSeverityIcon() const; | |
1048 | ||
1049 | /** | |
1050 | Forgets all the currently stored messages. | |
1051 | ||
1052 | If you override Flush() (and don't call the base class version), you | |
1053 | must call this method to avoid messages being logged over and over | |
1054 | again. | |
1055 | */ | |
1056 | void Clear(); | |
1057 | ||
1058 | ||
1059 | /** | |
1060 | All currently accumulated messages. | |
1061 | ||
1062 | This array may be empty if no messages were logged. | |
1063 | ||
1064 | @see m_aSeverity, m_aTimes | |
1065 | */ | |
1066 | wxArrayString m_aMessages; | |
1067 | ||
1068 | /** | |
1069 | The severities of each logged message. | |
1070 | ||
1071 | This array is synchronized with wxLogGui#m_aMessages, i.e. the n-th | |
1072 | element of this array corresponds to the severity of the n-th message. | |
1073 | The possible severity values are @c wxLOG_XXX constants, e.g. | |
1074 | wxLOG_Error, wxLOG_Warning, wxLOG_Message etc. | |
1075 | */ | |
1076 | wxArrayInt m_aSeverity; | |
1077 | ||
1078 | /** | |
1079 | The time stamps of each logged message. | |
1080 | ||
1081 | The elements of this array are time_t values corresponding to the time | |
1082 | when the message was logged. | |
1083 | */ | |
1084 | wxArrayLong m_aTimes; | |
1085 | ||
1086 | /** | |
1087 | True if there any error messages. | |
1088 | */ | |
1089 | bool m_bErrors; | |
1090 | ||
1091 | /** | |
1092 | True if there any warning messages. | |
1093 | ||
1094 | If both wxLogGui#m_bErrors and this member are false, there are only | |
1095 | informational messages to be shown. | |
1096 | */ | |
1097 | bool m_bWarnings; | |
1098 | ||
1099 | /** | |
1100 | True if there any messages to be shown to the user. | |
1101 | ||
1102 | This variable is used instead of simply checking whether | |
1103 | wxLogGui#m_aMessages array is empty to allow blocking further calls to | |
1104 | Flush() while a log dialog is already being shown, even if the messages | |
1105 | array hasn't been emptied yet. | |
1106 | */ | |
1107 | bool m_bHasMessages; | |
1108 | ||
1109 | private: | |
1110 | /** | |
1111 | Method called by Flush() to show a single log message. | |
1112 | ||
1113 | This function can be overridden to show the message in a different way. | |
1114 | By default a simple wxMessageBox() call is used. | |
1115 | ||
1116 | @param message | |
1117 | The message to show (it can contain multiple lines). | |
1118 | @param title | |
1119 | The suggested title for the dialog showing the message, see | |
1120 | GetTitle(). | |
1121 | @param style | |
1122 | One of @c wxICON_XXX constants, see GetSeverityIcon(). | |
1123 | */ | |
1124 | virtual void DoShowSingleLogMessage(const wxString& message, | |
1125 | const wxString& title, | |
1126 | int style); | |
1127 | ||
1128 | /** | |
1129 | Method called by Flush() to show multiple log messages. | |
1130 | ||
1131 | This function can be overridden to show the messages in a different way. | |
1132 | By default a special log dialog showing the most recent message and | |
1133 | allowing the user to expand it to view the previously logged ones is | |
1134 | used. | |
1135 | ||
1136 | @param messages | |
1137 | Array of messages to show; it contains more than one element. | |
1138 | @param severities | |
1139 | Array of message severities containing @c wxLOG_XXX values. | |
1140 | @param times | |
1141 | Array of time_t values indicating when each message was logged. | |
1142 | @param title | |
1143 | The suggested title for the dialog showing the message, see | |
1144 | GetTitle(). | |
1145 | @param style | |
1146 | One of @c wxICON_XXX constants, see GetSeverityIcon(). | |
1147 | */ | |
1148 | virtual void DoShowMultipleLogMessages(const wxArrayString& messages, | |
1149 | const wxArrayInt& severities, | |
1150 | const wxArrayLong& times, | |
1151 | const wxString& title, | |
1152 | int style); | |
1153 | }; | |
1154 | ||
1155 | ||
1156 | ||
1157 | /** | |
1158 | @class wxLogTextCtrl | |
1159 | ||
1160 | Using these target all the log messages can be redirected to a text control. | |
1161 | The text control must have been created with @c wxTE_MULTILINE style by the | |
1162 | caller previously. | |
1163 | ||
1164 | @library{wxcore} | |
1165 | @category{logging} | |
1166 | ||
1167 | @see wxTextCtrl, wxStreamToTextRedirector | |
1168 | */ | |
1169 | class wxLogTextCtrl : public wxLog | |
1170 | { | |
1171 | public: | |
1172 | /** | |
1173 | Constructs a log target which sends all the log messages to the given text | |
1174 | control. The @a textctrl parameter cannot be @NULL. | |
1175 | */ | |
1176 | wxLogTextCtrl(wxTextCtrl* pTextCtrl); | |
1177 | }; | |
1178 | ||
1179 | ||
1180 | #endif // wxUSE_GUI | |
1181 | ||
1182 | #if wxUSE_BASE | |
1183 | ||
1184 | ||
1185 | // ============================================================================ | |
1186 | // Global functions/macros | |
1187 | // ============================================================================ | |
1188 | ||
1189 | /** @addtogroup group_funcmacro_log */ | |
1190 | //@{ | |
1191 | ||
1192 | /** | |
1193 | This function shows a message to the user in a safe way and should be safe | |
1194 | to call even before the application has been initialized or if it is | |
1195 | currently in some other strange state (for example, about to crash). Under | |
1196 | Windows this function shows a message box using a native dialog instead of | |
1197 | wxMessageBox() (which might be unsafe to call), elsewhere it simply prints | |
1198 | the message to the standard output using the title as prefix. | |
1199 | ||
1200 | @param title | |
1201 | The title of the message box shown to the user or the prefix of the | |
1202 | message string. | |
1203 | @param text | |
1204 | The text to show to the user. | |
1205 | ||
1206 | @see wxLogFatalError() | |
1207 | ||
1208 | @header{wx/log.h} | |
1209 | */ | |
1210 | void wxSafeShowMessage(const wxString& title, const wxString& text); | |
1211 | ||
1212 | /** | |
1213 | Returns the error code from the last system call. This function uses | |
1214 | @c errno on Unix platforms and @c GetLastError under Win32. | |
1215 | ||
1216 | @see wxSysErrorMsg(), wxLogSysError() | |
1217 | ||
1218 | @header{wx/log.h} | |
1219 | */ | |
1220 | unsigned long wxSysErrorCode(); | |
1221 | ||
1222 | /** | |
1223 | Returns the error message corresponding to the given system error code. If | |
1224 | @a errCode is 0 (default), the last error code (as returned by | |
1225 | wxSysErrorCode()) is used. | |
1226 | ||
1227 | @see wxSysErrorCode(), wxLogSysError() | |
1228 | ||
1229 | @header{wx/log.h} | |
1230 | */ | |
1231 | const wxChar* wxSysErrorMsg(unsigned long errCode = 0); | |
1232 | ||
1233 | //@} | |
1234 | ||
1235 | /** @addtogroup group_funcmacro_log */ | |
1236 | //@{ | |
1237 | /** | |
1238 | Logs a message with the given wxLogLevel. | |
1239 | E.g. using @c wxLOG_Message as first argument, this function behaves like wxLogMessage(). | |
1240 | ||
1241 | @header{wx/log.h} | |
1242 | */ | |
1243 | void wxLogGeneric(wxLogLevel level, const char* formatString, ... ); | |
1244 | void wxVLogGeneric(wxLogLevel level, const char* formatString, va_list argPtr); | |
1245 | //@} | |
1246 | ||
1247 | /** @addtogroup group_funcmacro_log */ | |
1248 | //@{ | |
1249 | /** | |
1250 | For all normal, informational messages. They also appear in a message box | |
1251 | by default (but it can be changed). | |
1252 | ||
1253 | @header{wx/log.h} | |
1254 | */ | |
1255 | void wxLogMessage(const char* formatString, ... ); | |
1256 | void wxVLogMessage(const char* formatString, va_list argPtr); | |
1257 | //@} | |
1258 | ||
1259 | /** @addtogroup group_funcmacro_log */ | |
1260 | //@{ | |
1261 | /** | |
1262 | For verbose output. Normally, it is suppressed, but might be activated if | |
1263 | the user wishes to know more details about the program progress (another, | |
1264 | but possibly confusing name for the same function could be @c wxLogInfo). | |
1265 | ||
1266 | @header{wx/log.h} | |
1267 | */ | |
1268 | void wxLogVerbose(const char* formatString, ... ); | |
1269 | void wxVLogVerbose(const char* formatString, va_list argPtr); | |
1270 | //@} | |
1271 | ||
1272 | /** @addtogroup group_funcmacro_log */ | |
1273 | //@{ | |
1274 | /** | |
1275 | For warnings - they are also normally shown to the user, but don't | |
1276 | interrupt the program work. | |
1277 | ||
1278 | @header{wx/log.h} | |
1279 | */ | |
1280 | void wxLogWarning(const char* formatString, ... ); | |
1281 | void wxVLogWarning(const char* formatString, va_list argPtr); | |
1282 | //@} | |
1283 | ||
1284 | /** @addtogroup group_funcmacro_log */ | |
1285 | //@{ | |
1286 | /** | |
1287 | Like wxLogError(), but also terminates the program with the exit code 3. | |
1288 | Using @e abort() standard function also terminates the program with this | |
1289 | exit code. | |
1290 | ||
1291 | @header{wx/log.h} | |
1292 | */ | |
1293 | void wxLogFatalError(const char* formatString, ... ); | |
1294 | void wxVLogFatalError(const char* formatString, va_list argPtr); | |
1295 | //@} | |
1296 | ||
1297 | /** @addtogroup group_funcmacro_log */ | |
1298 | //@{ | |
1299 | /** | |
1300 | The functions to use for error messages, i.e. the messages that must be | |
1301 | shown to the user. The default processing is to pop up a message box to | |
1302 | inform the user about it. | |
1303 | ||
1304 | @header{wx/log.h} | |
1305 | */ | |
1306 | void wxLogError(const char* formatString, ... ); | |
1307 | void wxVLogError(const char* formatString, va_list argPtr); | |
1308 | //@} | |
1309 | ||
1310 | /** @addtogroup group_funcmacro_log */ | |
1311 | //@{ | |
1312 | /** | |
1313 | Log a message at @c wxLOG_Trace log level (see ::wxLogLevelValues enum). | |
1314 | ||
1315 | Notice that the use of trace masks is not recommended any more as setting | |
1316 | the log components (please see @ref overview_log_enable) provides a way to | |
1317 | do the same thing for log messages of any level, and not just the tracing | |
1318 | ones. | |
1319 | ||
1320 | Like wxLogDebug(), trace functions only do something in debug builds and | |
1321 | expand to nothing in the release one. The reason for making it a separate | |
1322 | function is that usually there are a lot of trace messages, so it might | |
1323 | make sense to separate them from other debug messages. | |
1324 | ||
1325 | Trace messages can be separated into different categories; these functions in facts | |
1326 | only log the message if the given @a mask is currently enabled in wxLog. | |
1327 | This lets you selectively trace only some operations and not others by enabling the | |
1328 | desired trace masks with wxLog::AddTraceMask() or by setting the | |
1329 | @ref overview_envvars "@c WXTRACE environment variable". | |
1330 | ||
1331 | The predefined string trace masks used by wxWidgets are: | |
1332 | ||
1333 | @beginDefList | |
1334 | @itemdef{ wxTRACE_MemAlloc, Trace memory allocation (new/delete) } | |
1335 | @itemdef{ wxTRACE_Messages, Trace window messages/X callbacks } | |
1336 | @itemdef{ wxTRACE_ResAlloc, Trace GDI resource allocation } | |
1337 | @itemdef{ wxTRACE_RefCount, Trace various ref counting operations } | |
1338 | @itemdef{ wxTRACE_OleCalls, Trace OLE method calls (Win32 only) } | |
1339 | @endDefList | |
1340 | ||
1341 | @header{wx/log.h} | |
1342 | */ | |
1343 | void wxLogTrace(const char* mask, const char* formatString, ... ); | |
1344 | void wxVLogTrace(const char* mask, const char* formatString, va_list argPtr); | |
1345 | //@} | |
1346 | ||
1347 | /** @addtogroup group_funcmacro_log */ | |
1348 | //@{ | |
1349 | /** | |
1350 | Like wxLogDebug(), trace functions only do something in debug builds and | |
1351 | expand to nothing in the release one. The reason for making it a separate | |
1352 | function is that usually there are a lot of trace messages, so it might | |
1353 | make sense to separate them from other debug messages. | |
1354 | ||
1355 | @deprecated | |
1356 | This version of wxLogTrace() only logs the message if all the bits | |
1357 | corresponding to the @a mask are set in the wxLog trace mask which can be | |
1358 | set by calling wxLog::SetTraceMask(). This version is less flexible than | |
1359 | wxLogTrace(const char*,const char*,...) because it doesn't allow defining | |
1360 | the user trace masks easily. This is why it is deprecated in favour of | |
1361 | using string trace masks. | |
1362 | ||
1363 | The following bitmasks are defined for wxTraceMask: | |
1364 | ||
1365 | @beginDefList | |
1366 | @itemdef{ wxTraceMemAlloc, Trace memory allocation (new/delete) } | |
1367 | @itemdef{ wxTraceMessages, Trace window messages/X callbacks } | |
1368 | @itemdef{ wxTraceResAlloc, Trace GDI resource allocation } | |
1369 | @itemdef{ wxTraceRefCount, Trace various ref counting operations } | |
1370 | @itemdef{ wxTraceOleCalls, Trace OLE method calls (Win32 only) } | |
1371 | @endDefList | |
1372 | ||
1373 | @header{wx/log.h} | |
1374 | */ | |
1375 | void wxLogTrace(wxTraceMask mask, const char* formatString, ... ); | |
1376 | void wxVLogTrace(wxTraceMask mask, const char* formatString, va_list argPtr); | |
1377 | //@} | |
1378 | ||
1379 | /** @addtogroup group_funcmacro_log */ | |
1380 | //@{ | |
1381 | /** | |
1382 | The right functions for debug output. They only do something in debug mode | |
1383 | (when the preprocessor symbol @c __WXDEBUG__ is defined) and expand to | |
1384 | nothing in release mode (otherwise). | |
1385 | ||
1386 | @header{wx/log.h} | |
1387 | */ | |
1388 | void wxLogDebug(const char* formatString, ... ); | |
1389 | void wxVLogDebug(const char* formatString, va_list argPtr); | |
1390 | //@} | |
1391 | ||
1392 | /** @addtogroup group_funcmacro_log */ | |
1393 | //@{ | |
1394 | /** | |
1395 | Messages logged by this function will appear in the statusbar of the | |
1396 | @a frame or of the top level application window by default (i.e. when using | |
1397 | the second version of the functions). | |
1398 | ||
1399 | If the target frame doesn't have a statusbar, the message will be lost. | |
1400 | ||
1401 | @header{wx/log.h} | |
1402 | */ | |
1403 | void wxLogStatus(wxFrame* frame, const char* formatString, ... ); | |
1404 | void wxVLogStatus(wxFrame* frame, const char* formatString, va_list argPtr); | |
1405 | void wxLogStatus(const char* formatString, ... ); | |
1406 | void wxVLogStatus(const char* formatString, va_list argPtr); | |
1407 | //@} | |
1408 | ||
1409 | /** @addtogroup group_funcmacro_log */ | |
1410 | //@{ | |
1411 | /** | |
1412 | Mostly used by wxWidgets itself, but might be handy for logging errors | |
1413 | after system call (API function) failure. It logs the specified message | |
1414 | text as well as the last system error code (@e errno or @e GetLastError() | |
1415 | depending on the platform) and the corresponding error message. The second | |
1416 | form of this function takes the error code explicitly as the first | |
1417 | argument. | |
1418 | ||
1419 | @see wxSysErrorCode(), wxSysErrorMsg() | |
1420 | ||
1421 | @header{wx/log.h} | |
1422 | */ | |
1423 | void wxLogSysError(const char* formatString, ... ); | |
1424 | void wxVLogSysError(const char* formatString, va_list argPtr); | |
1425 | //@} | |
1426 | ||
1427 | /** @addtogroup group_funcmacro_debug */ | |
1428 | //@{ | |
1429 | ||
1430 | /** | |
1431 | @def wxDISABLE_DEBUG_LOGGING_IN_RELEASE_BUILD() | |
1432 | ||
1433 | Use this macro to disable logging at debug and trace levels in release | |
1434 | build when not using wxIMPLEMENT_APP(). | |
1435 | ||
1436 | @see wxDISABLE_DEBUG_SUPPORT(), | |
1437 | wxDISABLE_ASSERTS_IN_RELEASE_BUILD(), | |
1438 | @ref overview_debugging | |
1439 | ||
1440 | @since 2.9.1 | |
1441 | ||
1442 | @header{wx/log.h} | |
1443 | */ | |
1444 | #define wxDISABLE_DEBUG_LOGGING_IN_RELEASE_BUILD() | |
1445 | ||
1446 | //@} | |
1447 | ||
1448 | #endif // wxUSE_BASE |