os/persistentdata/loggingservices/filelogger/SCLI/FLOGFMT.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
/**
sl@0
    17
 @file
sl@0
    18
*/
sl@0
    19
sl@0
    20
#include <utf.h>
sl@0
    21
#include <flogger.h>
sl@0
    22
#include "FLOGSTD.H"
sl@0
    23
sl@0
    24
/**
sl@0
    25
16-bit tab char width for symbian OS build.
sl@0
    26
*/
sl@0
    27
const TText KTabChar='\t';
sl@0
    28
sl@0
    29
/**
sl@0
    30
8-bit FullStop char for non-unicode
sl@0
    31
*/
sl@0
    32
const TText8 KFullStopChar8='.';
sl@0
    33
sl@0
    34
/**
sl@0
    35
8-bit tab char for unicode
sl@0
    36
*/
sl@0
    37
const TText8 KTabChar8='\t';
sl@0
    38
sl@0
    39
/**
sl@0
    40
Max length for a TBuf date or time variable.
sl@0
    41
*/
sl@0
    42
const TInt KDateOrTimeMaxLength=30;
sl@0
    43
sl@0
    44
/**
sl@0
    45
Constructs a 8 bit constant literal descriptor for
sl@0
    46
end of line.
sl@0
    47
*/
sl@0
    48
_LIT8(KEndOfLineCharacters8,"\r\n");
sl@0
    49
sl@0
    50
/**
sl@0
    51
Constructs a 16 bit constant literal descriptor for
sl@0
    52
end of line.
sl@0
    53
*/
sl@0
    54
_LIT(KEndOfLineCharacters,"\r\n");
sl@0
    55
sl@0
    56
/**
sl@0
    57
Date format for European style
sl@0
    58
*/
sl@0
    59
_LIT(KDateFormat,"%1%/1%2%/2%3\t");
sl@0
    60
sl@0
    61
/**
sl@0
    62
24 hour time format
sl@0
    63
*/
sl@0
    64
_LIT(KTimeFormat,"%J%:1%T%:2%S\t");
sl@0
    65
sl@0
    66
sl@0
    67
/**
sl@0
    68
TLogFile class definition
sl@0
    69
*/
sl@0
    70
sl@0
    71
TLogFile::TLogFile()
sl@0
    72
/**
sl@0
    73
Sets initial values for iValid and iMode.
sl@0
    74
*/
sl@0
    75
	{
sl@0
    76
sl@0
    77
	iValid=EFalse;
sl@0
    78
	iMode=EFileLoggingModeUnknown;
sl@0
    79
	}
sl@0
    80
sl@0
    81
TLogFile::TLogFile(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode)
sl@0
    82
/**
sl@0
    83
Sets initial values for iValid,iDirectory,iName and iMode.
sl@0
    84
sl@0
    85
@param aDir Full Path of the log file.
sl@0
    86
@param aName Name of the log file.
sl@0
    87
@param aMode Specifies whether data is appended or file is truncated.
sl@0
    88
*/
sl@0
    89
	{
sl@0
    90
sl@0
    91
	iValid=EFalse;
sl@0
    92
	iDirectory=aDir;
sl@0
    93
	iName=aName;
sl@0
    94
	iMode=aMode;
sl@0
    95
	}
sl@0
    96
sl@0
    97
TBool TLogFile::operator==(const TLogFile& aLogFile) const
sl@0
    98
/**
sl@0
    99
iValid members need not be equal
sl@0
   100
sl@0
   101
@param aLogFile log file.
sl@0
   102
*/
sl@0
   103
	{
sl@0
   104
sl@0
   105
	if (iDirectory!=aLogFile.iDirectory)
sl@0
   106
		return EFalse;
sl@0
   107
	if (iName!=aLogFile.iName)
sl@0
   108
		return EFalse;
sl@0
   109
	if (iMode!=aLogFile.iMode)
sl@0
   110
		return EFalse;
sl@0
   111
	return ETrue;
sl@0
   112
	}
sl@0
   113
sl@0
   114
void TLogFile::Set(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode)
sl@0
   115
/**
sl@0
   116
Sets values for iValid,iDirectory,iName and iMode.
sl@0
   117
sl@0
   118
@param aDir Full Path of the log file.
sl@0
   119
@param aName Name of the log file.
sl@0
   120
@param aMode Specifies whether data is appended or file is truncated.
sl@0
   121
*/
sl@0
   122
	{
sl@0
   123
sl@0
   124
	iValid=EFalse;
sl@0
   125
	iDirectory=aDir;
sl@0
   126
	iName=aName;
sl@0
   127
	iMode=aMode;
sl@0
   128
	}
sl@0
   129
