os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/test_bed/DataLogger.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-2009 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
#include <e32def.h>
sl@0
    17
#include <f32file.h>
sl@0
    18
sl@0
    19
#include <ecom/test_bed/datalogger.h>
sl@0
    20
sl@0
    21
// KLogBufferSize is the maximum line length allowed by flogger
sl@0
    22
const TInt KMaxTBLogEntrySize = KLogBufferSize;
sl@0
    23
sl@0
    24
// Common string literals for all output formats
sl@0
    25
_LIT(KTimeFormatStr,"%J%:1%T%:2%S%.%*C3");
sl@0
    26
// Above string will give time in format HH:MM:SS.SSS therefore max length = 12
sl@0
    27
const TInt KTimeBufLength = 12;
sl@0
    28
sl@0
    29
// Define some string literals for HTML formatting
sl@0
    30
_LIT(KHTMLDocumentStart,"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\"><HTML><HEAD><META NAME=\"robots\" CONTENT=\"noindex\"><META NAME=\"author\" CONTENT=\"Symbian RTestBed log generator\"><TITLE>");
sl@0
    31
// Insert title string here
sl@0
    32
_LIT(KHTMLContentStart,"</TITLE></HEAD><BODY><P><FONT=3>");
sl@0
    33
// Insert time string here
sl@0
    34
_LIT(KHTMLCommentStart,"<P>");
sl@0
    35
// Insert content here
sl@0
    36
_LIT(KHTMLCommentEnd,"</P>");
sl@0
    37
_LIT(KHTMLDocumentEnd,"</FONT></P></BODY></HTML>");
sl@0
    38
sl@0
    39
//___________________________________________________________________________
sl@0
    40
// Define the overflow handling classes for any log formatting methods
sl@0
    41
// Simply record the overflow...
sl@0
    42
//
sl@0
    43
sl@0
    44
NONSHARABLE_CLASS(TLogMessageOverflow) : public TDes16Overflow
sl@0
    45
	{
sl@0
    46
	public:
sl@0
    47
	
sl@0
    48
		TLogMessageOverflow();
sl@0
    49
	
sl@0
    50
		void Overflow(TDes16&);	
sl@0
    51
	
sl@0
    52
		TInt iError;
sl@0
    53
	};
sl@0
    54
sl@0
    55
TLogMessageOverflow::TLogMessageOverflow()
sl@0
    56
: TDes16Overflow(),
sl@0
    57
iError(KErrNone)
sl@0
    58
	{
sl@0
    59
	}
sl@0
    60
sl@0
    61
void TLogMessageOverflow::Overflow(TDes16&)
sl@0
    62
	{
sl@0
    63
	__DEBUGGER();
sl@0
    64
	iError = KErrOverflow;
sl@0
    65
	}
sl@0
    66
sl@0
    67
sl@0
    68
NONSHARABLE_CLASS(TLogMessageOverflow8) : public TDes8Overflow
sl@0
    69
	{
sl@0
    70
	public:
sl@0
    71
	
sl@0
    72
		TLogMessageOverflow8();
sl@0
    73
	
sl@0
    74
		void Overflow(TDes8&);	
sl@0
    75
	
sl@0
    76
		TInt iError;
sl@0
    77
	};
sl@0
    78
sl@0
    79
TLogMessageOverflow8::TLogMessageOverflow8()
sl@0
    80
: TDes8Overflow(),
sl@0
    81
iError(KErrNone)
sl@0
    82
	{
sl@0
    83
	}
sl@0
    84
sl@0
    85
void TLogMessageOverflow8::Overflow(TDes8&)
sl@0
    86
	{
sl@0
    87
	__DEBUGGER();
sl@0
    88
	iError = KErrOverflow;
sl@0
    89
	}
sl@0
    90
sl@0
    91
//___________________________________________________________________________
sl@0
    92
sl@0
    93
//___________________________________________________________________________
sl@0
    94
sl@0
    95
CDataLogger::~CDataLogger()
sl@0
    96
	{
sl@0
    97
	if(iLogOutput != NULL)
sl@0
    98
		{
sl@0
    99
		if(iLogStyle != EText && iLogFormat.iDocumentEnd)
sl@0
   100
			Log(iLogOutput, *(iLogFormat.iDocumentEnd));
sl@0
   101
		iLogOutput->Close();
sl@0
   102
		}
sl@0
   103
sl@0
   104
	if(iReportOutput != NULL)
sl@0
   105
		{
sl@0
   106
		if(iLogStyle != EText && iLogFormat.iDocumentEnd)
sl@0
   107
			Log(iReportOutput, *(iLogFormat.iDocumentEnd));
sl@0
   108
		iReportOutput->Close();
sl@0
   109
		}
sl@0
   110
sl@0
   111
	delete iFormatBuf;
sl@0
   112
	delete iDebug;
sl@0
   113
	delete iDefaultLogOutput;
sl@0
   114
	delete iDefaultReportOutput;
sl@0
   115
	}
