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.
sl@0
     1
// Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
*/
sl@0
    19
sl@0
    20
#include <f32file.h>
sl@0
    21
#include <flogger.h>
sl@0
    22
#include "FLOGSTD.H"
sl@0
    23
sl@0
    24
/** 
sl@0
    25
Macro for Single blank space.
sl@0
    26
sl@0
    27
*/
sl@0
    28
#define BLANK	_S("")
sl@0
    29
sl@0
    30
const TInt KHexDumpWidth=16;
sl@0
    31
sl@0
    32
/**
sl@0
    33
Literal constant that hold a string and unicode hex.
sl@0
    34
sl@0
    35
*/
sl@0
    36
_LIT(KFirstFormatString,"%s%04x : ");
sl@0
    37
sl@0
    38
/**
sl@0
    39
Literal constant that hold a string and unicode hex.
sl@0
    40
sl@0
    41
*/
sl@0
    42
_LIT(KSecondFormatString,"%02x ");
sl@0
    43
sl@0
    44
/**
sl@0
    45
Character Constant.
sl@0
    46
sl@0
    47
*/
sl@0
    48
_LIT(KThirdFormatString,"%c");
sl@0
    49
sl@0
    50
/** 
sl@0
    51
Literal Constant for 3 blank spaces. 
sl@0
    52
sl@0
    53
*/
sl@0
    54
_LIT(KThreeSpaces,"   ");
sl@0
    55
sl@0
    56
/** 
sl@0
    57
Literal Constant for 2 blank spaces. 
sl@0
    58
sl@0
    59
*/
sl@0
    60
_LIT(KTwoSpaces," ");
sl@0
    61
sl@0
    62
sl@0
    63
IMPORT_C extern const TBool KFloggerSTI;
sl@0
    64
sl@0
    65
/*
sl@0
    66
RFileLogger class definition
sl@0
    67
*/
sl@0
    68
sl@0
    69
EXPORT_C RFileLogger::RFileLogger() 
sl@0
    70
	: RSessionBase(), iFormatter(), iLastError(KErrNone), iLogSTI(KFloggerSTI)
sl@0
    71
/** Creates a default RFileLogger object. */
sl@0
    72
	{}
sl@0
    73
sl@0
    74
EXPORT_C RFileLogger::~RFileLogger()
sl@0
    75
/** Empty destructor. 
sl@0
    76
Clients with open sessions must end the session by calling Close() beforehand.
sl@0
    77
Note that it does not delete the log file.*/
sl@0
    78
	{}
sl@0
    79
sl@0
    80
EXPORT_C TVersion RFileLogger::Version() const
sl@0
    81
/** Returns the version number.
sl@0
    82
sl@0
    83
@return The version number. */
sl@0
    84
	{
sl@0
    85
sl@0
    86
	return(TVersion(KFLogSrvMajorVersionNumber,KFLogSrvMinorVersionNumber,KFLogSrvBuildVersionNumber));
sl@0
    87
	}
sl@0
    88
sl@0
    89
EXPORT_C TInt RFileLogger::Connect()
sl@0
    90
/** Connects to the file logger server with the default number of message slots, which is 8.
sl@0
    91
sl@0
    92
This function does not need to be called if you are using the static versions 
sl@0
    93
of Write(), WriteFormat() or HexDump().
sl@0
    94
sl@0
    95
@return KErrNone if successful, otherwise one of the system-wide error codes. */
sl@0
    96
	{
sl@0
    97
sl@0
    98
	TInt ret=DoConnect();
sl@0
    99
	if (ret==KErrNotFound)
sl@0
   100
		{
sl@0
   101
		ret=FLogger::Start();
sl@0
   102
		if (ret==KErrNone || ret==KErrAlreadyExists)
sl@0
   103
			ret=DoConnect();
sl@0
   104
		}
sl@0
   105
	return ret;
sl@0
   106
	}
sl@0
   107
sl@0
   108
EXPORT_C void RFileLogger::SetDateAndTime(TBool aUseDate,TBool aUseTime)
sl@0
   109
/** Specifies whether time and/or date should be appended to log data.
sl@0
   110
sl@0
   111
Appending of the time and date to log entries can be switched on and off 
sl@0
   112
at anytime between creation and destruction of RFileLogger.
sl@0
   113
sl@0
   114
This function does not need to be called if you are using the static versions 
sl@0
   115
of Write(), WriteFormat() or HexDump().
sl@0
   116
sl@0
   117
@param aUseDate Use ETrue to log the date, otherwise EFalse.
sl@0
   118
@param aUseTime Use ETrue to log the time, otherwise EFalse. */
sl@0
   119
	{
sl@0
   120
sl@0
   121
	iFormatter.SetDateAndTime(aUseDate,aUseTime);
sl@0
   122
	}
sl@0
   123
sl@0
   124
EXPORT_C void RFileLogger::CreateLog(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode)
sl@0
   125
