Update contrib.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
25 16-bit tab char width for symbian OS build.
27 const TText KTabChar='\t';
30 8-bit FullStop char for non-unicode
32 const TText8 KFullStopChar8='.';
35 8-bit tab char for unicode
37 const TText8 KTabChar8='\t';
40 Max length for a TBuf date or time variable.
42 const TInt KDateOrTimeMaxLength=30;
45 Constructs a 8 bit constant literal descriptor for
48 _LIT8(KEndOfLineCharacters8,"\r\n");
51 Constructs a 16 bit constant literal descriptor for
54 _LIT(KEndOfLineCharacters,"\r\n");
57 Date format for European style
59 _LIT(KDateFormat,"%1%/1%2%/2%3\t");
64 _LIT(KTimeFormat,"%J%:1%T%:2%S\t");
68 TLogFile class definition
73 Sets initial values for iValid and iMode.
78 iMode=EFileLoggingModeUnknown;
81 TLogFile::TLogFile(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode)
83 Sets initial values for iValid,iDirectory,iName and iMode.
85 @param aDir Full Path of the log file.
86 @param aName Name of the log file.
87 @param aMode Specifies whether data is appended or file is truncated.
97 TBool TLogFile::operator==(const TLogFile& aLogFile) const
99 iValid members need not be equal
101 @param aLogFile log file.
105 if (iDirectory!=aLogFile.iDirectory)
107 if (iName!=aLogFile.iName)
109 if (iMode!=aLogFile.iMode)
114 void TLogFile::Set(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode)
116 Sets values for iValid,iDirectory,iName and iMode.
118 @param aDir Full Path of the log file.
119 @param aName Name of the log file.
120 @param aMode Specifies whether data is appended or file is truncated.
131 TLogFormatterOverflow class definition
134 void TLogFormatter16Overflow::Overflow(TDes16& /*aDes*/)
136 TDes16Overflow pure virtual
137 This member is internal and not intended for use.
142 void TLogFormatter8Overflow::Overflow(TDes8& /*aDes*/)
144 TDes16Overflow pure virtual
145 This member is internal and not intended for use.
151 TLogFormat class definition
154 TLogFormatter::TLogFormatter()
155 : iUseDate(ETrue), iUseTime(ETrue)
157 Sets iUseDate and iUseTime to ETrue.
161 void TLogFormatter::SetDateAndTime(TBool aUseDate, TBool aUseTime)
163 Sets whether to use date and/or time
171 TInt TLogFormatter::FormatTextToWritableBuffer(TDes8& aBuf, const TDesC16& aText) const
173 Returns result in aBuf
177 TRAPD(ret,WriteL(aBuf,aText));
181 TInt TLogFormatter::FormatTextToWritableBuffer(TDes8& aBuf, const TDesC8& aText) const
183 Returns result in aBuf
187 TRAPD(ret,WriteL(aBuf,aText));
191 TInt TLogFormatter::ConvertToWritableBuffer(TDes8& aBuf, TRefByValue<const TDesC16> aFmt, VA_LIST& aList)
193 Formats string to aBuf
197 TBuf16<KLogBufferSize> buf;
198 buf.AppendFormatList(aFmt,aList,&iOverflow16);
199 TRAPD(ret,WriteL(aBuf,buf));
203 TInt TLogFormatter::ConvertToWritableBuffer(TDes8& aBuf, TRefByValue<const TDesC8> aFmt, VA_LIST& aList)
205 Formats string to aBuf
209 TBuf8<KLogBufferSize> buf;
210 buf.AppendFormatList(aFmt,aList,&iOverflow8);
211 TRAPD(ret,WriteL(aBuf,buf));
215 void TLogFormatter::GetDateAndTimeL(TDes& aDate, TDes& aTime) const
217 Gets date and time according to flags to buffer aBuf
224 if (!iUseTime && !iUseDate)
230 t.FormatL(aDate,KDateFormat);
233 t.FormatL(aTime,KTimeFormat);
236 void TLogFormatter::WriteL(TDes8& aTrg, const TDesC16& aSrc) const
238 Appends date/time as specified and truncate aSrc and convert
239 unprintable characters to '.'. Convert unicode to UTF8 and
240 return the result in aTrg
245 TBuf16<KDateOrTimeMaxLength> dateBuf;
246 TBuf16<KDateOrTimeMaxLength> timeBuf;
247 GetDateAndTimeL(dateBuf,timeBuf);
248 TBuf16<KLogBufferSize> buf;
249 __ASSERT_DEBUG(buf.MaxLength()>=dateBuf.Length(), User::Invariant());
251 __ASSERT_DEBUG((buf.MaxLength()-buf.Length())>=timeBuf.Length(), User::Invariant());
253 buf.Append(aSrc.Left(Min(aSrc.Length(),(KLogBufferSize-buf.Length()-2)))); // -2 to allow for CRLF
255 for (TInt i=0; i<buf.Length(); i++)
258 if(!((ch.IsPrint()) || (ch==KTabChar)))
259 buf[i]=KFullStopChar;
261 buf.Append(KEndOfLineCharacters);
263 TBuf8<KLogBufferSize> utfBuf;
264 CnvUtfConverter::ConvertFromUnicodeToUtf8(utfBuf,buf);
265 aTrg.Copy(utfBuf.Left(Min(utfBuf.Length(),aTrg.MaxLength())));
268 void TLogFormatter::WriteL(TDes8& aTrg, const TDesC8& aSrc) const
270 Append date/time as specified and truncate aSrc and convert
271 unprintable characters to '.'.
276 TBuf16<KDateOrTimeMaxLength> dateBuf;
277 TBuf16<KDateOrTimeMaxLength> timeBuf;
278 GetDateAndTimeL(dateBuf,timeBuf);
279 TBuf8<KDateOrTimeMaxLength> eightBitDateBuf;
280 eightBitDateBuf.Copy(dateBuf);
281 TBuf8<KDateOrTimeMaxLength> eightBitTimeBuf;
282 eightBitTimeBuf.Copy(timeBuf);
283 TBuf8<KLogBufferSize> buf;
284 __ASSERT_DEBUG(buf.MaxLength()>=dateBuf.Length(), User::Invariant());
285 buf.Append(eightBitDateBuf);
286 __ASSERT_DEBUG((buf.MaxLength()-buf.Length())>=timeBuf.Length(), User::Invariant());
287 buf.Append(eightBitTimeBuf);
288 buf.Append(aSrc.Left(Min(aSrc.Length(),(KLogBufferSize-buf.Length()-2)))); // -2 to allow for CRLF
290 for (TInt i=0; i<buf.Length(); i++)
293 if(!((ch.IsPrint()) || (ch==KTabChar8)))
294 buf[i]=KFullStopChar8;
296 buf.Append(KEndOfLineCharacters8);
297 aTrg.Copy(buf.Left(Min(buf.Length(),aTrg.MaxLength())));