sl@0
   116
sl@0
   117
sl@0
   118
CDataLogger::CDataLogger()
sl@0
   119
	{
sl@0
   120
	}
sl@0
   121
sl@0
   122
CDataLogger* CDataLogger::NewLC(TLoggingInfo* aLogInfo)
sl@0
   123
	{
sl@0
   124
	CDataLogger* self = new (ELeave) CDataLogger();
sl@0
   125
	CleanupStack::PushL(self);
sl@0
   126
	self->ConstructL(aLogInfo);
sl@0
   127
	return self;
sl@0
   128
	}
sl@0
   129
sl@0
   130
CDataLogger* CDataLogger::NewL(TLoggingInfo* aLogInfo)
sl@0
   131
	{
sl@0
   132
	CDataLogger* self = NewLC(aLogInfo);
sl@0
   133
	CleanupStack::Pop();
sl@0
   134
	return self;
sl@0
   135
	}
sl@0
   136
sl@0
   137
sl@0
   138
void CDataLogger::ConstructL(TLoggingInfo* aLogInfo)
sl@0
   139
	{
sl@0
   140
	iFormatBuf = HBufC::NewL(KMaxTBLogEntrySize);
sl@0
   141
sl@0
   142
	SetupLoggingL(aLogInfo);
sl@0
   143
sl@0
   144
	iLogOutput->OpenL();
sl@0
   145
	iReportOutput->OpenL();
sl@0
   146
sl@0
   147
	// Record additional information : Time
sl@0
   148
	TTime time;
sl@0
   149
	time.UniversalTime();
sl@0
   150
	TBuf<KTimeBufLength> timeBuf;
sl@0
   151
	time.FormatL(timeBuf,KTimeFormatStr);
sl@0
   152
	if(iLogStyle != EText)
sl@0
   153
		{
sl@0
   154
		// Use the log format
sl@0
   155
		Log(iLogOutput, *(iLogFormat.iDocumentStart));
sl@0
   156
		if(aLogInfo->iTitle)
sl@0
   157
			Log(iLogOutput, *(aLogInfo->iTitle));
sl@0
   158
		Log(iLogOutput, *(iLogFormat.iContentStart));
sl@0
   159
		Log(iLogOutput, timeBuf);
sl@0
   160
sl@0
   161
		Log(iReportOutput, *(iLogFormat.iDocumentStart));
sl@0
   162
		if(aLogInfo->iTitle)
sl@0
   163
			Log(iReportOutput, *(aLogInfo->iTitle));
sl@0
   164
		Log(iReportOutput, *(iLogFormat.iContentStart));
sl@0
   165
		Log(iReportOutput, timeBuf);
sl@0
   166
		}
sl@0
   167
	else
sl@0
   168
		{
sl@0
   169
		if(aLogInfo && aLogInfo->iTitle)
sl@0
   170
			{
sl@0
   171
			Log(iLogOutput, *(aLogInfo->iTitle));
sl@0
   172
			Log(iReportOutput, *(aLogInfo->iTitle));
sl@0
   173
			}
sl@0
   174
		Log(iLogOutput, timeBuf);
sl@0
   175
		Log(iReportOutput, timeBuf);
sl@0
   176
		}
sl@0
   177
	}
sl@0
   178
sl@0
   179
sl@0
   180