sl@0
   130
/**
sl@0
   131
TLogFormatterOverflow class definition
sl@0
   132
*/
sl@0
   133
sl@0
   134
void TLogFormatter16Overflow::Overflow(TDes16& /*aDes*/)
sl@0
   135
/** 
sl@0
   136
TDes16Overflow pure virtual 
sl@0
   137
This member is internal and not intended for use.
sl@0
   138
*/	
sl@0
   139
	{
sl@0
   140
	}
sl@0
   141
sl@0
   142
void TLogFormatter8Overflow::Overflow(TDes8& /*aDes*/)
sl@0
   143
/** 
sl@0
   144
TDes16Overflow pure virtual 
sl@0
   145
This member is internal and not intended for use.
sl@0
   146
*/
sl@0
   147
	{
sl@0
   148
	}
sl@0
   149
sl@0
   150
/**
sl@0
   151
TLogFormat class definition
sl@0
   152
*/
sl@0
   153
sl@0
   154
TLogFormatter::TLogFormatter()
sl@0
   155
	: iUseDate(ETrue), iUseTime(ETrue)
sl@0
   156
/**
sl@0
   157
Sets iUseDate and iUseTime to ETrue.
sl@0
   158
*/
sl@0
   159
	{}
sl@0
   160
sl@0
   161
void TLogFormatter::SetDateAndTime(TBool aUseDate, TBool aUseTime)
sl@0
   162
/**
sl@0
   163
Sets whether to use date and/or time
sl@0
   164
*/
sl@0
   165
	{
sl@0
   166
sl@0
   167
	iUseDate=aUseDate;
sl@0
   168
	iUseTime=aUseTime;
sl@0
   169
	}
sl@0
   170
sl@0
   171
TInt TLogFormatter::FormatTextToWritableBuffer(TDes8& aBuf, const TDesC16& aText) const
sl@0
   172
/**
sl@0
   173
Returns result in aBuf
sl@0
   174
*/
sl@0
   175
	{
sl@0
   176
sl@0
   177
	TRAPD(ret,WriteL(aBuf,aText));
sl@0
   178
	return ret;
sl@0
   179
	}
sl@0
   180
sl@0
   181
TInt TLogFormatter::FormatTextToWritableBuffer(TDes8& aBuf, const TDesC8& aText) const
sl@0
   182
/**
sl@0
   183
Returns result in aBuf
sl@0
   184
*/
sl@0
   185
	{
sl@0
   186
sl@0
   187
	TRAPD(ret,WriteL(aBuf,aText));
sl@0
   188
	return ret;
sl@0
   189
	}
sl@0
   190
sl@0
   191
TInt TLogFormatter::ConvertToWritableBuffer(TDes8& aBuf, TRefByValue<const TDesC16> aFmt, VA_LIST& aList)
sl@0
   192
/**
sl@0
   193
Formats string to aBuf
sl@0
   194
*/
sl@0
   195
	{
sl@0
   196
sl@0
   197
	TBuf16<KLogBufferSize> buf;
sl@0
   198
	buf.AppendFormatList(aFmt,aList,&iOverflow16);
sl@0
   199
	TRAPD(ret,WriteL(aBuf,buf));
sl@0
   200
	return ret;
sl@0
   201
	}
sl@0
   202
sl@0
   203
TInt TLogFormatter::ConvertToWritableBuffer(TDes8& aBuf, TRefByValue<const TDesC8> aFmt, VA_LIST& aList)
sl@0
   204
/**
sl@0
   205
Formats string to aBuf
sl@0
   206
*/
sl@0
   207
	{
sl@0
   208
sl@0
   209
	TBuf8<KLogBufferSize> buf;
sl@0
   210
	buf.AppendFormatList(aFmt,aList,&iOverflow8);
sl@0
   211
	TRAPD(ret,WriteL(aBuf,buf));
sl@0
   212
	return ret;
sl@0
   213
	}
sl@0
   214
sl@0
   215
void TLogFormatter::GetDateAndTimeL(TDes& aDate, TDes& aTime) const
sl@0
   216
/**
sl@0
   217
Gets date and time according to flags to buffer aBuf
sl@0
   218
*/
sl@0
   219
	{
sl@0
   220
sl@0
   221
	aDate.SetLength(0);
sl@0
   222
	aTime.SetLength(0);
sl@0
   223
		
sl@0
   224
	if (!iUseTime && !iUseDate)
sl@0
   225
		return;
sl@0
   226
sl@0
   227
	TTime t;
sl@0
   228
	t.HomeTime();
sl@0
   229
	if (iUseDate)
sl@0
   230
		t.FormatL(aDate,KDateFormat);
sl@0
   231
	
sl@0
   232
	if (iUseTime)
sl@0
   233
		t.FormatL(aTime,KTimeFormat);
sl@0
   234
	}
