Update contrib.
1 // Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
25 Macro for Single blank space.
30 const TInt KHexDumpWidth=16;
33 Literal constant that hold a string and unicode hex.
36 _LIT(KFirstFormatString,"%s%04x : ");
39 Literal constant that hold a string and unicode hex.
42 _LIT(KSecondFormatString,"%02x ");
48 _LIT(KThirdFormatString,"%c");
51 Literal Constant for 3 blank spaces.
54 _LIT(KThreeSpaces," ");
57 Literal Constant for 2 blank spaces.
63 IMPORT_C extern const TBool KFloggerSTI;
66 RFileLogger class definition
69 EXPORT_C RFileLogger::RFileLogger()
70 : RSessionBase(), iFormatter(), iLastError(KErrNone), iLogSTI(KFloggerSTI)
71 /** Creates a default RFileLogger object. */
74 EXPORT_C RFileLogger::~RFileLogger()
76 Clients with open sessions must end the session by calling Close() beforehand.
77 Note that it does not delete the log file.*/
80 EXPORT_C TVersion RFileLogger::Version() const
81 /** Returns the version number.
83 @return The version number. */
86 return(TVersion(KFLogSrvMajorVersionNumber,KFLogSrvMinorVersionNumber,KFLogSrvBuildVersionNumber));
89 EXPORT_C TInt RFileLogger::Connect()
90 /** Connects to the file logger server with the default number of message slots, which is 8.
92 This function does not need to be called if you are using the static versions
93 of Write(), WriteFormat() or HexDump().
95 @return KErrNone if successful, otherwise one of the system-wide error codes. */
99 if (ret==KErrNotFound)
101 ret=FLogger::Start();
102 if (ret==KErrNone || ret==KErrAlreadyExists)
108 EXPORT_C void RFileLogger::SetDateAndTime(TBool aUseDate,TBool aUseTime)
109 /** Specifies whether time and/or date should be appended to log data.
111 Appending of the time and date to log entries can be switched on and off
112 at anytime between creation and destruction of RFileLogger.
114 This function does not need to be called if you are using the static versions
115 of Write(), WriteFormat() or HexDump().
117 @param aUseDate Use ETrue to log the date, otherwise EFalse.
118 @param aUseTime Use ETrue to log the time, otherwise EFalse. */
121 iFormatter.SetDateAndTime(aUseDate,aUseTime);
124 EXPORT_C void RFileLogger::CreateLog(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode)
125 /** Creates or opens a file for logging.
127 When specifying a directory for logging only specify the relative path to
128 'C:\\Logs\\' and do not append a '\\' to the end of the path either. CreateLog()
129 only creates the specified log file if the directory exists. This means that
130 switching logging on and off can be achieved without having to re-compile,
131 by just removing or renaming the log directory.
133 aLogFile.iValid is set according to whether logging will actually occur or not.
135 @param aDir The directory relative to 'C:\\Logs\\' where the log file resides
137 @param aName The name of the log file.
138 @param aMode The mode in which the log file should be opened, either EAppend
142 iLogFile.Set(aDir,aName,aMode);
143 TPckg<TLogFile> logFilePckg(iLogFile);
144 iLastError=SendReceive(ECreateLog, TIpcArgs( &logFilePckg));
146 if (iLastError!=KErrNone && !LogSTI())
147 iLogFile.SetValid(EFalse);
150 EXPORT_C void RFileLogger::CloseLog()
151 /** Closes the log file, iLogFile.
153 This function closes the log file previously created or opened by CreateLog(). */
155 TPckg<TLogFile> logFilePckg(iLogFile);
156 iLastError=SendReceive(ECloseLog,TIpcArgs( &logFilePckg));
159 EXPORT_C TBool RFileLogger::LogValid() const
160 /** Returns the status of the log.
162 @return ETrue if the log file is valid; otherwise EFalse. */
165 return iLogFile.Valid();
168 EXPORT_C TInt RFileLogger::LastError() const
169 /** Returns the last error status that has been set.
171 @return This value can be set to any of the valid error codes from any of
172 the functions in this class. */
178 EXPORT_C TBool RFileLogger::LogSTI() const
179 /** Returns patchable constant value.
181 @return This value specify the logging output. The default value EFalse
182 cause that the logs are stored to filesystem. ETrue intorduced as in CR 1688
183 is used for logging using RDebug::Print */
190 // 16-bit non-static writes
193 EXPORT_C void RFileLogger::Write(const TDesC16& aText)
194 /** Writes a string of Unicode characters to an open log, iLogFile, if it is a valid file.
196 Note that the text will be converted to an 8 bit format for the log file.
198 @param aText The Unicode string to write to the open log. */
201 if (iLogFile.Valid() || LogSTI())
203 TBuf8<KLogBufferSize> buf;
204 iLastError=iFormatter.FormatTextToWritableBuffer(buf,aText);
205 if (iLastError==KErrNone)
210 EXPORT_C void RFileLogger::WriteFormat(TRefByValue<const TDesC16> aFmt,...)
211 /** Formats the remaining arguments of the function according to aFmt, and writes the
212 result to the log, iLogFile, if it is a valid file.
214 The format string aFmt contains literal text, embedded with directives, for converting
215 the trailing list of arguments into text. The number and type of arguments is dictated
216 by the structure of the directives in aFmt.
218 Note that the text will be converted to an 8 bit format for the log file.
220 @param aFmt The 16-bit non modifiable descriptor containing the format string.
221 The TRefByValue class provides a constructor which takes a TDesC16 type. */
226 DoWriteFormat(aFmt,list);
229 EXPORT_C void RFileLogger::WriteFormat(TRefByValue<const TDesC16> aFmt, VA_LIST& aList)
230 /** Formats the arguments pointed to by aList according to aFmt, and writes the
231 result to the log, iLogFile, if it is a valid file.
233 The format string aFmt contains literal text, embedded with directives,
234 for converting the trailing list of arguments into text. The number and type
235 of arguments pointed to by aList is dictated by the structure of the directives
238 Note that the text will be converted to an 8 bit format for the log file.
240 @param aFmt The 16-bit non modifiable descriptor containing the format string.
241 The TRefByValue class provides a constructor which takes a TDesC16 type.
242 @param aList A pointer to an argument list. */
245 DoWriteFormat(aFmt,aList);
249 // 8-bit non-static writes
252 EXPORT_C void RFileLogger::Write(const TDesC8& aText)
253 /** Writes a string of 8-bit characters to an open log, iLogFile, if it is a valid file.
255 @param aText The 8-bit character string to write to the open log. */
258 if (iLogFile.Valid() || LogSTI())
260 TBuf8<KLogBufferSize> buf;
261 iLastError=iFormatter.FormatTextToWritableBuffer(buf,aText);
262 if (iLastError==KErrNone)
267 EXPORT_C void RFileLogger::WriteFormat(TRefByValue<const TDesC8> aFmt,...)
268 /** Formats the remaining arguments of the function according to aFmt, and writes the
269 result to the log, iLogFile, if it is a valid file.
271 The format string aFmt contains literal text, embedded with directives,
272 for converting the trailing list of arguments into text. The number and type
273 of arguments is dictated by the structure of the directives in aFmt.
275 @param aFmt The 8 bit non modifiable descriptor containing the format string.
276 The TRefByValue class provides a constructor which takes a TDesC8 type.*/
281 DoWriteFormat(aFmt,list);
284 EXPORT_C void RFileLogger::WriteFormat(TRefByValue<const TDesC8> aFmt, VA_LIST& aList)
285 /** Formats the arguments pointed to by aList according to aFmt, and writes the result
286 to the log, iLogFile, if it is a valid file.
288 The format string aFmt contains literal text, embedded with directives,
289 for converting the trailing list of arguments into text. The number and type
290 of arguments pointed to by aList is dictated by the structure of the directives
293 @param aFmt The 8 bit non modifiable descriptor containing the format string.
294 The TRefByValue class provides a constructor which takes a TDesC8 type.
295 @param aList A pointer to an argument list. */
298 DoWriteFormat(aFmt,aList);
302 // 16-bit static writes
305 EXPORT_C void RFileLogger::Write(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, const TDesC16& aText)
306 /** Writes a string of 16-bit characters to an open log.
308 Connects to the logging server, creates/opens the log file and write aText to it.
310 This is a "static write".
312 Note that the text will be converted to an 8 bit format for the log file.
314 @param aDir The directory relative to 'C:\\Logs\\' where the log file resides.
315 @param aName The name of the log file.
316 @param aMode The mode in which the log file should be opened: either EAppend or EOverwrite.
317 @param aText The Unicode string to write to the log. */
321 TInt ret=logger.Connect();
324 logger.SetDateAndTime(ETrue,ETrue);
325 logger.iLogFile.Set(aDir,aName,aMode);
326 TBuf8<KLogBufferSize> buf;
327 ret=logger.iFormatter.FormatTextToWritableBuffer(buf,aText);
332 logger.DoStaticWrite(buf);
335 TPckg<TLogFile> logFilePckg(logger.iLogFile);
336 logger.SendReceive(ECreateWriteAndCloseLog, TIpcArgs ( &logFilePckg, &buf)); // ignore error
343 EXPORT_C void RFileLogger::WriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC16> aFmt,...)
344 /** Formats the remaining arguments of the function according to aFmt and writes the
347 The format string aFmt contains literal text, embedded with directives,
348 for converting the trailing list of arguments into text. The number and type
349 of arguments is dictated by the structure of the directives in aFmt.
351 Connects to the logging server, creates/opens the log file and writes the text arguments to it.
353 This is a "static write".
355 Note that the text will be converted to an 8 bit format for the log file.
357 @param aDir The directory relative to 'C:\\Logs\\' where the log file resides.
358 @param aName The name of the log file.
359 @param aMode The mode in which the log file should be opened: either EAppend
361 @param aFmt The 16 bit non modifiable descriptor containing the format string.
362 The TRefByValue class provides a constructor which takes a TDesC16 type. */
367 DoStaticWriteFormat(aDir,aName,aMode,aFmt,list);
370 EXPORT_C void RFileLogger::WriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC16> aFmt, VA_LIST& aList)
371 /** Formats the arguments pointed to by aList according to aFmt, and writes the result
374 The format string aFmt contains literal text, embedded with directives,
375 for converting the trailing list of arguments into text. The number and type
376 of arguments pointed to by aList is dictated by the structure of the directives
379 Connects to the logging server, creates/opens the log file and writes the text arguments to it.
381 This is a "static write".
383 Note that the text will be converted to an 8 bit format for the log file.
385 @param aDir The directory relative to 'C:\\Logs\\' where the log file resides.
386 @param aName The name of the log file.
387 @param aMode The mode in which the log file should be opened: either EAppend
389 @param aFmt The 16 bit non modifiable descriptor containing the format string.
390 The TRefByValue class provides a constructor which takes a TDesC16 type.
391 @param aList A pointer to an argument list. */
394 DoStaticWriteFormat(aDir,aName,aMode,aFmt,aList);
398 // 8-bit static writes
401 EXPORT_C void RFileLogger::Write(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, const TDesC8& aText)
402 /** Writes a string of 8-bit characters to an open log.
404 Connects to the logging server, creates/opens the log file and writes aText to it.
406 This is a "static write".
408 @param aDir The directory relative to 'C:\\Logs\\' where the log file resides.
409 @param aName The name of the log file.
410 @param aMode The mode in which the log file should be opened: either EAppend
412 @param aText The 8-bit string to write to the log. */
417 TInt ret=logger.Connect();
420 logger.SetDateAndTime(ETrue,ETrue);
421 logger.iLogFile.Set(aDir,aName,aMode);
422 // TBuf8<KLogBufferSize> buf;
423 TBuf8<1600> buf; //Want at least an mtu sized buffer
424 //PG 14/08/2002 - If mode is set to *Raw, Don't change format of client buffer
425 if(aMode == EFileLoggingModeAppendRaw || aMode == EFileLoggingModeOverwriteRaw)
430 ptr8.Set(aText.Left(KLogBufferSize)); //in LogSTI mode, truncate to KLogBufferSize
434 ptr8.Set(aText.Left(1600)); // truncate to 1600
440 ret=logger.iFormatter.FormatTextToWritableBuffer(buf,aText);
444 logger.DoStaticWrite(buf);
450 EXPORT_C void RFileLogger::WriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC8> aFmt,...)
451 /** Formats the remaining arguments of the function according to aFmt and writes the
454 The format string aFmt contains literal text, embedded with directives,
455 for converting the trailing list of arguments into text. The number and type
456 of arguments is dictated by the structure of the directives in aFmt.
458 Connects to the logging server, creates/opens the log file and writes the text arguments to it.
460 This is a "static write".
462 @param aDir The directory relative to 'C:\\Logs\\' where the log file resides.
463 @param aName The name of the log file.
464 @param aMode The mode in which the log file should be opened: either EAppend
466 @param aFmt The 8 bit non modifiable descriptor containing the format string.
467 The TRefByValue class provides a constructor which takes a TDesC8 type. */
472 DoStaticWriteFormat(aDir,aName,aMode,aFmt,list);
475 EXPORT_C void RFileLogger::WriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC8> aFmt, VA_LIST& aList)
476 /** Formats the arguments pointed to by aList according to aFmt, and writes the
479 The format string aFmt contains literal text, embedded with directives,
480 for converting the trailing list of arguments into text. The number and type
481 of arguments pointed to by aList is dictated by the structure of the directives
484 Connects to the logging server, creates/opens the log file and writes the text arguments to it.
486 This is a "static write".
488 @param aDir The directory relative to 'C:\\Logs\\' where the log file resides.
489 @param aName The name of the log file.
490 @param aMode The mode in which the log file should be opened: either EAppend
492 @param aFmt The 8 bit non modifiable descriptor containing the format string.
493 The TRefByValue class provides a constructor which takes a TDesC8 type.
494 @param aList A pointer to an argument list. */
497 DoStaticWriteFormat(aDir,aName,aMode,aFmt,aList);
504 EXPORT_C void RFileLogger::HexDump(const TText* aHeader, const TText* aMargin, const TUint8* aPtr, TInt aLen)
505 /** Writes a hex dump of the specified data to the log.
507 The format of the hex dump entry is a header followed by the hex string of
508 the data followed by any printable characters (non printable characters are
509 substituted with '.'). For example,
512 RLog_Ex0000 : 41 42 6C 6B 0A 0A 45 46 20 20 78 7A ABlk..EF
514 RL_cont0001 : 43 44 6C 6B 0A 0A 45 46 20 20 78 7A CDlk..EF
516 RL_cont0002 : 45 46 6C 6B 0A 0A 47 48 20 20 78 7A EFlk..GH
522 @param aHeader A label for the hex dump entry. The label has a sequence number
523 appended to it automatically.
524 @param aMargin A continuation label if the hex dump exceeds one line. This
525 label is displayed on all subsequent lines after line one and also has a sequence
526 number appended to it.
527 @param aPtr The data that is to be converted to a hex string.
528 @param aLen How many of the characters in aPtr are to be converted. Conversion
529 always starts from position 0 within aPtr. */
532 if (iLogFile.Valid() || LogSTI())
533 DoHexDump(aHeader,aMargin,aPtr,aLen);
536 EXPORT_C void RFileLogger::HexDump(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, const TText* aHeader, const TText* aMargin, const TUint8* aPtr, TInt aLen)
537 /** Writes a hex dump of the specified data to the log.
539 The format of the hex dump entry is a header followed by the hex string of
540 the data followed by any printable characters (non printable characters are
541 substituted with '.'). For example,
544 RLog_Ex0000 : 41 42 6C 6B 0A 0A 45 46 20 20 78 7A ABlk..EF
546 RL_cont0001 : 43 44 6C 6B 0A 0A 45 46 20 20 78 7A CDlk..EF
548 RL_cont0002 : 45 46 6C 6B 0A 0A 47 48 20 20 78 7A EFlk..GH
556 @param aDir The directory relative to 'C:\\Logs\\' where the log file resides.
557 @param aName The name of the log file.
558 @param aMode The mode in which the log file should be opened: either EAppend
560 @param aHeader A label for the hex dump entry. The label has a sequence number
561 appended to it automatically.
562 @param aMargin A continuation label if the hex dump exceeds one line. This
563 label is displayed on all subsequent lines after line one and also has a sequence
564 number appended to it.
565 @param aPtr The data that is to be converted to a hex string.
566 @param aLen How many of the characters in aPtr are to be converted. Conversion
567 always starts from position 0 within aPtr. */
571 TInt ret=logger.Connect();
574 logger.CreateLog(aDir,aName,aMode);
575 if (logger.iLogFile.Valid())
577 logger.SetDateAndTime(ETrue,ETrue);
578 logger.DoHexDump(aHeader,aMargin,aPtr,aLen);
589 TInt RFileLogger::DoConnect()
591 Connects to the flogger server - default number of message slots = 8
593 @return TInt indicating success code (KErrNone) or an error code.
597 return CreateSession(KFLoggerServerName,Version(),0); // no async IPC
600 void RFileLogger::DoWrite(const TDesC8& aBuf)
602 Sends the pre-formatted write string to the flogger server.
605 session is already open.
606 @param aBuf 8-bit text to be written.
611 TBuf<KLogBufferSize> n;
613 TFileName logFileName = iLogFile.Name();
614 RDebug::Print(_L("FLG %S %S"),&logFileName,&n);
618 TPckg<TLogFile> logFilePckg(iLogFile);
619 iLastError=SendReceive(EWriteLog,TIpcArgs (&logFilePckg, &aBuf));
623 void RFileLogger::DoStaticWrite(const TDesC8& aBuf)
625 Sends the pre-formatted write string to the flogger server.
628 session is already open. aText is not longer than KLogBufferSize
629 @param aBuf text to write
631 The text is only written if the original connection was successful.
632 No text is ever written if the directory specified in the original connection request does not exist.
633 Each line is preceded in the date and time.
636 TPckg<TLogFile> logFilePckg(iLogFile);
639 TBuf<KLogBufferSize> n;
641 TFileName logFileName = iLogFile.Name();
642 RDebug::Print(_L("FLG %S %S"),&logFileName,&n);
646 SendReceive(ECreateWriteAndCloseLog, TIpcArgs( &logFilePckg, &aBuf)); // ignore error
650 void RFileLogger::DoWriteFormat(TRefByValue<const TDesC16> aFmt, VA_LIST& aList)
652 Trim format string before sending to the flogger server.
655 session is already open.
656 @param aFmt c-style formatted text to be written.
657 @param aList any variables required by the format.
659 The final string is truncated to KLogBufferSize.
660 @see void RFileLogger::DoWriteFormat(TRefByValue<const TDesC8> aFmt, VA_LIST& aList)
664 if (iLogFile.Valid() || LogSTI())
666 TBuf8<KLogBufferSize> buf;
667 iLastError=iFormatter.ConvertToWritableBuffer(buf,aFmt,aList);
668 if (iLastError==KErrNone)
673 void RFileLogger::DoWriteFormat(TRefByValue<const TDesC8> aFmt, VA_LIST& aList)
675 Trim format string before sending to the flogger server.
678 session is already open.
679 @param aFmt c-style formatted text to be written.
680 @param aList any variables required by the format.
682 The final string is truncated to KLogBufferSize.
686 if (iLogFile.Valid() || LogSTI())
688 TBuf8<KLogBufferSize> buf;
689 iLastError=iFormatter.ConvertToWritableBuffer(buf,aFmt,aList);
690 if (iLastError==KErrNone)
695 void RFileLogger::DoStaticWriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC> aFmt, VA_LIST& aList)
697 Sends a format write string to the flogger server to write to the specified file.
699 @param aDir Path of the log file.
700 @param aName Name of the log file.
701 @param aFmt c-style formatted text to be written.
702 @param aList any variables required by the format.
704 The text is only written if the original connection was successful.
705 No text is ever written if the directory specified in the original connection request does not exist.
706 Each line is preceded in the date and time.
707 @see void RFileLogger::DoStaticWriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC8> aFmt, VA_LIST& aList)
712 TInt ret=logger.Connect();
715 logger.SetDateAndTime(ETrue,ETrue);
716 logger.iLogFile.Set(aDir,aName,aMode);
717 TBuf8<KLogBufferSize> buf;
718 ret=logger.iFormatter.ConvertToWritableBuffer(buf,aFmt,aList);
720 logger.DoStaticWrite(buf);
725 void RFileLogger::DoStaticWriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC8> aFmt, VA_LIST& aList)
727 Sends a format write string to the flogger server to write to the specified file.
728 There is no pre-condition.
730 @param aDir Path of the log file.
731 @param aName Name of the log file.
732 @param aFmt c-style formatted text to be written.
733 @param aList any variables required by the format.
735 The text is only written if the original connection was successful.
736 No text is ever written if the directory specified in the original
737 connection request does not exist. Each line is preceded in the date and time.
742 TInt ret=logger.Connect();
745 logger.SetDateAndTime(ETrue,ETrue);
746 logger.iLogFile.Set(aDir,aName,aMode);
747 TBuf8<KLogBufferSize> buf;
748 ret=logger.iFormatter.ConvertToWritableBuffer(buf,aFmt,aList);
750 logger.DoStaticWrite(buf);
755 void RFileLogger::DoHexDump(const TText* aHeader, const TText* aMargin, const TUint8* aPtr, TInt aLen)
757 Static Write. Dumps arbitrary data to the log file as a standard hex dump.
760 session is already open.
761 @param aHeader Specify a string to be printed before the first hex line.
762 Leave as null or an empty string for no header.
763 @param aMargin Specify a string to be printed before each subsequent line.
764 Leave as null or an empty string for no Margin.
765 @param aPtr pointer to the data being dumped.
766 @param aLen the number of bytes to dump
768 The text is only written if the original connection was successful.
769 No text is ever written if the directory specified in the original connection
770 request does not exist. Each line is preceded in the date and time.
771 @note This function has poor performance since it performs a full connection and
772 disconnection to the flogger server. Example of aHeader/aMargin.
773 If "aHeader" is set to "Fn Output:" and "aMargin" is set to " ", then output
774 would look like (for a print of the alphabet):
775 14/11/2002 12:32:24 Fn Output:0000 : 61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f 70 abcdefghijklmnop
776 14/11/2002 12:32:24 0010 : 71 72 73 74 75 76 77 78 79 7a qrstuvwxyz
780 if (aPtr==NULL) // nothing to do
783 TBuf<KLogBufferSize> buf;
784 TBuf8<KLogBufferSize> temp;
786 const TText* p=aHeader;
790 p=BLANK; // if NULL set p to a blank string
791 TInt n=(aLen>KHexDumpWidth ? KHexDumpWidth : aLen);
792 buf.AppendFormat(KFirstFormatString,p,i);
795 buf.AppendFormat(KSecondFormatString,aPtr[i+j]);
796 while (j++<KHexDumpWidth)
797 buf.Append(KThreeSpaces);
798 buf.Append(KTwoSpaces);
800 buf.AppendFormat(KThirdFormatString,(aPtr[i+j]<32 || aPtr[i+j]>126) ? KFullStopChar : aPtr[i+j]);
802 iLastError=iFormatter.FormatTextToWritableBuffer(temp,buf);
803 if (iLastError==KErrNone)