EXPORT_C void CDataLogger::DumpMemoryBlock(const TUint8* aAddress, TInt aLength)
sl@0
   181
	{
sl@0
   182
	const TInt KBytesPerRow = 16;
sl@0
   183
	const TInt KLowestAsciiPrint = 32;
sl@0
   184
	const TInt KHighestAsciiPrint = 127;
sl@0
   185
sl@0
   186
	// The required descriptors for outputting the data
sl@0
   187
	_LIT(KDumpLineStart, "%04x : ");
sl@0
   188
	_LIT(KDumpHexOutput, "%02x ");
sl@0
   189
	_LIT(KDumpHexBlank, "   ");
sl@0
   190
	_LIT(KDumpHexEnd, ": ");
sl@0
   191
	_LIT(KDumpCharOutput, "%c");
sl@0
   192
	_LIT(KDumpCharUnknown, ".");
sl@0
   193
	_LIT(KDumpCharBlank, " ");
sl@0
   194
sl@0
   195
	TPtrC8 theData(aAddress, aLength);
sl@0
   196
sl@0
   197
	// Iterate the supplied block of data in blocks of 16 bytes
sl@0
   198
	TInt pos = 0;
sl@0
   199
	TBuf<KMaxTBLogEntrySize> logLine;
sl@0
   200
	TBuf<KMaxTBLogEntrySize> anEntry;
sl@0
   201
	while (pos < theData.Length())
sl@0
   202
		{
sl@0
   203
		TInt offset = 0;
sl@0
   204
sl@0
   205
		anEntry.Format(KDumpLineStart, pos);
sl@0
   206
		logLine.Append(anEntry);
sl@0
   207
sl@0
   208
		// Hex output
sl@0
   209
		for (offset = 0; offset < KBytesPerRow; ++offset)
sl@0
   210
			{
sl@0
   211
			if (pos + offset < theData.Length())
sl@0
   212
				{
sl@0
   213
				TInt nextByte = theData[pos + offset];
sl@0
   214
				anEntry.Format(KDumpHexOutput, nextByte);
sl@0
   215
				logLine.Append(anEntry);
sl@0
   216
				}
sl@0
   217
			else
sl@0
   218
				{
sl@0
   219
				anEntry.Format(KDumpHexBlank);
sl@0
   220
				logLine.Append(anEntry);
sl@0
   221
				}
sl@0
   222
			}
sl@0
   223
			anEntry.Format(KDumpHexEnd);
sl@0
   224
			logLine.Append(anEntry);
sl@0
   225
sl@0
   226
		// Char output
sl@0
   227
		for (offset = 0; offset < KBytesPerRow; ++offset)
sl@0
   228
			{
sl@0
   229
			if (pos + offset < theData.Length())
sl@0
   230
				{
sl@0
   231
				TInt nextByte = theData[pos + offset];
sl@0
   232
				if ((nextByte >= KLowestAsciiPrint) && (nextByte <= KHighestAsciiPrint))
sl@0
   233
					{
sl@0
   234
					anEntry.Format(KDumpCharOutput, nextByte);
sl@0
   235
					logLine.Append(anEntry);
sl@0
   236
					}
sl@0
   237
				else
sl@0
   238
					{
sl@0
   239
					anEntry.Format(KDumpCharUnknown);
sl@0
   240
					logLine.Append(anEntry);
sl@0
   241
					}
sl@0
   242
				}
sl@0
   243
			else
sl@0
   244
				{
sl@0
   245
				anEntry.Format(KDumpCharBlank);
sl@0
   246
				logLine.Append(anEntry);
sl@0
   247
				}
sl@0
   248
			}
sl@0
   249
sl@0
   250
		//Log this line to the file
sl@0
   251
		if(iLogStyle != EText)
sl@0
   252
			{
sl@0
   253
			Log(iLogOutput, *(iLogFormat.iCommentStart));
sl@0
   254
			Log(iLogOutput, logLine);
sl@0
   255
			Log(iLogOutput, *(iLogFormat.iCommentEnd));
sl@0
   256
			}
sl@0
   257
		else
sl@0
   258
			Log(iLogOutput, logLine);
sl@0
   259
sl@0
   260
		logLine.Zero();
sl@0
   261
sl@0
   262
		// Advance to next segment of size 'KBytesPerRow'
sl@0
   263
		pos += KBytesPerRow;
sl@0
   264
		}
sl@0
   265
sl@0
   266
	}
sl@0
   267
sl@0
   268
sl@0
   269
EXPORT_C void CDataLogger::LogInformation(const TDesC16& aComment)
sl@0
   270
	{
sl@0
   271
	if(iLogStyle != EText)
sl@0
   272
		{
sl@0
   273
		Log(iLogOutput, *(iLogFormat.iCommentStart));
sl@0
   274
		Log(iLogOutput, aComment);
sl@0
   275
		Log(iLogOutput, *(iLogFormat.iCommentEnd));
sl@0
   276
		}
sl@0
   277
	else
sl@0
   278
		Log(iLogOutput, aComment);
sl@0
   279
	iDebug->Print(aComment);
sl@0
   280
	}