/** Creates or opens a file for logging.
sl@0
   126
sl@0
   127
When specifying a directory for logging only specify the relative path to 
sl@0
   128
'C:\\Logs\\' and do not append a '\\' to the end of the path either. CreateLog() 
sl@0
   129
only creates the specified log file if the directory exists. This means that 
sl@0
   130
switching logging on and off can be achieved without having to re-compile, 
sl@0
   131
by just removing or renaming the log directory.
sl@0
   132
sl@0
   133
aLogFile.iValid is set according to whether logging will actually occur or not. 
sl@0
   134
sl@0
   135
@param aDir The directory relative to 'C:\\Logs\\' where the log file resides 
sl@0
   136
or is to be created.
sl@0
   137
@param aName The name of the log file.
sl@0
   138
@param aMode The mode in which the log file should be opened, either EAppend 
sl@0
   139
or EOverwrite. */
sl@0
   140
	{
sl@0
   141
sl@0
   142
	iLogFile.Set(aDir,aName,aMode);
sl@0
   143
	TPckg<TLogFile> logFilePckg(iLogFile);
sl@0
   144
 	iLastError=SendReceive(ECreateLog, TIpcArgs( &logFilePckg));
sl@0
   145
sl@0
   146
	if (iLastError!=KErrNone && !LogSTI())
sl@0
   147
		iLogFile.SetValid(EFalse);
sl@0
   148
	}
sl@0
   149
sl@0
   150
EXPORT_C void RFileLogger::CloseLog()
sl@0
   151
/** Closes the log file, iLogFile.
sl@0
   152
sl@0
   153
This function closes the log file previously created or opened by CreateLog(). */
sl@0
   154
	{
sl@0
   155
	TPckg<TLogFile> logFilePckg(iLogFile);
sl@0
   156
 	iLastError=SendReceive(ECloseLog,TIpcArgs( &logFilePckg));
sl@0
   157
	}
sl@0
   158
sl@0
   159
EXPORT_C TBool RFileLogger::LogValid() const
sl@0
   160
/** Returns the status of the log.
sl@0
   161
sl@0
   162
@return ETrue if the log file is valid; otherwise EFalse. */
sl@0
   163
	{
sl@0
   164
sl@0
   165
	return iLogFile.Valid();
sl@0
   166
	}
sl@0
   167
sl@0
   168
EXPORT_C TInt RFileLogger::LastError() const
sl@0
   169
/** Returns the last error status that has been set.
sl@0
   170
sl@0
   171
@return This value can be set to any of the valid error codes from any of 
sl@0
   172
the functions in this class. */
sl@0
   173
	{
sl@0
   174
sl@0
   175
	return iLastError;
sl@0
   176
	}
sl@0
   177
sl@0
   178
EXPORT_C TBool RFileLogger::LogSTI() const
sl@0
   179
/** Returns patchable constant value.
sl@0
   180
sl@0
   181
@return This value specify the logging output. The default value EFalse 
sl@0
   182
cause that the logs are stored to filesystem. ETrue intorduced as in CR 1688
sl@0
   183
is used for logging using RDebug::Print */
sl@0
   184
	{
sl@0
   185
sl@0
   186
	return iLogSTI;
sl@0
   187
	}
sl@0
   188
sl@0
   189
//
sl@0
   190
// 16-bit non-static writes
sl@0
   191
//
sl@0
   192
sl@0
   193
EXPORT_C void RFileLogger::Write(const TDesC16& aText)
sl@0
   194
/** Writes a string of Unicode characters to an open log, iLogFile, if it is a valid file.
sl@0
   195
sl@0
   196
Note that the text will be converted to an 8 bit format for the log file. 
sl@0
   197
sl@0
   198
@param aText The Unicode string to write to the open log. */
sl@0
   199
	{
sl@0
   200
sl@0
   201
	if (iLogFile.Valid() || LogSTI())
sl@0
   202
		{
sl@0
   203
		TBuf8<KLogBufferSize> buf;
sl@0
   204
		iLastError=iFormatter.FormatTextToWritableBuffer(buf,aText);
sl@0
   205
		if (iLastError==KErrNone)
sl@0
   206
			DoWrite(buf);
sl@0
   207
		}
sl@0
   208
	}
sl@0
   209
	
sl@0
   210
EXPORT_C void RFileLogger::WriteFormat(TRefByValue<const TDesC16> aFmt,...)
sl@0
   211
/** Formats the remaining arguments of the function according to aFmt, and writes the 
sl@0
   212
result to the log, iLogFile, if it is a valid file.
sl@0
   213
sl@0
   214
The format string aFmt contains literal text, embedded with directives, for converting 
sl@0
   215
the trailing list of arguments into text. The number and type of arguments is dictated 
sl@0
   216
by the structure of the directives in aFmt.
sl@0
   217
sl@0
   218
Note that the text will be converted to an 8 bit format for the log file. 
sl@0
   219
sl@0
   220
@param aFmt The 16-bit non modifiable descriptor containing the format string. 
sl@0
   221
The TRefByValue class provides a constructor which takes a TDesC16 type. */
sl@0
   222
	{
sl@0
   223
sl@0
   224
	VA_LIST list;
sl@0
   225
	VA_START(list,aFmt);
sl@0
   226
	DoWriteFormat(aFmt,list);
sl@0
   227
	}
sl@0
   228
sl@0
   229
EXPORT_C void RFileLogger::WriteFormat(TRefByValue<const TDesC16> aFmt, VA_LIST& aList)
sl@0
   230