sl@0
   235
sl@0
   236
void TLogFormatter::WriteL(TDes8& aTrg, const TDesC16& aSrc) const
sl@0
   237
/**
sl@0
   238
Appends date/time as specified and truncate aSrc and convert 
sl@0
   239
unprintable characters to '.'.  Convert unicode to UTF8 and 
sl@0
   240
return the result in aTrg
sl@0
   241
*/
sl@0
   242
	{	
sl@0
   243
sl@0
   244
	aTrg.SetLength(0);
sl@0
   245
	TBuf16<KDateOrTimeMaxLength> dateBuf;
sl@0
   246
	TBuf16<KDateOrTimeMaxLength> timeBuf;
sl@0
   247
	GetDateAndTimeL(dateBuf,timeBuf);
sl@0
   248
	TBuf16<KLogBufferSize> buf;
sl@0
   249
	__ASSERT_DEBUG(buf.MaxLength()>=dateBuf.Length(), User::Invariant());
sl@0
   250
	buf.Append(dateBuf);
sl@0
   251
	__ASSERT_DEBUG((buf.MaxLength()-buf.Length())>=timeBuf.Length(), User::Invariant());
sl@0
   252
	buf.Append(timeBuf);
sl@0
   253
	buf.Append(aSrc.Left(Min(aSrc.Length(),(KLogBufferSize-buf.Length()-2))));	// -2 to allow for CRLF
sl@0
   254
	TChar ch;
sl@0
   255
	for (TInt i=0; i<buf.Length(); i++)
sl@0
   256
		{
sl@0
   257
		ch=buf[i];
sl@0
   258
		if(!((ch.IsPrint()) || (ch==KTabChar)))
sl@0
   259
			buf[i]=KFullStopChar;
sl@0
   260
		}
sl@0
   261
	buf.Append(KEndOfLineCharacters);
sl@0
   262
sl@0
   263
	TBuf8<KLogBufferSize> utfBuf;
sl@0
   264
	CnvUtfConverter::ConvertFromUnicodeToUtf8(utfBuf,buf);
sl@0
   265
	aTrg.Copy(utfBuf.Left(Min(utfBuf.Length(),aTrg.MaxLength())));
sl@0
   266
	}
sl@0
   267
sl@0
   268
void TLogFormatter::WriteL(TDes8& aTrg, const TDesC8& aSrc) const
sl@0
   269
/**
sl@0
   270
Append date/time as specified and truncate aSrc and convert 
sl@0
   271
unprintable characters to '.'.
sl@0
   272
*/
sl@0
   273
	{	
sl@0
   274
sl@0
   275
	aTrg.SetLength(0);
sl@0
   276
	TBuf16<KDateOrTimeMaxLength> dateBuf;
sl@0
   277
	TBuf16<KDateOrTimeMaxLength> timeBuf;
sl@0
   278
	GetDateAndTimeL(dateBuf,timeBuf);
sl@0
   279
	TBuf8<KDateOrTimeMaxLength> eightBitDateBuf;
sl@0
   280
	eightBitDateBuf.Copy(dateBuf);
sl@0
   281
	TBuf8<KDateOrTimeMaxLength> eightBitTimeBuf;
sl@0
   282
	eightBitTimeBuf.Copy(timeBuf);
sl@0
   283
	TBuf8<KLogBufferSize> buf;
sl@0
   284
	__ASSERT_DEBUG(buf.MaxLength()>=dateBuf.Length(), User::Invariant());
sl@0
   285
	buf.Append(eightBitDateBuf);
sl@0
   286
	__ASSERT_DEBUG((buf.MaxLength()-buf.Length())>=timeBuf.Length(), User::Invariant());
sl@0
   287
	buf.Append(eightBitTimeBuf);
sl@0
   288
	buf.Append(aSrc.Left(Min(aSrc.Length(),(KLogBufferSize-buf.Length()-2))));	// -2 to allow for CRLF
sl@0
   289
	TChar ch;
sl@0
   290
	for (TInt i=0; i<buf.Length(); i++)
sl@0
   291
		{
sl@0
   292
		ch=buf[i];
sl@0
   293
		if(!((ch.IsPrint()) || (ch==KTabChar8)))
sl@0
   294
			buf[i]=KFullStopChar8;
sl@0
   295
		}
sl@0
   296
	buf.Append(KEndOfLineCharacters8);
sl@0
   297
	aTrg.Copy(buf.Left(Min(buf.Length(),aTrg.MaxLength())));
sl@0
   298
	}