sl@0
   281
sl@0
   282
EXPORT_C void CDataLogger::LogInformation(const TDesC8& aComment)
sl@0
   283
	{
sl@0
   284
	// Create a wide descriptor to copy aComment into
sl@0
   285
	HBufC* message = HBufC::NewMax(aComment.Length());
sl@0
   286
sl@0
   287
	// If the allocation failed then do nothing
sl@0
   288
	if(message != NULL)
sl@0
   289
		{
sl@0
   290
		TPtr message16 = message->Des();
sl@0
   291
sl@0
   292
		message16.Copy(aComment);
sl@0
   293
		LogInformation(message16);
sl@0
   294
		delete message;
sl@0
   295
		}
sl@0
   296
	}
sl@0
   297
sl@0
   298
EXPORT_C void CDataLogger::LogInformationWithParameters(TRefByValue<const TDesC16> aFormat, ...)
sl@0
   299
	{
sl@0
   300
	// Prepare the message
sl@0
   301
	// coverity [var_decl]
sl@0
   302
       // VA_LIST is initialized in VA_START
sl@0
   303
	VA_LIST list;
sl@0
   304
	VA_START(list,aFormat);
sl@0
   305
	
sl@0
   306
	TPtr message = iFormatBuf->Des();
sl@0
   307
sl@0
   308
	// Catch the overflow if formatting
sl@0
   309
	TLogMessageOverflow overflowHandler;
sl@0
   310
	message.AppendFormatList(aFormat,list,&overflowHandler);
sl@0
   311
	VA_END(list);
sl@0
   312
	if(overflowHandler.iError == KErrNone)
sl@0
   313
		{
sl@0
   314
		// Ok formatted correctly so...
sl@0
   315
		// Wrap the logging level as the first parameter
sl@0
   316
		if(iLogStyle != EText)
sl@0
   317
			{
sl@0
   318
			Log(iLogOutput, *(iLogFormat.iCommentStart));
sl@0
   319
			Log(iLogOutput, message);
sl@0
   320
			Log(iLogOutput, *(iLogFormat.iCommentEnd));
sl@0
   321
			}
sl@0
   322
		else
sl@0
   323
			Log(iLogOutput, message);
sl@0
   324
		iDebug->Print(message);
sl@0
   325
		}
sl@0
   326
sl@0
   327
	// Clear the message buffer
sl@0
   328
	message.Zero();
sl@0
   329
	}
sl@0
   330
sl@0
   331
EXPORT_C void CDataLogger::LogInformationWithParameters(TRefByValue<const TDesC8> aFormat, ...)
sl@0
   332
	{
sl@0
   333
	// Create an 8 bit descriptor to copy aFormat into
sl@0
   334
	HBufC8* message8 = HBufC8::New(KMaxTBLogEntrySize);
sl@0
   335
	if(message8)
sl@0
   336
		{
sl@0
   337
		// Prepare the message
sl@0
   338
		// coverity [var_decl]
sl@0
   339
	       // VA_LIST is initialized in VA_START
sl@0
   340
		VA_LIST list;
sl@0
   341
		VA_START(list,aFormat);
sl@0
   342
		TPtr8 messagePtr8 = message8->Des();
sl@0
   343
sl@0
   344
		// Catch the overflow if formatting
sl@0
   345
		TLogMessageOverflow8 overflowHandler;
sl@0
   346
		messagePtr8.AppendFormatList(aFormat,list,&overflowHandler);
sl@0
   347
		VA_END(list);
sl@0
   348
		if(overflowHandler.iError == KErrNone)
sl@0
   349
			{
sl@0
   350
			TPtr message = iFormatBuf->Des();
sl@0
   351
			// Copy over the fromatted message into the 16 bit descriptor
sl@0
   352
			message.Copy(messagePtr8);
sl@0
   353
sl@0
   354
			// Ok formatted correctly so...
sl@0
   355
			// Wrap the logging level as the first parameter
sl@0
   356
			if(iLogStyle != EText)
sl@0
   357
				{
sl@0
   358
				Log(iLogOutput, *(iLogFormat.iCommentStart));
sl@0
   359
				Log(iLogOutput, message);
sl@0
   360
				Log(iLogOutput, *(iLogFormat.iCommentEnd));
sl@0
   361
				}
sl@0
   362
			else
sl@0
   363
				Log(iLogOutput, message);
sl@0
   364
			iDebug->Print(message);
sl@0
   365
sl@0
   366
			// Clear the message buffer
sl@0
   367
			message.Zero();
sl@0
   368
			}
sl@0
   369
		delete message8;
sl@0
   370
		}
sl@0
   371
	}
