📄 tlog.tex
字号:
\section{wxLog classes overview}\label{wxlogoverview}Classes: \helpref{wxLog}{wxlog},\\\helpref{wxLogStderr}{wxlogstderr},\\\helpref{wxLogStream}{wxlogstream},\\\helpref{wxLogTextCtrl}{wxlogtextctrl},\\\helpref{wxLogWindow}{wxlogwindow},\\\helpref{wxLogGui}{wxloggui},\\\helpref{wxLogNull}{wxlognull},\\\helpref{wxLogChain}{wxlogchain},\\\helpref{wxLogPassThrough}{wxlogpassthrough},\\\helpref{wxStreamToTextRedirector}{wxstreamtotextredirector}This is a general overview of logging classes provided by wxWidgets. The wordlogging here has a broad sense, including all of the program output, not onlynon-interactive messages. The logging facilities included in wxWidgets providethe base {\it wxLog} class which defines the standard interface for a {\it logtarget} as well as several standard implementations of it and a family offunctions to use with them.First of all, no knowledge of {\it wxLog} classes is needed to use them. Forthis, you should only know about {\it wxLogXXX()} functions. All of them havethe same syntax as {\it printf()} or {\it vprintf()} , i.e. they take theformat string as the first argument and respectively a variable number ofarguments or a variable argument list pointer. Here are all of them:\begin{itemize}\itemsep=0pt\item{\bf wxLogFatalError} which is like {\it wxLogError}, but alsoterminates the program with the exit code $3$ (using {\it abort()} standardfunction). Unlike for all the other logging functions, this function can't beoverridden by a log target.\item{\bf wxLogError} is the function to use for error messages, i.e. themessages that must be shown to the user. The default processing is to pop up amessage box to inform the user about it.\item{\bf wxLogWarning} for warnings - they are also normally shown to theuser, but don't interrupt the program work.\item{\bf wxLogMessage} is for all normal, informational messages. They alsoappear in a message box by default (but it can be changed, see below).\item{\bf wxLogVerbose} is for verbose output. Normally, it is suppressed, butmight be activated if the user wishes to know more details about the programprogress (another, but possibly confusing name for the same function is {\bfwxLogInfo}).\item{\bf wxLogStatus} is for status messages - they will go into the statusbar of the active or specified (as the first argument) \helpref{wxFrame}{wxframe} if it has one.\item{\bf wxLogSysError} is mostly used by wxWidgets itself, but might behandy for logging errors after system call (API function) failure. It logs thespecified message text as well as the last system errorcode ({\it errno} or {\it ::GetLastError()} depending on the platform) andthe corresponding error message. The second form of this function takes theerror code explicitly as the first argument.\item{\bf wxLogDebug} is {\bf the} right function for debug output. It onlydoes anything at all in the debug mode (when the preprocessor symbol\_\_WXDEBUG\_\_ is defined) and expands to nothing in release mode (otherwise).{\bf Tip:} under Windows, you must either run the program under debugger oruse a 3rd party program such as \urlref{DbgView}{http://www.sysinternals.com} to actually see the debug output.\item{\bf wxLogTrace} as {\bf wxLogDebug} only does something in debugbuild. The reason for making it a separate function from it is that usuallythere are a lot of trace messages, so it might make sense to separate themfrom other debug messages which would be flooded in them. Moreover, the secondversion of this function takes a trace mask as the first argument which allowsto further restrict the amount of messages generated.\end{itemize}The usage of these functions should be fairly straightforward, however it maybe asked why not use the other logging facilities, such as C standard stdiofunctions or C++ streams. The short answer is that they're all very goodgeneric mechanisms, but are not really adapted for wxWidgets, while the logclasses are. Some of advantages in using wxWidgets log functions are:\begin{itemize}\itemsep=0pt\item{\bf Portability} It is a common practice to use {\it printf()}statements or cout/cerr C++ streams for writing out some (debug or otherwise)information.Although it works just fine under Unix, these messages go strictly nowhereunder Windows where the stdout of GUI programs is not assigned to anything.Thus, you might view {\it wxLogMessage()} as a simple substitute for {\itprintf()}.You can also redirect the {\it wxLogXXX} calls to {\it cout} by just writing:{\small\begin{verbatim} wxLog *logger=new wxLogStream(&cout); wxLog::SetActiveTarget(logger);\end{verbatim}}Finally, there is also a possibility to redirect the output sent to {\it cout} to a \helpref{wxTextCtrl}{wxtextctrl} by using the \helpref{wxStreamToTextRedirector}{wxstreamtotextredirector} class.\item{\bf Flexibility} The output of wxLog functions can be redirected orsuppressed entirely based on their importance, which is either impossible ordifficult to do with traditional methods. For example, only error messages, oronly error messages and warnings might be logged, filtering out allinformational messages.\item{\bf Completeness} Usually, an error message should be presented to the userwhen some operation fails. Let's take a quite simple but common case of a fileerror: suppose that you're writing your data file on disk and there is notenough space. The actual error might have been detected inside wxWidgets code(say, in {\it wxFile::Write}), so the calling function doesn't really know theexact reason of the failure, it only knows that the data file couldn't bewritten to the disk. However, as wxWidgets uses {\it wxLogError()} in thissituation, the exact error code (and the corresponding error message) will begiven to the user together with "high level" message about data file writingerror.\end{itemize}After having enumerated all the functions which are normally used to log themessages, and why would you want to use them we now describe how all thisworks.wxWidgets has the notion of a {\it log target}: it is just a class derivingfrom \helpref{wxLog}{wxlog}. As such, it implements the virtual functions ofthe base class which are called when a message is logged. Only one log targetis {\it active} at any moment, this is the one used by {\it wxLogXXX()}functions. The normal usage of a log object (i.e. object of a class derivedfrom wxLog) is to install it as the active target with a call to {\itSetActiveTarget()} and it will be used automatically by all subsequent callsto {\it wxLogXXX()} functions.To create a new log target class you only need to derive it from wxLog andimplement one (or both) of {\it DoLog()} and {\it DoLogString()} in it. Thesecond one is enough if you're happy with the standard wxLog messageformatting (prepending "Error:" or "Warning:", timestamping \&c) but just wantto send the messages somewhere else. The first one may be overridden to dowhatever you want but you have to distinguish between the different messagetypes yourself.There are some predefined classes deriving from wxLog and which might behelpful to see how you can create a new log target class and, of course, mayalso be used without any change. There are:\begin{itemize}\itemsep=0pt\item{\bf wxLogStderr} This class logs messages to a {\it FILE *}, usingstderr by default as its name suggests.\item{\bf wxLogStream} This class has the same functionality as wxLogStderr,but uses {\it ostream} and cerr instead of {\it FILE *} and stderr.\item{\bf wxLogGui} This is the standard log target for wxWidgetsapplications (it is used by default if you don't do anything) and provides themost reasonable handling of all types of messages for given platform.\item{\bf wxLogWindow} This log target provides a "log console" whichcollects all messages generated by the application and also passes them to theprevious active log target. The log window frame has a menu allowing user toclear the log, close it completely or save all messages to file.\item{\bf wxLogNull} The last log class is quite particular: it doesn't doanything. The objects of this class may be instantiated to (temporarily)suppress output of {\it wxLogXXX()} functions. As an example, trying to open anon-existing file will usually provoke an error message, but if for somereasons it is unwanted, just use this construction:{\small%\begin{verbatim} wxFile file; // wxFile.Open() normally complains if file can't be opened, we don't want it { wxLogNull logNo; if ( !file.Open("bar") ) ... process error ourselves ... } // ~wxLogNull called, old log sink restored wxLogMessage("..."); // ok\end{verbatim}}%\end{itemize}The log targets can also be combined: for example you may wish to redirect themessages somewhere else (for example, to a log file) but also process them asnormally. For this the \helpref{wxLogChain}{wxlogchain} and \helpref{wxLogPassThrough}{wxlogpassthrough} can be used.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -