os/persistentdata/loggingservices/filelogger/SCLI/FLOGCLI.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18 */
    19 
    20 #include <f32file.h>
    21 #include <flogger.h>
    22 #include "FLOGSTD.H"
    23 
    24 /** 
    25 Macro for Single blank space.
    26 
    27 */
    28 #define BLANK	_S("")
    29 
    30 const TInt KHexDumpWidth=16;
    31 
    32 /**
    33 Literal constant that hold a string and unicode hex.
    34 
    35 */
    36 _LIT(KFirstFormatString,"%s%04x : ");
    37 
    38 /**
    39 Literal constant that hold a string and unicode hex.
    40 
    41 */
    42 _LIT(KSecondFormatString,"%02x ");
    43 
    44 /**
    45 Character Constant.
    46 
    47 */
    48 _LIT(KThirdFormatString,"%c");
    49 
    50 /** 
    51 Literal Constant for 3 blank spaces. 
    52 
    53 */
    54 _LIT(KThreeSpaces,"   ");
    55 
    56 /** 
    57 Literal Constant for 2 blank spaces. 
    58 
    59 */
    60 _LIT(KTwoSpaces," ");
    61 
    62 
    63 IMPORT_C extern const TBool KFloggerSTI;
    64 
    65 /*
    66 RFileLogger class definition
    67 */
    68 
    69 EXPORT_C RFileLogger::RFileLogger() 
    70 	: RSessionBase(), iFormatter(), iLastError(KErrNone), iLogSTI(KFloggerSTI)
    71 /** Creates a default RFileLogger object. */
    72 	{}
    73 
    74 EXPORT_C RFileLogger::~RFileLogger()
    75 /** Empty destructor. 
    76 Clients with open sessions must end the session by calling Close() beforehand.
    77 Note that it does not delete the log file.*/
    78 	{}
    79 
    80 EXPORT_C TVersion RFileLogger::Version() const
    81 /** Returns the version number.
    82 
    83 @return The version number. */
    84 	{
    85 
    86 	return(TVersion(KFLogSrvMajorVersionNumber,KFLogSrvMinorVersionNumber,KFLogSrvBuildVersionNumber));
    87 	}
    88 
    89 EXPORT_C TInt RFileLogger::Connect()
    90 /** Connects to the file logger server with the default number of message slots, which is 8.
    91 
    92 This function does not need to be called if you are using the static versions 
    93 of Write(), WriteFormat() or HexDump().
    94 
    95 @return KErrNone if successful, otherwise one of the system-wide error codes. */
    96 	{
    97 
    98 	TInt ret=DoConnect();
    99 	if (ret==KErrNotFound)
   100 		{
   101 		ret=FLogger::Start();
   102 		if (ret==KErrNone || ret==KErrAlreadyExists)
   103 			ret=DoConnect();
   104 		}
   105 	return ret;
   106 	}
   107 
   108 EXPORT_C void RFileLogger::SetDateAndTime(TBool aUseDate,TBool aUseTime)
   109 /** Specifies whether time and/or date should be appended to log data.
   110 
   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.
   113 
   114 This function does not need to be called if you are using the static versions 
   115 of Write(), WriteFormat() or HexDump().
   116 
   117 @param aUseDate Use ETrue to log the date, otherwise EFalse.
   118 @param aUseTime Use ETrue to log the time, otherwise EFalse. */
   119 	{
   120 
   121 	iFormatter.SetDateAndTime(aUseDate,aUseTime);
   122 	}
   123 
   124 EXPORT_C void RFileLogger::CreateLog(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode)
   125 /** Creates or opens a file for logging.
   126 
   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.
   132 
   133 aLogFile.iValid is set according to whether logging will actually occur or not. 
   134 
   135 @param aDir The directory relative to 'C:\\Logs\\' where the log file resides 
   136 or is to be created.
   137 @param aName The name of the log file.
   138 @param aMode The mode in which the log file should be opened, either EAppend 
   139 or EOverwrite. */
   140 	{
   141 
   142 	iLogFile.Set(aDir,aName,aMode);
   143 	TPckg<TLogFile> logFilePckg(iLogFile);
   144  	iLastError=SendReceive(ECreateLog, TIpcArgs( &logFilePckg));
   145 
   146 	if (iLastError!=KErrNone && !LogSTI())
   147 		iLogFile.SetValid(EFalse);
   148 	}
   149 
   150 EXPORT_C void RFileLogger::CloseLog()
   151 /** Closes the log file, iLogFile.
   152 
   153 This function closes the log file previously created or opened by CreateLog(). */
   154 	{
   155 	TPckg<TLogFile> logFilePckg(iLogFile);
   156  	iLastError=SendReceive(ECloseLog,TIpcArgs( &logFilePckg));
   157 	}
   158 
   159 EXPORT_C TBool RFileLogger::LogValid() const
   160 /** Returns the status of the log.
   161 
   162 @return ETrue if the log file is valid; otherwise EFalse. */
   163 	{
   164 
   165 	return iLogFile.Valid();
   166 	}
   167 
   168 EXPORT_C TInt RFileLogger::LastError() const
   169 /** Returns the last error status that has been set.
   170 
   171 @return This value can be set to any of the valid error codes from any of 
   172 the functions in this class. */
   173 	{
   174 
   175 	return iLastError;
   176 	}
   177 
   178 EXPORT_C TBool RFileLogger::LogSTI() const
   179 /** Returns patchable constant value.
   180 
   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 */
   184 	{
   185 
   186 	return iLogSTI;
   187 	}
   188 
   189 //
   190 // 16-bit non-static writes
   191 //
   192 
   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.
   195 
   196 Note that the text will be converted to an 8 bit format for the log file. 
   197 
   198 @param aText The Unicode string to write to the open log. */
   199 	{
   200 
   201 	if (iLogFile.Valid() || LogSTI())
   202 		{
   203 		TBuf8<KLogBufferSize> buf;
   204 		iLastError=iFormatter.FormatTextToWritableBuffer(buf,aText);
   205 		if (iLastError==KErrNone)
   206 			DoWrite(buf);
   207 		}
   208 	}
   209 	
   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.
   213 
   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.
   217 
   218 Note that the text will be converted to an 8 bit format for the log file. 
   219 
   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. */
   222 	{
   223 
   224 	VA_LIST list;
   225 	VA_START(list,aFmt);
   226 	DoWriteFormat(aFmt,list);
   227 	}
   228 
   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.
   232 
   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 
   236 in aFmt.
   237 
   238 Note that the text will be converted to an 8 bit format for the log file. 
   239 
   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. */
   243 	{
   244 
   245 	DoWriteFormat(aFmt,aList);
   246 	}
   247 
   248 //
   249 // 8-bit non-static writes
   250 //
   251 
   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.
   254 
   255 @param aText The 8-bit character string to write to the open log. */
   256 	{
   257 
   258 	if (iLogFile.Valid() || LogSTI())
   259 		{
   260 		TBuf8<KLogBufferSize> buf;
   261 		iLastError=iFormatter.FormatTextToWritableBuffer(buf,aText);
   262 		if (iLastError==KErrNone)
   263 			DoWrite(buf);
   264 		}
   265 	}
   266 	
   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.
   270 
   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.
   274 
   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.*/
   277 	{
   278 
   279 	VA_LIST list;
   280 	VA_START(list,aFmt);
   281 	DoWriteFormat(aFmt,list);
   282 	}
   283 
   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.
   287 
   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 
   291 in aFmt.
   292 
   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. */
   296 	{
   297 
   298 	DoWriteFormat(aFmt,aList);
   299 	}
   300 
   301 //
   302 // 16-bit static writes
   303 //
   304 
   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.
   307 
   308 Connects to the logging server, creates/opens the log file and write aText to it.
   309 
   310 This is a "static write".
   311 
   312 Note that the text will be converted to an 8 bit format for the log file. 
   313 
   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. */
   318 	{
   319 
   320 	RFileLogger logger;
   321 	TInt ret=logger.Connect();
   322 	if (ret==KErrNone)
   323 		{
   324 		logger.SetDateAndTime(ETrue,ETrue);
   325 		logger.iLogFile.Set(aDir,aName,aMode);
   326 		TBuf8<KLogBufferSize> buf;
   327 		ret=logger.iFormatter.FormatTextToWritableBuffer(buf,aText);
   328 		if (ret==KErrNone)
   329 			{
   330 			if (logger.LogSTI()) 
   331 				{
   332 				logger.DoStaticWrite(buf);
   333 				} else 
   334 					{
   335 					TPckg<TLogFile> logFilePckg(logger.iLogFile);
   336 					logger.SendReceive(ECreateWriteAndCloseLog, TIpcArgs ( &logFilePckg, &buf));		// ignore error
   337 					}
   338  			}
   339 		}
   340 	logger.Close();
   341 	}
   342 
   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 
   345 result to the log.
   346 
   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.
   350 
   351 Connects to the logging server, creates/opens the log file and writes the text arguments to it.
   352 
   353 This is a "static write".
   354 
   355 Note that the text will be converted to an 8 bit format for the log file.
   356 
   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 
   360 or EOverwrite.
   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. */
   363 	{
   364 	
   365 	VA_LIST list;
   366 	VA_START(list,aFmt);
   367 	DoStaticWriteFormat(aDir,aName,aMode,aFmt,list);
   368 	}
   369 
   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 
   372 to the log.
   373 
   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 
   377 in aFmt.
   378 
   379 Connects to the logging server, creates/opens the log file and writes the text arguments to it.
   380 
   381 This is a "static write".
   382 
   383 Note that the text will be converted to an 8 bit format for the log file. 
   384 
   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 
   388 or EOverwrite.
   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. */
   392 	{
   393 
   394 	DoStaticWriteFormat(aDir,aName,aMode,aFmt,aList);
   395 	}
   396 
   397 //
   398 // 8-bit static writes
   399 //
   400 
   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.
   403 
   404 Connects to the logging server, creates/opens the log file and writes aText to it.
   405 
   406 This is a "static write".
   407 
   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 
   411 or EOverwrite.
   412 @param aText The 8-bit string to write to the log. */
   413 
   414 	{
   415 
   416 	RFileLogger logger;
   417 	TInt ret=logger.Connect();
   418 	if (ret==KErrNone)
   419 		{
   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)
   426             {
   427             TPtrC8 ptr8;
   428             if (logger.LogSTI()) 
   429                 {
   430                 ptr8.Set(aText.Left(KLogBufferSize)); //in LogSTI mode, truncate to KLogBufferSize
   431                 }
   432             else
   433                 {
   434                 ptr8.Set(aText.Left(1600)); // truncate to 1600
   435                 }
   436             buf.Copy(ptr8);
   437             }
   438 		else
   439             {
   440 			ret=logger.iFormatter.FormatTextToWritableBuffer(buf,aText);
   441             }
   442 		if (ret==KErrNone)
   443             {
   444 			logger.DoStaticWrite(buf);
   445             }
   446 		}
   447 	logger.Close();
   448 	}
   449 
   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 
   452 result to the log.
   453 
   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.
   457 
   458 Connects to the logging server, creates/opens the log file and writes the text arguments to it.
   459 
   460 This is a "static write".
   461 
   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 
   465 or EOverwrite.
   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. */
   468 	{
   469 	
   470 	VA_LIST list;
   471 	VA_START(list,aFmt);
   472 	DoStaticWriteFormat(aDir,aName,aMode,aFmt,list);
   473 	}
   474 
   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 
   477 result to the log.
   478 
   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 
   482 in aFmt.
   483 
   484 Connects to the logging server, creates/opens the log file and writes the text arguments to it.
   485 
   486 This is a "static write".
   487 
   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 
   491 or EOverwrite.
   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. */
   495 	{
   496 
   497 	DoStaticWriteFormat(aDir,aName,aMode,aFmt,aList);
   498 	}
   499 
   500 //
   501 // Hex Dumps
   502 //
   503 
   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.
   506 
   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,
   510 
   511 @code
   512 RLog_Ex0000 : 41 42 6C 6B 0A 0A 45 46 20 20 78 7A                       ABlk..EF 
   513  xz
   514 RL_cont0001 : 43 44 6C 6B 0A 0A 45 46 20 20 78 7A                       CDlk..EF 
   515  xz
   516 RL_cont0002 : 45 46 6C 6B 0A 0A 47 48 20 20 78 7A                       EFlk..GH 
   517  xz
   518 .
   519 .
   520 .
   521 @endcode
   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. */
   530 	{
   531 	
   532 	if (iLogFile.Valid() || LogSTI())
   533 		DoHexDump(aHeader,aMargin,aPtr,aLen);
   534 	}
   535 
   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.
   538 
   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,
   542 
   543 @code
   544 RLog_Ex0000 : 41 42 6C 6B 0A 0A 45 46 20 20 78 7A                       ABlk..EF 
   545  xz
   546 RL_cont0001 : 43 44 6C 6B 0A 0A 45 46 20 20 78 7A                       CDlk..EF 
   547  xz
   548 RL_cont0002 : 45 46 6C 6B 0A 0A 47 48 20 20 78 7A                       EFlk..GH 
   549  xz
   550 .
   551 .
   552 .
   553 @endcode
   554 
   555 
   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 
   559 or EOverwrite.
   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. */
   568 	{
   569 
   570 	RFileLogger logger;
   571 	TInt ret=logger.Connect();
   572 	if (ret==KErrNone)
   573 		{
   574 		logger.CreateLog(aDir,aName,aMode);
   575 		if (logger.iLogFile.Valid())
   576 			{
   577 			logger.SetDateAndTime(ETrue,ETrue);
   578 			logger.DoHexDump(aHeader,aMargin,aPtr,aLen);
   579 			}
   580 		logger.CloseLog();
   581 		}
   582 	logger.Close();
   583 	}
   584 
   585 //
   586 // Private functions
   587 //
   588 
   589 TInt RFileLogger::DoConnect()
   590 /**
   591 Connects to the flogger server - default number of message slots = 8 
   592 
   593 @return TInt indicating success code (KErrNone) or an error code.
   594 */
   595 	{
   596 
   597 	return CreateSession(KFLoggerServerName,Version(),0);	// no async IPC
   598 	}
   599 
   600 void RFileLogger::DoWrite(const TDesC8& aBuf)
   601 /**
   602 Sends the pre-formatted write string to the flogger server. 
   603 
   604 @pre
   605 session is already open. 
   606 @param aBuf  8-bit text to be written. 
   607 */
   608 	{
   609 	if (LogSTI()) 
   610 		{
   611 		TBuf<KLogBufferSize> n;
   612 		n.Copy(aBuf);
   613 		TFileName logFileName = iLogFile.Name();
   614 		RDebug::Print(_L("FLG %S %S"),&logFileName,&n);
   615 		} 
   616 	else 		
   617 		{
   618 		TPckg<TLogFile> logFilePckg(iLogFile);
   619 		iLastError=SendReceive(EWriteLog,TIpcArgs (&logFilePckg, &aBuf));
   620 		}
   621 	}
   622 
   623 void RFileLogger::DoStaticWrite(const TDesC8& aBuf)
   624 /**
   625 Sends the pre-formatted write string to the flogger server. 
   626 
   627 @pre 
   628 session is already open. aText is not longer than KLogBufferSize 
   629 @param aBuf  text to write  
   630 @post
   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.
   634 */
   635 	{
   636  	TPckg<TLogFile> logFilePckg(iLogFile);
   637  	if (LogSTI()) 
   638  		{
   639  	 	TBuf<KLogBufferSize> n;
   640  	 	n.Copy(aBuf);
   641 		TFileName logFileName = iLogFile.Name();
   642 		RDebug::Print(_L("FLG %S %S"),&logFileName,&n);
   643         }
   644     else
   645         {
   646         SendReceive(ECreateWriteAndCloseLog, TIpcArgs( &logFilePckg, &aBuf));       // ignore error
   647         }
   648 	}		
   649 
   650 void RFileLogger::DoWriteFormat(TRefByValue<const TDesC16> aFmt, VA_LIST& aList)
   651 /**
   652 Trim format string before sending to the flogger server. 
   653 
   654 @pre
   655 session is already open. 
   656 @param aFmt  c-style formatted text to be written.  
   657 @param aList  any variables required by the format.  
   658 @post
   659 The final string is truncated to KLogBufferSize.
   660 @see void RFileLogger::DoWriteFormat(TRefByValue<const TDesC8> aFmt, VA_LIST& aList)
   661 */
   662 	{		
   663 
   664 	if (iLogFile.Valid() || LogSTI())
   665 		{
   666 		TBuf8<KLogBufferSize> buf;
   667 		iLastError=iFormatter.ConvertToWritableBuffer(buf,aFmt,aList);
   668 		if (iLastError==KErrNone)
   669 			DoWrite(buf);
   670 		}
   671 	}
   672 
   673 void RFileLogger::DoWriteFormat(TRefByValue<const TDesC8> aFmt, VA_LIST& aList)
   674 /**
   675 Trim format string before sending to the flogger server. 
   676 
   677 @pre
   678 session is already open. 
   679 @param aFmt  c-style formatted text to be written.  
   680 @param aList  any variables required by the format.  
   681 @post
   682 The final string is truncated to KLogBufferSize.
   683 */
   684 	{		
   685 
   686 	if (iLogFile.Valid() || LogSTI())
   687 		{
   688 		TBuf8<KLogBufferSize> buf;
   689 		iLastError=iFormatter.ConvertToWritableBuffer(buf,aFmt,aList);
   690 		if (iLastError==KErrNone)
   691 			DoWrite(buf);
   692 		}
   693 	}
   694 
   695 void RFileLogger::DoStaticWriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC> aFmt, VA_LIST& aList)
   696 /**
   697 Sends a format write string to the flogger server to write to the specified file.
   698 
   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.  
   703 @post
   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)
   708 */
   709 	{
   710 
   711 	RFileLogger logger;
   712 	TInt ret=logger.Connect();
   713 	if (ret==KErrNone)
   714 		{
   715 		logger.SetDateAndTime(ETrue,ETrue);
   716 		logger.iLogFile.Set(aDir,aName,aMode);
   717 		TBuf8<KLogBufferSize> buf;
   718 		ret=logger.iFormatter.ConvertToWritableBuffer(buf,aFmt,aList);
   719 		if (ret==KErrNone)
   720 			logger.DoStaticWrite(buf);
   721 		}
   722 	logger.Close();
   723 	}
   724 
   725 void RFileLogger::DoStaticWriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC8> aFmt, VA_LIST& aList)
   726 /**
   727 Sends a format write string to the flogger server to write to the specified file.
   728 There is no pre-condition.
   729 
   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.  
   734 @post 
   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.
   738 */
   739 	{
   740 
   741 	RFileLogger logger;
   742 	TInt ret=logger.Connect();
   743 	if (ret==KErrNone)
   744 		{
   745 		logger.SetDateAndTime(ETrue,ETrue);
   746 		logger.iLogFile.Set(aDir,aName,aMode);
   747 		TBuf8<KLogBufferSize> buf;
   748 		ret=logger.iFormatter.ConvertToWritableBuffer(buf,aFmt,aList);
   749 		if (ret==KErrNone)
   750 			logger.DoStaticWrite(buf);
   751 		}
   752 	logger.Close();
   753 	}
   754 
   755 void RFileLogger::DoHexDump(const TText* aHeader, const TText* aMargin, const TUint8* aPtr, TInt aLen)
   756 /**
   757 Static Write. Dumps arbitrary data to the log file as a standard hex dump. 
   758 
   759 @pre 
   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  
   767 @post
   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
   777 */
   778 	{
   779 
   780 	if (aPtr==NULL)		// nothing to do
   781 		return;
   782 
   783 	TBuf<KLogBufferSize> buf;
   784 	TBuf8<KLogBufferSize> temp;
   785 	TInt i=0;
   786 	const TText* p=aHeader;
   787 	while (aLen>0)
   788 		{
   789 		if (p==NULL)
   790 			p=BLANK;	// if NULL set p to a blank string
   791 		TInt n=(aLen>KHexDumpWidth ? KHexDumpWidth : aLen);
   792 		buf.AppendFormat(KFirstFormatString,p,i);
   793 		TInt j;
   794 		for (j=0; j<n; j++)
   795 			buf.AppendFormat(KSecondFormatString,aPtr[i+j]);
   796 		while (j++<KHexDumpWidth)
   797 			buf.Append(KThreeSpaces);
   798 		buf.Append(KTwoSpaces);
   799 		for (j=0; j<n; j++)
   800 			buf.AppendFormat(KThirdFormatString,(aPtr[i+j]<32 || aPtr[i+j]>126) ? KFullStopChar : aPtr[i+j]);
   801 		
   802 		iLastError=iFormatter.FormatTextToWritableBuffer(temp,buf);
   803 		if (iLastError==KErrNone)
   804 			DoWrite(temp);
   805 		
   806 		buf.SetLength(0);
   807 		temp.SetLength(0);
   808 		aLen-=n;
   809 		i+=n;
   810 		p=aMargin;
   811 		}
   812 	}
   813