/** Formats the arguments pointed to by aList according to aFmt, and writes the 
sl@0
   231
result to the log, iLogFile, if it is a valid file.
sl@0
   232
sl@0
   233
The format string aFmt contains literal text, embedded with directives, 
sl@0
   234
for converting the trailing list of arguments into text. The number and type 
sl@0
   235
of arguments pointed to by aList is dictated by the structure of the directives 
sl@0
   236
in aFmt.
sl@0
   237
sl@0
   238
Note that the text will be converted to an 8 bit format for the log file. 
sl@0
   239
sl@0
   240
@param aFmt The 16-bit non modifiable descriptor containing the format string. 
sl@0
   241
The TRefByValue class provides a constructor which takes a TDesC16 type. 
sl@0
   242
@param aList A pointer to an argument list. */
sl@0
   243
	{
sl@0
   244
sl@0
   245
	DoWriteFormat(aFmt,aList);
sl@0
   246
	}
sl@0
   247
sl@0
   248
//
sl@0
   249
// 8-bit non-static writes
sl@0
   250
//
sl@0
   251
sl@0
   252
EXPORT_C void RFileLogger::Write(const TDesC8& aText)
sl@0
   253
/** Writes a string of 8-bit characters to an open log, iLogFile, if it is a valid file.
sl@0
   254
sl@0
   255
@param aText The 8-bit character string to write to the open log. */
sl@0
   256
	{
sl@0
   257
sl@0
   258
	if (iLogFile.Valid() || LogSTI())
sl@0
   259
		{
sl@0
   260
		TBuf8<KLogBufferSize> buf;
sl@0
   261
		iLastError=iFormatter.FormatTextToWritableBuffer(buf,aText);
sl@0
   262
		if (iLastError==KErrNone)
sl@0
   263
			DoWrite(buf);
sl@0
   264
		}
sl@0
   265
	}
sl@0
   266
	
sl@0
   267
EXPORT_C void RFileLogger::WriteFormat(TRefByValue<const TDesC8> aFmt,...)
sl@0
   268
/** Formats the remaining arguments of the function according to aFmt, and writes the 
sl@0
   269
result to the log, iLogFile, if it is a valid file.
sl@0
   270
sl@0
   271
The format string aFmt contains literal text, embedded with directives, 
sl@0
   272
for converting the trailing list of arguments into text. The number and type 
sl@0
   273
of arguments is dictated by the structure of the directives in aFmt.
sl@0
   274
sl@0
   275
@param aFmt The 8 bit non modifiable descriptor containing the format string. 
sl@0
   276
The TRefByValue class provides a constructor which takes a TDesC8 type.*/
sl@0
   277
	{
sl@0
   278
sl@0
   279
	VA_LIST list;
sl@0
   280
	VA_START(list,aFmt);
sl@0
   281
	DoWriteFormat(aFmt,list);
sl@0
   282
	}
sl@0
   283
sl@0
   284
EXPORT_C void RFileLogger::WriteFormat(TRefByValue<const TDesC8> aFmt, VA_LIST& aList)
sl@0
   285
/** Formats the arguments pointed to by aList according to aFmt, and writes the result 
sl@0
   286
to the log, iLogFile, if it is a valid file.
sl@0
   287
sl@0
   288
The format string aFmt contains literal text, embedded with directives, 
sl@0
   289
for converting the trailing list of arguments into text. The number and type 
sl@0
   290
of arguments pointed to by aList is dictated by the structure of the directives 
sl@0
   291
in aFmt.
sl@0
   292
sl@0
   293
@param aFmt The 8 bit non modifiable descriptor containing the format string. 
sl@0
   294
The TRefByValue class provides a constructor which takes a TDesC8 type. 
sl@0
   295
@param aList A pointer to an argument list. */
sl@0
   296
	{
sl@0
   297
sl@0
   298
	DoWriteFormat(aFmt,aList);
sl@0
   299
	}
sl@0
   300
sl@0
   301
//
sl@0
   302
// 16-bit static writes
sl@0
   303
//
sl@0
   304
sl@0
   305
EXPORT_C void RFileLogger::Write(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, const TDesC16& aText)
sl@0
   306
/** Writes a string of 16-bit characters to an open log.
sl@0
   307
sl@0
   308
Connects to the logging server, creates/opens the log file and write aText to it.
sl@0
   309
sl@0
   310
This is a "static write".
sl@0
   311
sl@0
   312
Note that the text will be converted to an 8 bit format for the log file. 
sl@0
   313
sl@0
   314
@param aDir The directory relative to 'C:\\Logs\\' where the log file resides.
sl@0
   315
@param aName The name of the log file.
sl@0
   316
@param aMode The mode in which the log file should be opened: either EAppend or EOverwrite.
sl@0
   317
@param aText The Unicode string to write to the log. */
sl@0
   318
	{
sl@0
   319
sl@0
   320
	RFileLogger logger;
sl@0
   321
	TInt ret=logger.Connect();
sl@0
   322
	if (ret==KErrNone)
sl@0
   323
		{
sl@0
   324
		logger.SetDateAndTime(ETrue,ETrue);
sl@0
   325
		logger.iLogFile.Set(aDir,aName,aMode);
sl@0
   326
		TBuf8<KLogBufferSize> buf;
sl@0
   327
		ret=logger.iFormatter.FormatTextToWritableBuffer(buf,aText);
sl@0
   328
		if (ret==KErrNone)
sl@0
   329
			{
sl@0
   330
			if (logger.LogSTI()) 
sl@0
   331
				{
sl@0
   332
				logger.DoStaticWrite(buf);
sl@0
   333
				} else 
sl@0
   334
					{
sl@0
   335
					TPckg<TLogFile> logFilePckg(logger.iLogFile);
sl@0
   336
					logger.SendReceive(ECreateWriteAndCloseLog, TIpcArgs ( &logFilePckg, &buf));		// ignore error
sl@0
   337
					}
sl@0
   338
 			}
sl@0
   339
		}
sl@0
   340
	logger.Close();
sl@0
   341
	}
