]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/log.h
undo the last change as it results in buildbot configuration error
[wxWidgets.git] / interface / wx / log.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: log.h
e54c96f1 3// Purpose: interface of wxLogWindow
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
4a6665c6
FM
9
10/**
11 Different standard log levels (you may also define your own) used with
12 wxLog::OnLog() by standard wxLog functions wxLogError(), wxLogWarning(),
13 etc...
14*/
15enum wxLogLevelValues
16{
17 wxLOG_FatalError, //!< program can't continue, abort immediately
18 wxLOG_Error, //!< a serious error, user must be informed about it
19 wxLOG_Warning, //!< user is normally informed about it but may be ignored
20 wxLOG_Message, //!< normal message (i.e. normal output of a non GUI app)
21 wxLOG_Status, //!< informational: might go to the status line of GUI app
22 wxLOG_Info, //!< informational message (a.k.a. 'Verbose')
23 wxLOG_Debug, //!< never shown to the user, disabled in release mode
24 wxLOG_Trace, //!< trace messages are also only enabled in debug mode
25 wxLOG_Progress, //!< used for progress indicator (not yet)
26 wxLOG_User = 100, //!< user defined levels start here
27 wxLOG_Max = 10000
28};
29
4a6665c6
FM
30/**
31 The type used to specify a log level.
32
33 Default values of ::wxLogLevel used by wxWidgets are contained in the
34 ::wxLogLevelValues enumeration.
35*/
36typedef unsigned long wxLogLevel;
37
38
23324ae1
FM
39/**
40 @class wxLogWindow
7c913512 41
23324ae1
FM
42 This class represents a background log window: to be precise, it collects all
43 log messages in the log frame which it manages but also passes them on to the
3e6f95dc 44 log target which was active at the moment of its creation. This allows you, for
23324ae1
FM
45 example, to show all the log messages in a frame but still continue to process
46 them normally by showing the standard log dialog.
7c913512 47
23324ae1
FM
48 @library{wxbase}
49 @category{logging}
7c913512 50
e54c96f1 51 @see wxLogTextCtrl
23324ae1
FM
52*/
53class wxLogWindow : public wxLogInterposer
54{
55public:
56 /**
57 Creates the log frame window and starts collecting the messages in it.
3c4f71cc 58
f21dd16b 59 @param pParent
4cc4bfaf 60 The parent window for the log frame, may be @NULL
f21dd16b 61 @param szTitle
4cc4bfaf 62 The title for the log frame
7c913512 63 @param show
4cc4bfaf
FM
64 @true to show the frame initially (default), otherwise
65 Show() must be called later.
7c913512 66 @param passToOld
4cc4bfaf
FM
67 @true to process the log messages normally in addition to
68 logging them in the log frame (default), @false to only log them in the
69 log frame.
23324ae1 70 */
fadc2df6 71 wxLogWindow(wxWindow* pParent, const wxString& szTitle, bool show = true,
4cc4bfaf 72 bool passToOld = true);
23324ae1
FM
73
74 /**
75 Returns the associated log frame window. This may be used to position or resize
76 it but use Show() to show or hide it.
77 */
328f5751 78 wxFrame* GetFrame() const;
23324ae1
FM
79
80 /**
81 Called if the user closes the window interactively, will not be
82 called if it is destroyed for another reason (such as when program
83 exits).
6a93e794 84
23324ae1
FM
85 Return @true from here to allow the frame to close, @false to
86 prevent this from happening.
3c4f71cc 87
4cc4bfaf 88 @see OnFrameDelete()
23324ae1 89 */
43c48e1e 90 virtual bool OnFrameClose(wxFrame* frame);
23324ae1
FM
91
92 /**
93 Called immediately after the log frame creation allowing for
94 any extra initializations.
95 */
43c48e1e 96 virtual void OnFrameCreate(wxFrame* frame);
23324ae1
FM
97
98 /**
99 Called right before the log frame is going to be deleted: will
100 always be called unlike OnFrameClose().
101 */
43c48e1e 102 virtual void OnFrameDelete(wxFrame* frame);
23324ae1
FM
103
104 /**
105 Shows or hides the frame.
106 */
4cc4bfaf 107 void Show(bool show = true);
23324ae1
FM
108};
109
110
e54c96f1 111
23324ae1
FM
112/**
113 @class wxLogInterposerTemp
7c913512 114
6a93e794
FM
115 A special version of wxLogChain which uses itself as the new log target.
116 It forwards log messages to the previously installed one in addition to
117 processing them itself. Unlike wxLogInterposer, it doesn't delete the old
118 target which means it can be used to temporarily redirect log output.
7c913512 119
23324ae1 120 As per wxLogInterposer, this class must be derived from to implement
6a93e794 121 wxLog::DoLog and/or wxLog::DoLogString methods.
7c913512 122
23324ae1
FM
123 @library{wxbase}
124 @category{logging}
125*/
126class wxLogInterposerTemp : public wxLogChain
127{
128public:
129 /**
130 The default constructor installs this object as the current active log target.
131 */
6a93e794 132 wxLogInterposerTemp();
23324ae1
FM
133};
134
135
e54c96f1 136
23324ae1
FM
137/**
138 @class wxLogChain
7c913512 139
3e6f95dc 140 This simple class allows you to chain log sinks, that is to install a new sink but
23324ae1
FM
141 keep passing log messages to the old one instead of replacing it completely as
142 wxLog::SetActiveTarget does.
7c913512 143
23324ae1
FM
144 It is especially useful when you want to divert the logs somewhere (for
145 example to a file or a log window) but also keep showing the error messages
146 using the standard dialogs as wxLogGui does by default.
7c913512 147
23324ae1 148 Example of usage:
7c913512 149
23324ae1
FM
150 @code
151 wxLogChain *logChain = new wxLogChain(new wxLogStderr);
7c913512 152
23324ae1
FM
153 // all the log messages are sent to stderr and also processed as usually
154 ...
7c913512 155
23324ae1
FM
156 // don't delete logChain directly as this would leave a dangling
157 // pointer as active log target, use SetActiveTarget() instead
6bfc18d0 158 delete wxLog::SetActiveTarget(...something else or NULL...);
23324ae1 159 @endcode
7c913512 160
23324ae1
FM
161 @library{wxbase}
162 @category{logging}
163*/
164class wxLogChain : public wxLog
165{
166public:
167 /**
168 Sets the specified @c logger (which may be @NULL) as the default log
169 target but the log messages are also passed to the previous log target if any.
170 */
4cc4bfaf 171 wxLogChain(wxLog* logger);
23324ae1
FM
172
173 /**
174 Destroys the previous log target.
175 */
adaaa686 176 virtual ~wxLogChain();
23324ae1
FM
177
178 /**
179 Detaches the old log target so it won't be destroyed when the wxLogChain object
180 is destroyed.
181 */
182 void DetachOldLog();
183
184 /**
185 Returns the pointer to the previously active log target (which may be @NULL).
186 */
328f5751 187 wxLog* GetOldLog() const;
23324ae1
FM
188
189 /**
190 Returns @true if the messages are passed to the previously active log
6a93e794 191 target (default) or @false if PassMessages() had been called.
23324ae1 192 */
328f5751 193 bool IsPassingMessages() const;
23324ae1
FM
194
195 /**
196 By default, the log messages are passed to the previously active log target.
197 Calling this function with @false parameter disables this behaviour
198 (presumably temporarily, as you shouldn't use wxLogChain at all otherwise) and
4cc4bfaf 199 it can be reenabled by calling it again with @a passMessages set to @true.
23324ae1
FM
200 */
201 void PassMessages(bool passMessages);
202
203 /**
6a93e794
FM
204 Sets another log target to use (may be @NULL).
205
206 The log target specified in the wxLogChain(wxLog*) constructor or in a
207 previous call to this function is deleted.
23324ae1
FM
208 This doesn't change the old log target value (the one the messages are
209 forwarded to) which still remains the same as was active when wxLogChain
210 object was created.
211 */
4cc4bfaf 212 void SetLog(wxLog* logger);
23324ae1
FM
213};
214
215
e54c96f1 216
23324ae1
FM
217/**
218 @class wxLogGui
7c913512 219
5d815500
VZ
220 This is the default log target for the GUI wxWidgets applications.
221
222 Please see @ref overview_log_customize for explanation of how to change the
223 default log target.
224
225 An object of this class is used by default to show the log messages created
226 by using wxLogMessage(), wxLogError() and other logging functions. It
227 doesn't display the messages logged by them immediately however but
228 accumulates all messages logged during an event handler execution and then
229 shows them all at once when its Flush() method is called during the idle
230 time processing. This has the important advantage of showing only a single
231 dialog to the user even if several messages were logged because of a single
232 error as it often happens (e.g. a low level function could log a message
233 because it failed to open a file resulting in its caller logging another
234 message due to the failure of higher level operation requiring the use of
235 this file). If you need to force the display of all previously logged
236 messages immediately you can use wxLog::FlushActive() to force the dialog
237 display.
238
239 Also notice that if an error message is logged when several informative
240 messages had been already logged before, the informative messages are
241 discarded on the assumption that they are not useful -- and may be
242 confusing and hence harmful -- any more after the error. The warning
243 and error messages are never discarded however and any informational
244 messages logged after the first error one are also kept (as they may
245 contain information about the error recovery). You may override DoLog()
246 method to change this behaviour.
247
248 At any rate, it is possible that that several messages were accumulated
249 before this class Flush() method is called. If this is the case, Flush()
250 uses a custom dialog which shows the last message directly and allows the
251 user to view the previously logged ones by expanding the "Details"
252 wxCollapsiblePane inside it. This custom dialog also provides the buttons
253 for copying the log messages to the clipboard and saving them to a file.
254
255 However if only a single message is present when Flush() is called, just a
256 wxMessageBox() is used to show it. This has the advantage of being closer
257 to the native behaviour but it doesn't give the user any possibility to
258 copy or save the message (except for the recent Windows versions where @c
259 Ctrl-C may be pressed in the message box to copy its contents to the
260 clipboard) so you may want to override DoShowSingleMessage() to customize
261 wxLogGui -- the dialogs sample shows how to do this.
7c913512 262
5d815500 263 @library{wxcore}
23324ae1
FM
264 @category{logging}
265*/
266class wxLogGui : public wxLog
267{
268public:
269 /**
270 Default constructor.
271 */
272 wxLogGui();
5d815500
VZ
273
274 /**
275 Presents the accumulated log messages, if any, to the user.
276
277 This method is called during the idle time and should show any messages
278 accumulated in wxLogGui#m_aMessages field to the user.
279 */
280 virtual void Flush();
281
282protected:
283 /**
284 Returns the appropriate title for the dialog.
285
286 The title is constructed from wxApp::GetAppDisplayName() and the
287 severity string (e.g. "error" or "warning") appropriate for the current
288 wxLogGui#m_bErrors and wxLogGui#m_bWarnings values.
289 */
290 wxString GetTitle() const;
291
292 /**
293 Returns wxICON_ERROR, wxICON_WARNING or wxICON_INFORMATION depending on
294 the current maximal severity.
295
296 This value is suitable to be used in the style parameter of
297 wxMessageBox() function.
298 */
299 int GetSeverityIcon() const;
300
301 /**
302 Forgets all the currently stored messages.
303
304 If you override Flush() (and don't call the base class version), you
305 must call this method to avoid messages being logged over and over
306 again.
307 */
308 void Clear();
309
310
311 /**
312 Method called by Flush() to show a single log message.
313
314 This function can be overridden to show the message in a different way.
315 By default a simple wxMessageBox() call is used.
316
317 @param message
318 The message to show (it can contain multiple lines).
319 @param title
320 The suggested title for the dialog showing the message, see
321 GetTitle().
322 @param style
323 One of @c wxICON_XXX constants, see GetSeverityIcon().
324 */
325 virtual void DoShowSingleLogMessage(const wxString& message,
326 const wxString& title,
327 int style);
328
329 /**
330 Method called by Flush() to show multiple log messages.
331
332 This function can be overridden to show the messages in a different way.
333 By default a special log dialog showing the most recent message and
334 allowing the user to expand it to view the previously logged ones is
335 used.
336
337 @param messages
338 Array of messages to show; it contains more than one element.
339 @param severities
340 Array of message severities containing @c wxLOG_XXX values.
341 @param times
342 Array of time_t values indicating when each message was logged.
343 @param title
344 The suggested title for the dialog showing the message, see
345 GetTitle().
346 @param style
347 One of @c wxICON_XXX constants, see GetSeverityIcon().
348 */
349 virtual void DoShowMultipleLogMessages(const wxArrayString& messages,
350 const wxArrayInt& severities,
351 const wxArrayLong& times,
352 const wxString& title,
353 int style);
354
355
356 /**
357 All currently accumulated messages.
358
359 This array may be empty if no messages were logged.
360
361 @see m_aSeverity, m_aTimes
362 */
363 wxArrayString m_aMessages;
364
365 /**
366 The severities of each logged message.
367
368 This array is synchronized with wxLogGui#m_aMessages, i.e. the n-th
369 element of this array corresponds to the severity of the n-th message.
370 The possible severity values are @c wxLOG_XXX constants, e.g.
371 wxLOG_Error, wxLOG_Warning, wxLOG_Message etc.
372 */
373 wxArrayInt m_aSeverity;
374
375 /**
376 The time stamps of each logged message.
377
378 The elements of this array are time_t values corresponding to the time
379 when the message was logged.
380 */
381 wxArrayLong m_aTimes;
382
383 /**
384 True if there any error messages.
385 */
386 bool m_bErrors;
387
388 /**
389 True if there any warning messages.
390
391 If both wxLogGui#m_bErrors and this member are false, there are only
392 informational messages to be shown.
393 */
394 bool m_bWarnings;
395
396 /**
397 True if there any messages to be shown to the user.
398
399 This variable is used instead of simply checking whether
400 wxLogGui#m_aMessages array is empty to allow blocking further calls to
401 Flush() while a log dialog is already being shown, even if the messages
402 array hasn't been emptied yet.
403 */
404 bool m_bHasMessages;
23324ae1
FM
405};
406
407
e54c96f1 408
23324ae1
FM
409/**
410 @class wxLogStream
7c913512 411
23324ae1 412 This class can be used to redirect the log messages to a C++ stream.
7c913512 413
23324ae1
FM
414 Please note that this class is only available if wxWidgets was compiled with
415 the standard iostream library support (@c wxUSE_STD_IOSTREAM must be on).
7c913512 416
23324ae1
FM
417 @library{wxbase}
418 @category{logging}
7c913512 419
e54c96f1 420 @see wxLogStderr, wxStreamToTextRedirector
23324ae1
FM
421*/
422class wxLogStream : public wxLog
423{
424public:
425 /**
426 Constructs a log target which sends all the log messages to the given
427 output stream. If it is @NULL, the messages are sent to @c cerr.
428 */
0a98423e 429 wxLogStream(std::ostream *ostr = NULL);
23324ae1
FM
430};
431
432
e54c96f1 433
23324ae1
FM
434/**
435 @class wxLogStderr
7c913512 436
23324ae1 437 This class can be used to redirect the log messages to a C file stream (not to
a44f3b5a
FM
438 be confused with C++ streams).
439
440 It is the default log target for the non-GUI wxWidgets applications which
441 send all the output to @c stderr.
7c913512 442
23324ae1
FM
443 @library{wxbase}
444 @category{logging}
7c913512 445
e54c96f1 446 @see wxLogStream
23324ae1
FM
447*/
448class wxLogStderr : public wxLog
449{
450public:
451 /**
452 Constructs a log target which sends all the log messages to the given
453 @c FILE. If it is @NULL, the messages are sent to @c stderr.
454 */
8067ee11 455 wxLogStderr(FILE* fp = NULL);
23324ae1
FM
456};
457
458
e54c96f1 459
23324ae1
FM
460/**
461 @class wxLogBuffer
7c913512 462
23324ae1
FM
463 wxLogBuffer is a very simple implementation of log sink which simply collects
464 all the logged messages in a string (except the debug messages which are output
465 in the usual way immediately as we're presumably not interested in collecting
466 them for later). The messages from different log function calls are separated
467 by the new lines.
7c913512 468
23324ae1 469 All the messages collected so far can be shown to the user (and the current
6a93e794 470 buffer cleared) by calling the overloaded wxLogBuffer::Flush method.
7c913512 471
23324ae1 472 @library{wxbase}
3e6f95dc 473 @category{logging}
23324ae1
FM
474*/
475class wxLogBuffer : public wxLog
476{
477public:
435c1bc4
FM
478 /**
479 The default ctor does nothing.
480 */
481 wxLogBuffer();
482
23324ae1
FM
483 /**
484 Shows all the messages collected so far to the user (using a message box in the
485 GUI applications or by printing them out to the console in text mode) and
486 clears the internal buffer.
487 */
488 virtual void Flush();
489
490 /**
491 Returns the current buffer contains. Messages from different log function calls
492 are separated with the new lines in the buffer.
6a93e794
FM
493 The buffer can be cleared by Flush() which will also show the current
494 contents to the user.
23324ae1 495 */
43c48e1e 496 const wxString& GetBuffer() const;
23324ae1
FM
497};
498
499
e54c96f1 500
23324ae1
FM
501/**
502 @class wxLogInterposer
7c913512 503
6a93e794
FM
504 A special version of wxLogChain which uses itself as the new log target.
505 It forwards log messages to the previously installed one in addition to
23324ae1 506 processing them itself.
7c913512 507
6a93e794
FM
508 Unlike wxLogChain which is usually used directly as is, this class must be
509 derived from to implement wxLog::DoLog and/or wxLog::DoLogString methods.
7c913512 510
6a93e794
FM
511 wxLogInterposer destroys the previous log target in its destructor.
512 If you don't want this to happen, use wxLogInterposerTemp instead.
7c913512 513
23324ae1
FM
514 @library{wxbase}
515 @category{logging}
516*/
517class wxLogInterposer : public wxLogChain
518{
519public:
520 /**
521 The default constructor installs this object as the current active log target.
522 */
6a93e794 523 wxLogInterposer();
23324ae1
FM
524};
525
526
e54c96f1 527
23324ae1
FM
528/**
529 @class wxLogTextCtrl
7c913512 530
23324ae1
FM
531 Using these target all the log messages can be redirected to a text control.
532 The text control must have been created with @c wxTE_MULTILINE style by the
533 caller previously.
7c913512 534
23324ae1
FM
535 @library{wxbase}
536 @category{logging}
7c913512 537
e54c96f1 538 @see wxTextCtrl, wxStreamToTextRedirector
23324ae1
FM
539*/
540class wxLogTextCtrl : public wxLog
541{
542public:
543 /**
544 Constructs a log target which sends all the log messages to the given text
4cc4bfaf 545 control. The @a textctrl parameter cannot be @NULL.
23324ae1 546 */
8067ee11 547 wxLogTextCtrl(wxTextCtrl* pTextCtrl);
23324ae1
FM
548};
549
550
e54c96f1 551
23324ae1
FM
552/**
553 @class wxLog
7c913512 554
23324ae1 555 wxLog class defines the interface for the @e log targets used by wxWidgets
3e6f95dc 556 logging functions as explained in the @ref overview_log.
23324ae1
FM
557 The only situations when you need to directly use this class is when you want
558 to derive your own log target because the existing ones don't satisfy your
559 needs. Another case is if you wish to customize the behaviour of the standard
560 logging classes (all of which respect the wxLog settings): for example, set
561 which trace messages are logged and which are not or change (or even remove
562 completely) the timestamp on the messages.
7c913512 563
23324ae1
FM
564 Otherwise, it is completely hidden behind the @e wxLogXXX() functions and
565 you may not even know about its existence.
7c913512 566
a44f3b5a
FM
567 @note For console-mode applications, the default target is wxLogStderr, so
568 that all @e wxLogXXX() functions print on @c stderr when @c wxUSE_GUI = 0.
569
6a93e794
FM
570
571 @section log_derivingyours Deriving your own log target
572
573 There are two functions which must be implemented by any derived class to
574 actually process the log messages: DoLog() and DoLogString().
575 The second function receives a string which just has to be output in some way
576 and the easiest way to write a new log target is to override just this function
577 in the derived class.
578
579 If more control over the output format is needed, then the first function must
580 be overridden which allows to construct custom messages depending on the log level
581 or even do completely different things depending on the message severity
582 (for example, throw away all messages except warnings and errors, show warnings
583 on the screen and forward the error messages to the user's (or programmer's) cell
584 phone - maybe depending on whether the timestamp tells us if it is day or
585 night in the current time zone).
586
587 There also functions to support message buffering. Why are they needed?
588 Some of wxLog implementations, most notably the standard wxLogGui class,
589 buffer the messages (for example, to avoid showing the user a zillion of modal
590 message boxes one after another -- which would be really annoying).
591
592 Flush() shows them all and clears the buffer contents.
593 This function doesn't do anything if the buffer is already empty.
594
595 See also:
596 @li Flush()
597 @li FlushActive()
598
599
600 @section log_tracemasks Using trace masks
601
602 The functions below allow some limited customization of wxLog behaviour
603 without writing a new log target class (which, aside from being a matter of
604 several minutes, allows you to do anything you want).
605 The verbose messages are the trace messages which are not disabled in the
606 release mode and are generated by wxLogVerbose().
607 They are not normally shown to the user because they present little interest,
608 but may be activated, for example, in order to help the user find some program
609 problem.
610
34085a0d
VZ
611 As for the (real) trace messages, their handling depends on the currently
612 enabled trace masks: if AddTraceMask() was called for the mask of the given
613 message, it will be logged, otherwise nothing happens.
6a93e794 614
6a93e794 615 For example,
6a93e794
FM
616 @code
617 wxLogTrace( wxTRACE_OleCalls, "IFoo::Bar() called" );
618 @endcode
619
620 will log the message if it was preceded by:
621
622 @code
623 wxLog::AddTraceMask( wxTRACE_OleCalls);
624 @endcode
625
6a93e794
FM
626 The standard trace masks are given in wxLogTrace() documentation.
627
628 Finally, the @e wxLog::DoLog() function automatically prepends a time stamp
629 to all the messages. The format of the time stamp may be changed: it can be
630 any string with % specifications fully described in the documentation of the
631 standard @e strftime() function. For example, the default format is
632 "[%d/%b/%y %H:%M:%S] " which gives something like "[17/Sep/98 22:10:16] "
633 (without quotes) for the current date. Setting an empty string as the time
bce9df55
FM
634 format or calling the shortcut wxLog::DisableTimestamp(), disables timestamping
635 of the messages completely.
6a93e794
FM
636
637 See also
638 @li AddTraceMask()
639 @li RemoveTraceMask()
640 @li ClearTraceMasks()
641 @li GetTraceMasks()
642 @li IsAllowedTraceMask()
643 @li SetVerbose()
644 @li GetVerbose()
645 @li SetTimestamp()
646 @li GetTimestamp()
647 @li SetTraceMask()
648 @li GetTraceMask()
649 @li SetRepetitionCounting()
650 @li GetRepetitionCounting()
651
a44f3b5a
FM
652 @note
653 Timestamping is disabled for Visual C++ users in debug builds by
6a93e794
FM
654 default because otherwise it would be impossible to directly go to the line
655 from which the log message was generated by simply clicking in the debugger
656 window on the corresponding error message. If you wish to enable it, please
657 use SetTimestamp() explicitly.
658
659
660 @section log_target Manipulating the log target
661
662 The functions in this section work with and manipulate the active log
663 target. The OnLog() is called by the @e wxLogXXX() functions
664 and invokes the DoLog() of the active log target if any.
665
666 Get/Set methods are used to install/query the current active target and,
667 finally, DontCreateOnDemand() disables the automatic creation of a standard
668 log target if none actually exists. It is only useful when the application
669 is terminating and shouldn't be used in other situations because it may
670 easily lead to a loss of messages.
671
672 See also:
673 @li OnLog()
674 @li GetActiveTarget()
675 @li SetActiveTarget()
676 @li DontCreateOnDemand()
677 @li Suspend()
678 @li Resume()
679
3c4f71cc 680
5bc128d6
RR
681 @library{wxcore}
682 @category{logging}
3c4f71cc 683
3e6f95dc 684 @see @ref overview_log
5bc128d6
RR
685*/
686class wxLog
687{
688public:
689 /**
6a93e794 690 Add the @a mask to the list of allowed masks for wxLogTrace().
3c4f71cc 691
5bc128d6
RR
692 @see RemoveTraceMask(), GetTraceMasks()
693 */
694 static void AddTraceMask(const wxString& mask);
3c4f71cc 695
5bc128d6 696 /**
6a93e794 697 Removes all trace masks previously set with AddTraceMask().
3c4f71cc 698
5bc128d6
RR
699 @see RemoveTraceMask()
700 */
701 static void ClearTraceMasks();
3c4f71cc 702
23324ae1
FM
703 /**
704 Instructs wxLog to not create new log targets on the fly if there is none
705 currently. (Almost) for internal use only: it is supposed to be called by the
706 application shutdown code.
6a93e794
FM
707
708 Note that this function also calls ClearTraceMasks().
23324ae1
FM
709 */
710 static void DontCreateOnDemand();
711
712 /**
6a93e794
FM
713 Shows all the messages currently in buffer and clears it.
714 If the buffer is already empty, nothing happens.
23324ae1
FM
715 */
716 virtual void Flush();
717
718 /**
719 Flushes the current log target if any, does nothing if there is none.
3c4f71cc 720
4cc4bfaf 721 @see Flush()
23324ae1
FM
722 */
723 static void FlushActive();
724
725 /**
726 Returns the pointer to the active log target (may be @NULL).
727 */
4cc4bfaf 728 static wxLog* GetActiveTarget();
23324ae1
FM
729
730 /**
731 Returns the current log level limit.
732 */
733 static wxLogLevel GetLogLevel();
734
735 /**
736 Returns whether the repetition counting mode is enabled.
737 */
738 static bool GetRepetitionCounting();
739
740 /**
741 Returns the current timestamp format string.
742 */
382f12e4 743 static const wxString& GetTimestamp();
23324ae1
FM
744
745 /**
34085a0d 746 @deprecated
6a93e794 747 Returns the current trace mask, see Customization() section for details.
23324ae1
FM
748 */
749 static wxTraceMask GetTraceMask();
750
751 /**
752 Returns the currently allowed list of string trace masks.
3c4f71cc 753
4cc4bfaf 754 @see AddTraceMask().
23324ae1 755 */
382f12e4 756 static const wxArrayString& GetTraceMasks();
23324ae1
FM
757
758 /**
759 Returns whether the verbose mode is currently active.
760 */
761 static bool GetVerbose();
762
23324ae1 763 /**
6a93e794 764 Returns @true if the @a mask is one of allowed masks for wxLogTrace().
8067ee11 765
5bc128d6 766 See also: AddTraceMask(), RemoveTraceMask()
23324ae1
FM
767 */
768 static bool IsAllowedTraceMask(const wxString& mask);
769
23324ae1
FM
770 /**
771 Forwards the message at specified level to the @e DoLog() function of the
772 active log target if there is any, does nothing otherwise.
773 */
efce878a 774 static void OnLog(wxLogLevel level, const wxString& msg, time_t t);
23324ae1
FM
775
776 /**
4cc4bfaf 777 Remove the @a mask from the list of allowed masks for
e54c96f1 778 wxLogTrace().
6a93e794
FM
779
780 @see AddTraceMask()
23324ae1
FM
781 */
782 static void RemoveTraceMask(const wxString& mask);
783
784 /**
5d815500
VZ
785 Resumes logging previously suspended by a call to Suspend().
786 All messages logged in the meanwhile will be flushed soon.
23324ae1
FM
787 */
788 static void Resume();
789
790 /**
5d815500
VZ
791 Sets the specified log target as the active one.
792
793 Returns the pointer to the previous active log target (may be @NULL).
794 To suppress logging use a new instance of wxLogNull not @NULL. If the
795 active log target is set to @NULL a new default log target will be
796 created when logging occurs.
23324ae1 797 */
4cc4bfaf 798 static wxLog* SetActiveTarget(wxLog* logtarget);
23324ae1
FM
799
800 /**
4a6665c6
FM
801 Specifies that log messages with level greater (numerically) than
802 @a logLevel should be ignored and not sent to the active log target.
23324ae1
FM
803 */
804 static void SetLogLevel(wxLogLevel logLevel);
805
806 /**
807 Enables logging mode in which a log message is logged once, and in case exactly
7c913512 808 the same message successively repeats one or more times, only the number of
23324ae1
FM
809 repetitions is logged.
810 */
4cc4bfaf 811 static void SetRepetitionCounting(bool repetCounting = true);
23324ae1
FM
812
813 /**
814 Sets the timestamp format prepended by the default log targets to all
815 messages. The string may contain any normal characters as well as %
816 prefixed format specificators, see @e strftime() manual for details.
817 Passing an empty string to this function disables message time stamping.
818 */
819 static void SetTimestamp(const wxString& format);
820
bce9df55
FM
821 /**
822 Disables time stamping of the log messages.
823
824 @since 2.9.0
825 */
826 static void DisableTimestamp();
827
23324ae1 828 /**
34085a0d
VZ
829 @deprecated
830 Sets the trace mask, see @ref log_tracemasks section for details.
23324ae1
FM
831 */
832 static void SetTraceMask(wxTraceMask mask);
833
834 /**
835 Activates or deactivates verbose mode in which the verbose messages are
836 logged as the normal ones instead of being silently dropped.
837 */
4cc4bfaf 838 static void SetVerbose(bool verbose = true);
23324ae1
FM
839
840 /**
6a93e794
FM
841 Suspends the logging until Resume() is called.
842
843 Note that the latter must be called the same number of times as the former
844 to undo it, i.e. if you call Suspend() twice you must call Resume() twice as well.
845
23324ae1
FM
846 Note that suspending the logging means that the log sink won't be be flushed
847 periodically, it doesn't have any effect if the current log target does the
6a93e794
FM
848 logging immediately without waiting for Flush() to be called (the standard
849 GUI log target only shows the log dialog when it is flushed, so Suspend()
850 works as expected with it).
3c4f71cc 851
4cc4bfaf 852 @see Resume(), wxLogNull
23324ae1
FM
853 */
854 static void Suspend();
5e6e278d 855
efce878a
VZ
856 /**
857 Log the given message.
858
859 This function should only be called from the DoLog() implementations in
860 the derived classes (which can't call wxLog::DoLog() directly as it is
861 protected), it should not be used for logging new messages which can be
862 only sent to the currently active logger using OnLog() which also
863 checks if the logging (for this level) is enabled while this method
864 just directly calls DoLog().
865
866 Example of use of this class from wxLogChain:
867 @code
868 void wxLogChain::DoLog(wxLogLevel level, const wxString& msg, time_t t)
869 {
870 // let the previous logger show it
871 if ( m_logOld && IsPassingMessages() )
872 m_logOld->Log(level, msg, t);
873
874 // and also send it to the new one
875 if ( m_logNew && m_logNew != this )
876 m_logNew->Log(level, msg, t);
877 }
878 @endcode
879
880 @since 2.9.0
881 */
882 void Log(wxLogLevel level, const wxString& msg, time_t timestamp);
883
5e6e278d
FM
884protected:
885
886 /**
887 Called to process the message of the specified severity. @a msg is the text
888 of the message as specified in the call of @e wxLogXXX() function which
889 generated it and @a timestamp is the moment when the message was generated.
890
891 The base class version prepends the timestamp to the message, adds a prefix
892 corresponding to the log level and then calls
893 DoLogString() with the resulting string.
894 */
895 virtual void DoLog(wxLogLevel level, const wxString& msg, time_t timestamp);
896
897 /**
898 Called to log the specified string. The timestamp is already included in the
899 string but still passed to this function.
900
901 A simple implementation may just send the string to @c stdout or, better,
902 @c stderr.
903 */
904 virtual void DoLogString(const wxString& msg, time_t timestamp);
23324ae1
FM
905};
906
907
e54c96f1 908
23324ae1
FM
909/**
910 @class wxLogNull
7c913512 911
3e6f95dc 912 This class allows you to temporarily suspend logging. All calls to the log
23324ae1 913 functions during the life time of an object of this class are just ignored.
7c913512 914
23324ae1
FM
915 In particular, it can be used to suppress the log messages given by wxWidgets
916 itself but it should be noted that it is rarely the best way to cope with this
917 problem as @b all log messages are suppressed, even if they indicate a
918 completely different error than the one the programmer wanted to suppress.
7c913512 919
23324ae1 920 For instance, the example of the overview:
7c913512 921
23324ae1 922 @code
6a93e794 923 wxFile file;
7c913512 924
23324ae1
FM
925 // wxFile.Open() normally complains if file can't be opened, we don't want it
926 {
927 wxLogNull logNo;
928 if ( !file.Open("bar") )
929 ... process error ourselves ...
930 } // ~wxLogNull called, old log sink restored
7c913512 931
23324ae1
FM
932 wxLogMessage("..."); // ok
933 @endcode
7c913512 934
23324ae1 935 would be better written as:
7c913512 936
23324ae1 937 @code
6a93e794 938 wxFile file;
7c913512 939
23324ae1
FM
940 // don't try to open file if it doesn't exist, we are prepared to deal with
941 // this ourselves - but all other errors are not expected
942 if ( wxFile::Exists("bar") )
943 {
944 // gives an error message if the file couldn't be opened
945 file.Open("bar");
946 }
947 else
948 {
949 ...
950 }
951 @endcode
7c913512
FM
952
953
23324ae1
FM
954 @library{wxbase}
955 @category{logging}
956*/
6a9994cf 957class wxLogNull
23324ae1
FM
958{
959public:
960 /**
961 Suspends logging.
962 */
963 wxLogNull();
964
965 /**
966 Resumes logging.
967 */
6a93e794 968 ~wxLogNull();
23324ae1
FM
969};
970
971
e54c96f1 972
23324ae1
FM
973// ============================================================================
974// Global functions/macros
975// ============================================================================
976
b21126db 977/** @addtogroup group_funcmacro_log */
ef477678
BP
978//@{
979
23324ae1 980/**
ef477678
BP
981 This function shows a message to the user in a safe way and should be safe
982 to call even before the application has been initialized or if it is
983 currently in some other strange state (for example, about to crash). Under
984 Windows this function shows a message box using a native dialog instead of
985 wxMessageBox() (which might be unsafe to call), elsewhere it simply prints
986 the message to the standard output using the title as prefix.
7c913512
FM
987
988 @param title
ef477678
BP
989 The title of the message box shown to the user or the prefix of the
990 message string.
7c913512 991 @param text
ef477678 992 The text to show to the user.
7c913512 993
e54c96f1 994 @see wxLogFatalError()
ef477678
BP
995
996 @header{wx/log.h}
23324ae1 997*/
ef477678
BP
998void wxSafeShowMessage(const wxString& title, const wxString& text);
999
1000/**
1001 Returns the error code from the last system call. This function uses
1002 @c errno on Unix platforms and @c GetLastError under Win32.
23324ae1 1003
ef477678 1004 @see wxSysErrorMsg(), wxLogSysError()
96d7cc9b 1005
ef477678
BP
1006 @header{wx/log.h}
1007*/
1008unsigned long wxSysErrorCode();
96d7cc9b 1009
ef477678
BP
1010/**
1011 Returns the error message corresponding to the given system error code. If
1012 @a errCode is 0 (default), the last error code (as returned by
1013 wxSysErrorCode()) is used.
1014
1015 @see wxSysErrorCode(), wxLogSysError()
1016
1017 @header{wx/log.h}
1018*/
1019const wxChar* wxSysErrorMsg(unsigned long errCode = 0);
1020
1021//@}
1022
b21126db 1023/** @addtogroup group_funcmacro_log */
96d7cc9b
FM
1024//@{
1025/**
ef477678
BP
1026 For all normal, informational messages. They also appear in a message box
1027 by default (but it can be changed).
1028
1029 @header{wx/log.h}
96d7cc9b
FM
1030*/
1031void wxLogMessage(const char* formatString, ... );
1032void wxVLogMessage(const char* formatString, va_list argPtr);
1033//@}
1034
b21126db 1035/** @addtogroup group_funcmacro_log */
96d7cc9b
FM
1036//@{
1037/**
ef477678
BP
1038 For verbose output. Normally, it is suppressed, but might be activated if
1039 the user wishes to know more details about the program progress (another,
1040 but possibly confusing name for the same function could be @c wxLogInfo).
1041
1042 @header{wx/log.h}
96d7cc9b
FM
1043*/
1044void wxLogVerbose(const char* formatString, ... );
1045void wxVLogVerbose(const char* formatString, va_list argPtr);
1046//@}
1047
b21126db 1048/** @addtogroup group_funcmacro_log */
96d7cc9b
FM
1049//@{
1050/**
ef477678
BP
1051 For warnings - they are also normally shown to the user, but don't
1052 interrupt the program work.
1053
1054 @header{wx/log.h}
96d7cc9b
FM
1055*/
1056void wxLogWarning(const char* formatString, ... );
1057void wxVLogWarning(const char* formatString, va_list argPtr);
1058//@}
1059
b21126db 1060/** @addtogroup group_funcmacro_log */
96d7cc9b
FM
1061//@{
1062/**
ef477678
BP
1063 Like wxLogError(), but also terminates the program with the exit code 3.
1064 Using @e abort() standard function also terminates the program with this
1065 exit code.
1066
1067 @header{wx/log.h}
96d7cc9b
FM
1068*/
1069void wxLogFatalError(const char* formatString, ... );
ef477678 1070void wxVLogFatalError(const char* formatString, va_list argPtr);
96d7cc9b
FM
1071//@}
1072
b21126db 1073/** @addtogroup group_funcmacro_log */
96d7cc9b
FM
1074//@{
1075/**
ef477678
BP
1076 The functions to use for error messages, i.e. the messages that must be
1077 shown to the user. The default processing is to pop up a message box to
1078 inform the user about it.
1079
1080 @header{wx/log.h}
96d7cc9b
FM
1081*/
1082void wxLogError(const char* formatString, ... );
1083void wxVLogError(const char* formatString, va_list argPtr);
1084//@}
1085
b21126db 1086/** @addtogroup group_funcmacro_log */
96d7cc9b
FM
1087//@{
1088/**
ef477678
BP
1089 Like wxLogDebug(), trace functions only do something in debug builds and
1090 expand to nothing in the release one. The reason for making it a separate
1091 function is that usually there are a lot of trace messages, so it might
1092 make sense to separate them from other debug messages.
1093
34085a0d
VZ
1094 wxLogTrace(const char*,const char*,...) and can be used instead of
1095 wxLogDebug() if you would like to be able to separate trace messages into
1096 different categories which can be enabled or disabled with
1097 wxLog::AddTraceMask() and wxLog::RemoveTraceMask().
ef477678
BP
1098
1099 @header{wx/log.h}
96d7cc9b 1100*/
34085a0d
VZ
1101void wxLogTrace(const char *mask, const char* formatString, ... );
1102void wxVLogTrace(const char *mask, const char* formatString, va_list argPtr);
ef477678
BP
1103//@}
1104
b21126db 1105/** @addtogroup group_funcmacro_log */
ef477678
BP
1106//@{
1107/**
1108 Like wxLogDebug(), trace functions only do something in debug builds and
1109 expand to nothing in the release one. The reason for making it a separate
1110 function is that usually there are a lot of trace messages, so it might
1111 make sense to separate them from other debug messages.
1112
1113 In this version of wxLogTrace(), trace messages can be separated into
1114 different categories and calls using this function only log the message if
1115 the given @a mask is currently enabled in wxLog. This lets you selectively
1116 trace only some operations and not others by enabling the desired trace
1117 masks with wxLog::AddTraceMask() or by setting the
1118 @ref overview_envvars "@c WXTRACE environment variable".
1119
1120 The predefined string trace masks used by wxWidgets are:
1121
1122 @beginDefList
1123 @itemdef{ wxTRACE_MemAlloc, Trace memory allocation (new/delete) }
1124 @itemdef{ wxTRACE_Messages, Trace window messages/X callbacks }
1125 @itemdef{ wxTRACE_ResAlloc, Trace GDI resource allocation }
1126 @itemdef{ wxTRACE_RefCount, Trace various ref counting operations }
1127 @itemdef{ wxTRACE_OleCalls, Trace OLE method calls (Win32 only) }
1128 @endDefList
1129
1130 @note Since both the mask and the format string are strings, this might
1131 lead to function signature confusion in some cases: if you intend to
1132 call the format string only version of wxLogTrace(), add a "%s"
1133 format string parameter and then supply a second string parameter for
1134 that "%s", the string mask version of wxLogTrace() will erroneously
1135 get called instead, since you are supplying two string parameters to
1136 the function. In this case you'll unfortunately have to avoid having
1137 two leading string parameters, e.g. by adding a bogus integer (with
1138 its "%d" format string).
1139
1140 @header{wx/log.h}
1141*/
1142void wxLogTrace(const char* mask, const char* formatString, ... );
96d7cc9b 1143void wxVLogTrace(const char* mask,
ef477678
BP
1144 const char* formatString,
1145 va_list argPtr);
96d7cc9b
FM
1146//@}
1147
b21126db 1148/** @addtogroup group_funcmacro_log */
ef477678
BP
1149//@{
1150/**
1151 Like wxLogDebug(), trace functions only do something in debug builds and
1152 expand to nothing in the release one. The reason for making it a separate
1153 function is that usually there are a lot of trace messages, so it might
1154 make sense to separate them from other debug messages.
1155
22f24132 1156 @deprecated
ef477678
BP
1157 This version of wxLogTrace() only logs the message if all the bits
1158 corresponding to the @a mask are set in the wxLog trace mask which can be
1159 set by calling wxLog::SetTraceMask(). This version is less flexible than
34085a0d 1160 wxLogTrace(const char*,const char*,...) because it doesn't allow defining
ef477678
BP
1161 the user trace masks easily. This is why it is deprecated in favour of
1162 using string trace masks.
1163
1164 The following bitmasks are defined for wxTraceMask:
1165
1166 @beginDefList
1167 @itemdef{ wxTraceMemAlloc, Trace memory allocation (new/delete) }
1168 @itemdef{ wxTraceMessages, Trace window messages/X callbacks }
1169 @itemdef{ wxTraceResAlloc, Trace GDI resource allocation }
1170 @itemdef{ wxTraceRefCount, Trace various ref counting operations }
1171 @itemdef{ wxTraceOleCalls, Trace OLE method calls (Win32 only) }
1172 @endDefList
1173
1174 @header{wx/log.h}
1175*/
1176void wxLogTrace(wxTraceMask mask, const char* formatString, ... );
1177void wxVLogTrace(wxTraceMask mask, const char* formatString, va_list argPtr);
1178//@}
96d7cc9b 1179
b21126db 1180/** @addtogroup group_funcmacro_log */
96d7cc9b
FM
1181//@{
1182/**
ef477678
BP
1183 The right functions for debug output. They only do something in debug mode
1184 (when the preprocessor symbol @c __WXDEBUG__ is defined) and expand to
96d7cc9b 1185 nothing in release mode (otherwise).
ef477678
BP
1186
1187 @header{wx/log.h}
96d7cc9b
FM
1188*/
1189void wxLogDebug(const char* formatString, ... );
1190void wxVLogDebug(const char* formatString, va_list argPtr);
1191//@}
1192
b21126db 1193/** @addtogroup group_funcmacro_log */
96d7cc9b
FM
1194//@{
1195/**
ef477678
BP
1196 Messages logged by this function will appear in the statusbar of the
1197 @a frame or of the top level application window by default (i.e. when using
96d7cc9b 1198 the second version of the functions).
ef477678 1199
96d7cc9b 1200 If the target frame doesn't have a statusbar, the message will be lost.
ef477678
BP
1201
1202 @header{wx/log.h}
96d7cc9b 1203*/
ef477678
BP
1204void wxLogStatus(wxFrame* frame, const char* formatString, ... );
1205void wxVLogStatus(wxFrame* frame, const char* formatString, va_list argPtr);
96d7cc9b
FM
1206void wxLogStatus(const char* formatString, ... );
1207void wxVLogStatus(const char* formatString, va_list argPtr);
1208//@}
1209
b21126db 1210/** @addtogroup group_funcmacro_log */
96d7cc9b
FM
1211//@{
1212/**
ef477678
BP
1213 Mostly used by wxWidgets itself, but might be handy for logging errors
1214 after system call (API function) failure. It logs the specified message
1215 text as well as the last system error code (@e errno or @e ::GetLastError()
1216 depending on the platform) and the corresponding error message. The second
1217 form of this function takes the error code explicitly as the first
1218 argument.
96d7cc9b
FM
1219
1220 @see wxSysErrorCode(), wxSysErrorMsg()
ef477678
BP
1221
1222 @header{wx/log.h}
96d7cc9b
FM
1223*/
1224void wxLogSysError(const char* formatString, ... );
ef477678 1225void wxVLogSysError(const char* formatString, va_list argPtr);
39fb8056
FM
1226//@}
1227