sl@0
   372
sl@0
   373
EXPORT_C void CDataLogger::ReportInformation(const TDesC& aComment)
sl@0
   374
	{
sl@0
   375
	if(iLogStyle != EText)
sl@0
   376
		{
sl@0
   377
		Log(iReportOutput, *(iLogFormat.iCommentStart));
sl@0
   378
		Log(iReportOutput, aComment);
sl@0
   379
		Log(iReportOutput, *(iLogFormat.iCommentEnd));
sl@0
   380
		}
sl@0
   381
	else
sl@0
   382
		Log(iReportOutput, aComment);
sl@0
   383
	}
sl@0
   384
sl@0
   385
EXPORT_C void CDataLogger::ReportInformationWithParameters(TRefByValue<const TDesC> aFormat, ...)
sl@0
   386
	{
sl@0
   387
	// Prepare the message
sl@0
   388
	// coverity [var_decl]
sl@0
   389
       // VA_LIST is initialized in VA_START
sl@0
   390
	VA_LIST list;
sl@0
   391
	VA_START(list,aFormat);
sl@0
   392
	
sl@0
   393
	TPtr message = iFormatBuf->Des();
sl@0
   394
sl@0
   395
	// Catch the overflow if formatting
sl@0
   396
	TLogMessageOverflow overflowHandler;
sl@0
   397
	message.AppendFormatList(aFormat,list,&overflowHandler);
sl@0
   398
	VA_END(list);
sl@0
   399
	if(overflowHandler.iError == KErrNone)
sl@0
   400
		{
sl@0
   401
		// Ok formatted correctly so...
sl@0
   402
		// Wrap the logging level as the first parameter
sl@0
   403
		if(iLogStyle != EText)
sl@0
   404
			{
sl@0
   405
			Log(iReportOutput, *(iLogFormat.iCommentStart));
sl@0
   406
			Log(iReportOutput, message);
sl@0
   407
			Log(iReportOutput, *(iLogFormat.iCommentEnd));
sl@0
   408
			}
sl@0
   409
		else
sl@0
   410
			Log(iReportOutput, message);
sl@0
   411
		}
sl@0
   412
sl@0
   413
	// Clear the message buffer
sl@0
   414
	message.Zero();
sl@0
   415
	}
sl@0
   416
sl@0
   417
sl@0
   418
void CDataLogger::SetupRDebugL(TBool aRequest) 
sl@0
   419
	{
sl@0
   420
	delete iDebug;
sl@0
   421
	iDebug = 0;
sl@0
   422
	
sl@0
   423
	if(aRequest) 
sl@0
   424
		iDebug = new(ELeave) TDebugPrint;		// Print to RDebug
sl@0
   425
	else 
sl@0
   426
		iDebug = new(ELeave) TNullDebugPrint;	// Ignore prints
sl@0
   427
	}
sl@0
   428
sl@0
   429
void CDataLogger::TDebugPrint::Print(const TDesC& aMessage) 
sl@0
   430
	{
sl@0
   431
	_LIT(KRDebugFormatStr,"%S");
sl@0
   432
	RDebug::Print(KRDebugFormatStr, &aMessage);
sl@0
   433
	}
sl@0
   434
sl@0
   435
void CDataLogger::Log(MLogOutput* aLogOutput, const TDesC16& aMessage)
sl@0
   436
	{
sl@0
   437
	// If the message is short enough then log it in one go
sl@0
   438
	if(aMessage.Length() < KMaxTBLogEntrySize)
sl@0
   439
		aLogOutput->Write(aMessage);
sl@0
   440
	else
sl@0
   441
		{
sl@0
   442
		// Start at the beginning and log out short blocks until finished
sl@0
   443
		TInt outIndex = 0;
sl@0
   444
		while(outIndex < aMessage.Length())
sl@0
   445
			{
sl@0
   446
			if((outIndex+KMaxTBLogEntrySize) > aMessage.Length())
sl@0
   447
				{
sl@0
   448
				aLogOutput->Write(aMessage.Right(aMessage.Length() - outIndex));
sl@0
   449
				outIndex = aMessage.Length();
sl@0
   450
				}
sl@0
   451
			else
sl@0
   452
				{
sl@0
   453
				// The -1 is required to ensure that the submessage is not too long
sl@0
   454
				TPtrC subMessage = aMessage.Mid(outIndex, KMaxTBLogEntrySize - 1);
sl@0
   455
				// Find the space nearest the end for a convenient break point
sl@0
   456
				TInt spaceLoc = subMessage.LocateReverse(TChar(' '));
sl@0
   457
				if(spaceLoc != KErrNotFound)
sl@0
   458
					outIndex = spaceLoc;
sl@0
   459
				else
sl@0
   460
					outIndex = KMaxTBLogEntrySize - 1;
sl@0
   461
				aLogOutput->Write(subMessage.Left(++outIndex));
sl@0
   462
				}
sl@0
   463
			}
sl@0
   464
		}
sl@0
   465
	}