sl@0
   342
sl@0
   343
EXPORT_C void RFileLogger::WriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC16> aFmt,...)
sl@0
   344
/** Formats the remaining arguments of the function according to aFmt and writes the 
sl@0
   345
result to the log.
sl@0
   346
sl@0
   347
The format string aFmt contains literal text, embedded with directives, 
sl@0
   348
for converting the trailing list of arguments into text. The number and type 
sl@0
   349
of arguments is dictated by the structure of the directives in aFmt.
sl@0
   350
sl@0
   351
Connects to the logging server, creates/opens the log file and writes the text arguments to it.
sl@0
   352
sl@0
   353
This is a "static write".
sl@0
   354
sl@0
   355
Note that the text will be converted to an 8 bit format for the log file.
sl@0
   356
sl@0
   357
@param aDir The directory relative to 'C:\\Logs\\' where the log file resides.
sl@0
   358
@param aName The name of the log file.
sl@0
   359
@param aMode The mode in which the log file should be opened: either EAppend 
sl@0
   360
or EOverwrite.
sl@0
   361
@param aFmt The 16 bit non modifiable descriptor containing the format string. 
sl@0
   362
The TRefByValue class provides a constructor which takes a TDesC16 type. */
sl@0
   363
	{
sl@0
   364
	
sl@0
   365
	VA_LIST list;
sl@0
   366
	VA_START(list,aFmt);
sl@0
   367
	DoStaticWriteFormat(aDir,aName,aMode,aFmt,list);
sl@0
   368
	}
sl@0
   369
sl@0
   370
EXPORT_C void RFileLogger::WriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC16> aFmt, VA_LIST& aList)
sl@0
   371
/** Formats the arguments pointed to by aList according to aFmt, and writes the result 
sl@0
   372
to the log.
sl@0
   373
sl@0
   374
The format string aFmt contains literal text, embedded with directives, 
sl@0
   375
for converting the trailing list of arguments into text. The number and type 
sl@0
   376
of arguments pointed to by aList is dictated by the structure of the directives 
sl@0
   377
in aFmt.
sl@0
   378
sl@0
   379
Connects to the logging server, creates/opens the log file and writes the text arguments to it.
sl@0
   380
sl@0
   381
This is a "static write".
sl@0
   382
sl@0
   383
Note that the text will be converted to an 8 bit format for the log file. 
sl@0
   384
sl@0
   385
@param aDir The directory relative to 'C:\\Logs\\' where the log file resides.
sl@0
   386
@param aName The name of the log file.
sl@0
   387
@param aMode The mode in which the log file should be opened: either EAppend 
sl@0
   388
or EOverwrite.
sl@0
   389
@param aFmt The 16 bit non modifiable descriptor containing the format string. 
sl@0
   390
The TRefByValue class provides a constructor which takes a TDesC16 type. 
sl@0
   391
@param aList A pointer to an argument list. */
sl@0
   392
	{
sl@0
   393
sl@0
   394
	DoStaticWriteFormat(aDir,aName,aMode,aFmt,aList);
sl@0
   395
	}
sl@0
   396
sl@0
   397
//
sl@0
   398
// 8-bit static writes
sl@0
   399
//
sl@0
   400
sl@0
   401
EXPORT_C void RFileLogger::Write(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, const TDesC8& aText)
sl@0
   402
/** Writes a string of 8-bit characters to an open log.
sl@0
   403
sl@0
   404
Connects to the logging server, creates/opens the log file and writes aText to it.
sl@0
   405
sl@0
   406
This is a "static write".
sl@0
   407
sl@0
   408
@param aDir The directory relative to 'C:\\Logs\\' where the log file resides.
sl@0
   409
@param aName The name of the log file.
sl@0
   410
@param aMode The mode in which the log file should be opened: either EAppend 
sl@0
   411
or EOverwrite.
sl@0
   412
@param aText The 8-bit string to write to the log. */
sl@0
   413
sl@0
   414
	{
sl@0
   415
sl@0
   416
	RFileLogger logger;
sl@0
   417
	TInt ret=logger.Connect();
sl@0
   418
	if (ret==KErrNone)
sl@0
   419
		{
sl@0
   420
		logger.SetDateAndTime(ETrue,ETrue);
sl@0
   421
		logger.iLogFile.Set(aDir,aName,aMode);
sl@0
   422
//		TBuf8<KLogBufferSize> buf;
sl@0
   423
		TBuf8<1600> buf; //Want at least an mtu sized buffer
sl@0
   424
		//PG 14/08/2002 - If mode is set to *Raw, Don't change format of client buffer
sl@0
   425
		if(aMode == EFileLoggingModeAppendRaw || aMode == EFileLoggingModeOverwriteRaw)
sl@0
   426
            {
sl@0
   427
            TPtrC8 ptr8;
sl@0
   428
            if (logger.LogSTI()) 
sl@0
   429
                {
sl@0
   430
                ptr8.Set(aText.Left(KLogBufferSize)); //in LogSTI mode, truncate to KLogBufferSize
sl@0
   431
                }
sl@0
   432
            else
sl@0
   433
                {
sl@0
   434
                ptr8.Set(aText.Left(1600)); // truncate to 1600
sl@0
   435
                }
sl@0
   436
            buf.Copy(ptr8);
sl@0
   437
            }
sl@0
   438
		else
sl@0
   439
            {
sl@0
   440
			ret=logger.iFormatter.FormatTextToWritableBuffer(buf,aText);
sl@0
   441
            }
sl@0
   442
		if (ret==KErrNone)
sl@0
   443
            {
sl@0
   444
			logger.DoStaticWrite(buf);
sl@0
   445
            }
sl@0
   446
		}
sl@0
   447
	logger.Close();
sl@0
   448
	}
sl@0
   449
sl@0
   450
EXPORT_C void RFileLogger::WriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC8> aFmt,...)
sl@0
   451
/** Formats the remaining arguments of the function according to aFmt and writes the 
sl@0
   452
result to the log.
sl@0
   453
sl@0
   454
The format string aFmt contains literal text, embedded with directives, 
sl@0
   455
for converting the trailing list of arguments into text. The number and type 
sl@0
   456
of arguments is dictated by the structure of the directives in aFmt.
sl@0
   457
sl@0
   458
Connects to the logging server, creates/opens the log file and writes the text arguments to it.
sl@0
   459
sl@0
   460
This is a "static write".
sl@0
   461
sl@0
   462
@param aDir The directory relative to 'C:\\Logs\\' where the log file resides.
sl@0
   463
@param aName The name of the log file.
sl@0
   464
@param aMode The mode in which the log file should be opened: either EAppend 
sl@0
   465
or EOverwrite.
sl@0
   466
@param aFmt The 8 bit non modifiable descriptor containing the format string. 
sl@0
   467
The TRefByValue class provides a constructor which takes a TDesC8 type. */
sl@0
   468
	{
sl@0
   469
	
sl@0
   470
	VA_LIST list;
sl@0
   471
	VA_START(list,aFmt);
sl@0
   472
	DoStaticWriteFormat(aDir,aName,aMode,aFmt,list);
sl@0
   473
	}
sl@0
   474
sl@0
   475
EXPORT_C void RFileLogger::WriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC8> aFmt, VA_LIST& aList)
sl@0
   476
/** Formats the arguments pointed to by aList according to aFmt, and writes the 
sl@0
   477
result to the log.
sl@0
   478
sl@0
   479
The format string aFmt contains literal text, embedded with directives, 
sl@0
   480
for converting the trailing list of arguments into text. The number and type 
sl@0
   481
of arguments pointed to by aList is dictated by the structure of the directives 
sl@0
   482
in aFmt.
sl@0
   483
sl@0
   484
Connects to the logging server, creates/opens the log file and writes the text arguments to it.
sl@0
   485
sl@0
   486
This is a "static write".
sl@0
   487
sl@0
   488
@param aDir The directory relative to 'C:\\Logs\\' where the log file resides.
sl@0
   489
@param aName The name of the log file.
sl@0
   490
@param aMode The mode in which the log file should be opened: either EAppend 
sl@0
   491
or EOverwrite.
sl@0
   492
@param aFmt The 8 bit non modifiable descriptor containing the format string. 
sl@0
   493
The TRefByValue class provides a constructor which takes a TDesC8 type. 
sl@0
   494
@param aList A pointer to an argument list. */
sl@0
   495
	{
sl@0
   496
sl@0
   497
	DoStaticWriteFormat(aDir,aName,aMode,aFmt,aList);
sl@0
   498
	}
sl@0
   499
sl@0
   500
//
sl@0
   501
// Hex Dumps
sl@0
   502
//
sl@0
   503
sl@0
   504
EXPORT_C void RFileLogger::HexDump(const TText* aHeader, const TText* aMargin, const TUint8* aPtr, TInt aLen)
sl@0
   505
/** Writes a hex dump of the specified data to the log.
sl@0
   506
sl@0
   507
The format of the hex dump entry is a header followed by the hex string of 
sl@0
   508
the data followed by any printable characters (non printable characters are 
sl@0
   509
substituted with '.'). For example,
sl@0
   510
sl@0
   511
@code
sl@0
   512
RLog_Ex0000 : 41 42 6C 6B 0A 0A 45 46 20 20 78 7A                       ABlk..EF 
sl@0
   513
 xz
sl@0
   514
RL_cont0001 : 43 44 6C 6B 0A 0A 45 46 20 20 78 7A                       CDlk..EF 
sl@0
   515
 xz
sl@0
   516
RL_cont0002 : 45 46 6C 6B 0A 0A 47 48 20 20 78 7A                       EFlk..GH 
sl@0
   517
 xz
sl@0
   518
.
sl@0
   519
.
sl@0
   520
.
sl@0
   521
@endcode
sl@0
   522
@param aHeader A label for the hex dump entry. The label has a sequence number 
sl@0
   523
appended to it automatically.
sl@0
   524
@param aMargin A continuation label if the hex dump exceeds one line. This 
sl@0
   525
label is displayed on all subsequent lines after line one and also has a sequence 
sl@0
   526
number appended to it.
sl@0
   527
@param aPtr The data that is to be converted to a hex string.
sl@0
   528
@param aLen How many of the characters in aPtr are to be converted. Conversion 
sl@0
   529
always starts from position 0 within aPtr. */
sl@0
   530
	{
sl@0
   531
	
sl@0
   532
	if (iLogFile.Valid() || LogSTI())
sl@0
   533
		DoHexDump(aHeader,aMargin,aPtr,aLen);
sl@0
   534
	}
sl@0
   535
sl@0
   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)
sl@0
   537
/** Writes a hex dump of the specified data to the log.
sl@0
   538
sl@0
   539
The format of the hex dump entry is a header followed by the hex string of 
sl@0
   540
the data followed by any printable characters (non printable characters are 
sl@0
   541
substituted with '.'). For example,
sl@0
   542
sl@0
   543
@code
sl@0
   544
RLog_Ex0000 : 41 42 6C 6B 0A 0A 45 46 20 20 78 7A                       ABlk..EF 
sl@0
   545
 xz
sl@0
   546
RL_cont0001 : 43 44 6C 6B 0A 0A 45 46 20 20 78 7A                       CDlk..EF 
sl@0
   547
 xz
sl@0
   548
RL_cont0002 : 45 46 6C 6B 0A 0A 47 48 20 20 78 7A                       EFlk..GH 
sl@0
   549
 xz
sl@0
   550
.
sl@0
   551
.
sl@0
   552
.
sl@0
   553
@endcode
sl@0
   554
sl@0
   555
sl@0
   556
@param aDir The directory relative to 'C:\\Logs\\' where the log file resides.
sl@0
   557
@param aName The name of the log file.
sl@0
   558
@param aMode The mode in which the log file should be opened: either EAppend 
sl@0
   559
or EOverwrite.
sl@0
   560
@param aHeader A label for the hex dump entry. The label has a sequence number 
sl@0
   561
appended to it automatically.
sl@0
   562
@param aMargin A continuation label if the hex dump exceeds one line. This 
sl@0
   563
label is displayed on all subsequent lines after line one and also has a sequence 
sl@0
   564
number appended to it.
sl@0
   565
@param aPtr The data that is to be converted to a hex string.
sl@0
   566
@param aLen How many of the characters in aPtr are to be converted. Conversion 
sl@0
   567
always starts from position 0 within aPtr. */
sl@0
   568
	{
sl@0
   569
sl@0
   570
	RFileLogger logger;
sl@0
   571
	TInt ret=logger.Connect();
sl@0
   572
	if (ret==KErrNone)
sl@0
   573
		{
sl@0
   574
		logger.CreateLog(aDir,aName,aMode);
sl@0
   575
		if (logger.iLogFile.Valid())
sl@0
   576
			{
sl@0
   577
			logger.SetDateAndTime(ETrue,ETrue);
sl@0
   578
			logger.DoHexDump(aHeader,aMargin,aPtr,aLen);
sl@0
   579
			}
sl@0
   580
		logger.CloseLog();
sl@0
   581
		}
sl@0
   582
	logger.Close();
sl@0
   583
	}
sl@0
   584
sl@0
   585
//
sl@0
   586
// Private functions
sl@0
   587
//
sl@0
   588
sl@0
   589
TInt RFileLogger::DoConnect()
sl@0
   590
/**
sl@0
   591
Connects to the flogger server - default number of message slots = 8 
sl@0
   592
sl@0
   593
@return TInt indicating success code (KErrNone) or an error code.
sl@0
   594
*/
sl@0
   595
	{
sl@0
   596
sl@0
   597
	return CreateSession(KFLoggerServerName,Version(),0);	// no async IPC
sl@0
   598
	}
sl@0
   599
sl@0
   600
void RFileLogger::DoWrite(const TDesC8& aBuf)
sl@0
   601
/**
sl@0
   602
Sends the pre-formatted write string to the flogger server. 
sl@0
   603
sl@0
   604
@pre
sl@0
   605
session is already open. 
sl@0
   606
@param aBuf  8-bit text to be written. 
sl@0
   607
*/
sl@0
   608
	{
sl@0
   609
	if (LogSTI()) 
sl@0
   610
		{
sl@0
   611
		TBuf<KLogBufferSize> n;
sl@0
   612
		n.Copy(aBuf);
sl@0
   613
		TFileName logFileName = iLogFile.Name();
sl@0
   614
		RDebug::Print(_L("FLG %S %S"),&logFileName,&n);
sl@0
   615
		} 
sl@0
   616
	else 		
sl@0
   617
		{
sl@0
   618
		TPckg<TLogFile> logFilePckg(iLogFile);
sl@0
   619
		iLastError=SendReceive(EWriteLog,TIpcArgs (&logFilePckg, &aBuf));
sl@0
   620
		}
sl@0
   621
	}
sl@0
   622
sl@0
   623
void RFileLogger::DoStaticWrite(const TDesC8& aBuf)
sl@0
   624
/**
sl@0
   625
Sends the pre-formatted write string to the flogger server. 
sl@0
   626
sl@0
   627
@pre 
sl@0
   628
session is already open. aText is not longer than KLogBufferSize 
sl@0
   629
@param aBuf  text to write  
sl@0
   630
@post
sl@0
   631
The text is only written if the original connection was successful. 
sl@0
   632
No text is ever written if the directory specified in the original connection request does not exist. 
sl@0
   633
Each line is preceded in the date and time.
sl@0
   634
*/
sl@0
   635
	{
sl@0
   636
 	TPckg<TLogFile> logFilePckg(iLogFile);
sl@0
   637
 	if (LogSTI()) 
sl@0
   638
 		{
sl@0
   639
 	 	TBuf<KLogBufferSize> n;
sl@0
   640
 	 	n.Copy(aBuf);
sl@0
   641
		TFileName logFileName = iLogFile.Name();
sl@0
   642
		RDebug::Print(_L("FLG %S %S"),&logFileName,&n);
sl@0
   643
        }
sl@0
   644
    else
sl@0
   645
        {
sl@0
   646
        SendReceive(ECreateWriteAndCloseLog, TIpcArgs( &logFilePckg, &aBuf));       // ignore error
sl@0
   647
        }
sl@0
   648
	}		
sl@0
   649
sl@0
   650
void RFileLogger::DoWriteFormat(TRefByValue<const TDesC16> aFmt, VA_LIST& aList)
sl@0
   651
/**
sl@0
   652
Trim format string before sending to the flogger server. 
sl@0
   653
sl@0
   654
@pre
sl@0
   655
session is already open. 
sl@0
   656
@param aFmt  c-style formatted text to be written.  
sl@0
   657
@param aList  any variables required by the format.  
sl@0
   658
@post
sl@0
   659
The final string is truncated to KLogBufferSize.
sl@0
   660
@see void RFileLogger::DoWriteFormat(TRefByValue<const TDesC8> aFmt, VA_LIST& aList)
sl@0
   661
*/
sl@0
   662
	{		
sl@0
   663
sl@0
   664
	if (iLogFile.Valid() || LogSTI())
sl@0
   665
		{
sl@0
   666
		TBuf8<KLogBufferSize> buf;
sl@0
   667
		iLastError=iFormatter.ConvertToWritableBuffer(buf,aFmt,aList);
sl@0
   668
		if (iLastError==KErrNone)
sl@0
   669
			DoWrite(buf);
sl@0
   670
		}
sl@0
   671
	}
sl@0
   672
sl@0
   673
void RFileLogger::DoWriteFormat(TRefByValue<const TDesC8> aFmt, VA_LIST& aList)
sl@0
   674
/**
sl@0
   675
Trim format string before sending to the flogger server. 
sl@0
   676
sl@0
   677
@pre
sl@0
   678
session is already open. 
sl@0
   679
@param aFmt  c-style formatted text to be written.  
sl@0
   680
@param aList  any variables required by the format.  
sl@0
   681
@post
sl@0
   682
The final string is truncated to KLogBufferSize.
sl@0
   683
*/
sl@0
   684
	{		
sl@0
   685
sl@0
   686
	if (iLogFile.Valid() || LogSTI())
sl@0
   687
		{
sl@0
   688
		TBuf8<KLogBufferSize> buf;
sl@0
   689
		iLastError=iFormatter.ConvertToWritableBuffer(buf,aFmt,aList);
sl@0
   690
		if (iLastError==KErrNone)
sl@0
   691
			DoWrite(buf);
sl@0
   692
		}
sl@0
   693
	}
sl@0
   694
sl@0
   695
void RFileLogger::DoStaticWriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC> aFmt, VA_LIST& aList)
sl@0
   696
/**
sl@0
   697
Sends a format write string to the flogger server to write to the specified file.
sl@0
   698
sl@0
   699
@param aDir Path of the log file.
sl@0
   700
@param aName Name of the log file.
sl@0
   701
@param aFmt  c-style formatted text to be written.  
sl@0
   702
@param aList  any variables required by the format.  
sl@0
   703
@post
sl@0
   704
The text is only written if the original connection was successful. 
sl@0
   705
No text is ever written if the directory specified in the original connection request does not exist. 
sl@0
   706
Each line is preceded in the date and time.
sl@0
   707
@see void RFileLogger::DoStaticWriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC8> aFmt, VA_LIST& aList)
sl@0
   708
*/
sl@0
   709
	{
sl@0
   710
sl@0
   711
	RFileLogger logger;
sl@0
   712
	TInt ret=logger.Connect();
sl@0
   713
	if (ret==KErrNone)
sl@0
   714
		{
sl@0
   715
		logger.SetDateAndTime(ETrue,ETrue);
sl@0
   716
		logger.iLogFile.Set(aDir,aName,aMode);
sl@0
   717
		TBuf8<KLogBufferSize> buf;
sl@0
   718
		ret=logger.iFormatter.ConvertToWritableBuffer(buf,aFmt,aList);
sl@0
   719
		if (ret==KErrNone)
sl@0
   720
			logger.DoStaticWrite(buf);
sl@0
   721
		}
sl@0
   722
	logger.Close();
sl@0
   723
	}