sl@0
   466
sl@0
   467
void CDataLogger::SetupLoggingL(TLoggingInfo* aLogInfo)
sl@0
   468
	{
sl@0
   469
	// The possible log filenames
sl@0
   470
	_LIT(KTestBedLogName, "RTestBed.log");
sl@0
   471
	_LIT(KTestBedHtmlLogName, "TestBedLog.html");
sl@0
   472
	// The possible report file names
sl@0
   473
	_LIT(KTestBedReportName, "RTestBed.rep");
sl@0
   474
	_LIT(KTestBedHtmlReportName, "TestBedReport.html");
sl@0
   475
sl@0
   476
	if(aLogInfo)
sl@0
   477
		{
sl@0
   478
		iLogStyle = aLogInfo->iStyle;
sl@0
   479
		
sl@0
   480
		if(aLogInfo->iLogOutput)
sl@0
   481
			iLogOutput = aLogInfo->iLogOutput;
sl@0
   482
		else
sl@0
   483
			{
sl@0
   484
			if(iLogStyle==EHtml)
sl@0
   485
				iDefaultLogOutput = new(ELeave) CDefaultLogOutput(KTestBedHtmlLogName);
sl@0
   486
			else
sl@0
   487
				iDefaultLogOutput = new(ELeave) CDefaultLogOutput(KTestBedLogName);
sl@0
   488
sl@0
   489
			iLogOutput = iDefaultLogOutput;
sl@0
   490
			}
sl@0
   491
sl@0
   492
		if(aLogInfo->iReportOutput)
sl@0
   493
			iReportOutput = aLogInfo->iReportOutput;
sl@0
   494
		else
sl@0
   495
			{
sl@0
   496
			if(iLogStyle==EHtml)
sl@0
   497
				iDefaultReportOutput = new(ELeave) CDefaultLogOutput(KTestBedHtmlReportName);
sl@0
   498
			else
sl@0
   499
				iDefaultReportOutput = new(ELeave) CDefaultLogOutput(KTestBedReportName);
sl@0
   500
sl@0
   501
			iReportOutput = iDefaultReportOutput;
sl@0
   502
			}
sl@0
   503
sl@0
   504
		SetupRDebugL(aLogInfo->iUseRDebug);
sl@0
   505
		}
sl@0
   506
	else
sl@0
   507
		{
sl@0
   508
		iLogStyle = EText;
sl@0
   509
		iDefaultLogOutput = new(ELeave) CDefaultLogOutput(KTestBedLogName);
sl@0
   510
		iLogOutput = iDefaultLogOutput;
sl@0
   511
		iDefaultReportOutput = new(ELeave) CDefaultLogOutput(KTestBedReportName);
sl@0
   512
		iReportOutput = iDefaultReportOutput;
sl@0
   513
sl@0
   514
		SetupRDebugL(ETrue);
sl@0
   515
		}
sl@0
   516
sl@0
   517
	// If the user has specified a custom logging style then use their LogFormat
sl@0
   518
	if(iLogStyle == ECustom)
sl@0
   519
		iLogFormat = *(aLogInfo->iLogFormat);
sl@0
   520
	else if(iLogStyle == EHtml)
sl@0
   521
		{
sl@0
   522
		// Output as HTML
sl@0
   523
		iLogFormat.iDocumentStart	= &(KHTMLDocumentStart());
sl@0
   524
		iLogFormat.iContentStart	= &(KHTMLContentStart());
sl@0
   525
		iLogFormat.iCommentStart	= &(KHTMLCommentStart());
sl@0
   526
		iLogFormat.iCommentEnd		= &(KHTMLCommentEnd());
sl@0
   527
		iLogFormat.iDocumentEnd		= &(KHTMLDocumentEnd());
sl@0
   528
		}
sl@0
   529
	}