sl@0
   724
sl@0
   725
void RFileLogger::DoStaticWriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC8> aFmt, VA_LIST& aList)
sl@0
   726
/**
sl@0
   727
Sends a format write string to the flogger server to write to the specified file.
sl@0
   728
There is no pre-condition.
sl@0
   729
sl@0
   730
@param aDir Path of the log file.
sl@0
   731
@param aName Name of the log file.
sl@0
   732
@param aFmt  c-style formatted text to be written.  
sl@0
   733
@param aList  any variables required by the format.  
sl@0
   734
@post 
sl@0
   735
The text is only written if the original connection was successful. 
sl@0
   736
No text is ever written if the directory specified in the original 
sl@0
   737
connection request does not exist. Each line is preceded in the date and time.
sl@0
   738
*/
sl@0
   739
	{
sl@0
   740
sl@0
   741
	RFileLogger logger;
sl@0
   742
	TInt ret=logger.Connect();
sl@0
   743
	if (ret==KErrNone)
sl@0
   744
		{
sl@0
   745
		logger.SetDateAndTime(ETrue,ETrue);
sl@0
   746
		logger.iLogFile.Set(aDir,aName,aMode);
sl@0
   747
		TBuf8<KLogBufferSize> buf;
sl@0
   748
		ret=logger.iFormatter.ConvertToWritableBuffer(buf,aFmt,aList);
sl@0
   749
		if (ret==KErrNone)
sl@0
   750
			logger.DoStaticWrite(buf);
sl@0
   751
		}
sl@0
   752
	logger.Close();
sl@0
   753
	}
sl@0
   754
sl@0
   755
void RFileLogger::DoHexDump(const TText* aHeader, const TText* aMargin, const TUint8* aPtr, TInt aLen)
sl@0
   756
/**
sl@0
   757
Static Write. Dumps arbitrary data to the log file as a standard hex dump. 
sl@0
   758
sl@0
   759
@pre 
sl@0
   760
session is already open. 
sl@0
   761
@param aHeader  Specify a string to be printed before the first hex line. 
sl@0
   762
Leave as null or an empty string for no header.  
sl@0
   763
@param aMargin  Specify a string to be printed before each subsequent line. 
sl@0
   764
Leave as null or an empty string for no Margin.  
sl@0
   765
@param aPtr  pointer to the data being dumped.  
sl@0
   766
@param aLen  the number of bytes to dump  
sl@0
   767
@post
sl@0
   768
The text is only written if the original connection was successful. 
sl@0
   769
No text is ever written if the directory specified in the original connection
sl@0
   770
request does not exist. Each line is preceded in the date and time. 
sl@0
   771
@note This function has poor performance since it performs a full connection and 
sl@0
   772
disconnection to the flogger server. Example of aHeader/aMargin. 
sl@0
   773
If "aHeader" is set to "Fn Output:" and "aMargin" is set to " ", then output 
sl@0
   774
would look like (for a print of the alphabet):
sl@0
   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 
sl@0
   776
14/11/2002	12:32:24	  	   0010 : 71 72 73 74 75 76 77 78 79 7a qrstuvwxyz
sl@0
   777
*/
sl@0
   778
	{
sl@0
   779
sl@0
   780
	if (aPtr==NULL)		// nothing to do
sl@0
   781
		return;
sl@0
   782
sl@0
   783
	TBuf<KLogBufferSize> buf;
sl@0
   784
	TBuf8<KLogBufferSize> temp;
sl@0
   785
	TInt i=0;
sl@0
   786
	const TText* p=aHeader;
sl@0
   787
	while (aLen>0)
sl@0
   788
		{
sl@0
   789
		if (p==NULL)
sl@0
   790
			p=BLANK;	// if NULL set p to a blank string
sl@0
   791
		TInt n=(aLen>KHexDumpWidth ? KHexDumpWidth : aLen);
sl@0
   792
		buf.AppendFormat(KFirstFormatString,p,i);
sl@0
   793
		TInt j;
sl@0
   794
		for (j=0; j<n; j++)
sl@0
   795
			buf.AppendFormat(KSecondFormatString,aPtr[i+j]);
sl@0
   796
		while (j++<KHexDumpWidth)
sl@0
   797
			buf.Append(KThreeSpaces);
sl@0
   798
		buf.Append(KTwoSpaces);
sl@0
   799
		for (j=0; j<n; j++)
sl@0
   800
			buf.AppendFormat(KThirdFormatString,(aPtr[i+j]<32 || aPtr[i+j]>126) ? KFullStopChar : aPtr[i+j]);
sl@0
   801
		
sl@0
   802
		iLastError=iFormatter.FormatTextToWritableBuffer(temp,buf);
sl@0
   803
		if (iLastError==KErrNone)
sl@0
   804
			DoWrite(temp);
sl@0
   805
		
sl@0
   806
		buf.SetLength(0);
sl@0
   807
		temp.SetLength(0);
sl@0
   808
		aLen-=n;
sl@0
   809
		i+=n;
sl@0
   810
		p=aMargin;
sl@0
   811
		}
sl@0
   812
	}
sl@0
   813