Update contrib.
1 // Copyright (c) 2005-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.
14 // Source file for the client api
21 #include <test/rfilelogger.h>
24 //_LIT8(KxmlHeader,"<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\r\n");
27 // EKA1 requires DLL entry point
29 // RFileLogger class definition
32 EXPORT_C RFileFlogger::RFileFlogger() : ilogbody(NULL)
34 * Create a new flogger client interface object with an empty body.
41 EXPORT_C RFileFlogger::~RFileFlogger()
50 EXPORT_C TInt RFileFlogger::Connect()
52 * @return int - Standard error codes
53 * EKA2 all variants and EKA1 target.
57 // Sanity check to make sure it's not been called multiple times
60 return KErrAlreadyExists;
62 ilogbody = new RFileLoggerBody;
66 TVersion version(KRFileLoggerMajorVersion,KRFileLoggerMinorVersion,KRFileLoggerBuildVersion);
67 // Assume the server is already running and attempt to create a session
69 TInt err = ilogbody->DoCreateSession(KFileLogrerServerName,version,8);
70 if(err== KErrServerTerminated)
72 User::After(1000000); // OS need time to close previous server properly
73 err = ilogbody->DoCreateSession(KFileLogrerServerName,version,8);
76 if(err == KErrNotFound)
79 // Construct the server binary name
84 serverFile.Copy(KFileLogrerServerName);
86 serverFile.Append(KExe);
88 err = server.Create(serverFile,KEmpty);
91 // Synchronise with the server
92 TRequestStatus reqStatus;
93 server.Rendezvous(reqStatus);
95 // Server will call the reciprocal static synchronise call
96 User::WaitForRequest(reqStatus);
98 if(reqStatus.Int() != KErrNone)
99 return reqStatus.Int();
100 // Create the root server session
101 err = ilogbody->DoCreateSession(KFileLogrerServerName,version,8);
104 { // some other problem, kill the logbody and clean the mamory
109 { // Makes the session shared among all threads in the process
110 err = ilogbody->ShareAuto();
118 EXPORT_C TInt RFileFlogger::CreateLog(const TDesC& aLogFilePath, TLogMode aMode)
120 * @param aLogFilePath - Full path and filename of the log file
121 * @param aMode - Overwrite or Append
122 * Makes synchronous call to the log server to create a log session
125 iloglevel = ESevrAll; //ELogNone;
127 if(aLogFilePath.Length() > KMaxLoggerFilePath)
131 args.Set(0,&aLogFilePath);
133 TInt err = ilogbody->DoSendReceive(ECreateLog,args);
138 EXPORT_C void RFileFlogger::Log(const TText8* aFile, TInt aLine, TLogSeverity aSeverity, TRefByValue<const TDesC> aFmt,...)
140 * @param aFile - Source file name
141 * @param aLine - Source file line number
142 * @param aSeverity - ERR, WARN, INFO
143 * @param aFmt - UNICODE format string
146 // Set up a Variable argument list and call private method
147 if (aSeverity>iloglevel && aSeverity != ESevrTEFUnit)
152 VA_START(aList, aFmt);
153 Log(aFile, aLine, aSeverity, aFmt, aList);
157 EXPORT_C void RFileFlogger::Log(const TText8* aFile, TInt aLine, TLogSeverity aSeverity,TInt arraylength, TExtraLogField* aLogFields, TRefByValue<const TDesC> aFmt,...)
159 * @param aFile - Source file name
160 * @param aLine - Source file line number
161 * @param aSeverity - ERR, WARN, INFO
162 * @param aFmt - UNICODE format string
165 // Set up a Variable argument list and call private method
166 if (aSeverity>iloglevel && aSeverity != ESevrTEFUnit)
171 VA_START(aList, aFmt);
172 Log(aFile, aLine, aSeverity, arraylength, aLogFields, aFmt, aList);
177 void RFileFlogger::AddTime(TDes8& aLogBuffer)
181 TDateTime dateTime = now.DateTime();
182 _LIT8(KFormat,"%02d:%02d:%02d:%03d");
183 // add the current time.
184 /*--------- Maintaince Warning for aLogBuffer -----------------------------------
185 ******* the fomat of below string is sensible to server.
186 ******* Adding any string to the aLogBuffer has to be checked
187 ******* in code on server side
188 --------------------------------------------------------------------------------*/
189 aLogBuffer.AppendFormat(KFormat,dateTime.Hour(),dateTime.Minute(),dateTime.Second(),(dateTime.MicroSecond()/1000));
190 /*--------------- End of Maintaince Warning ----------------*/
193 EXPORT_C void RFileFlogger::Log(const TText8* aFile, TInt aLine, TLogSeverity aSeverity, TRefByValue<const TDesC> aFmt, VA_LIST aList)
195 if (aSeverity>iloglevel && aSeverity != ESevrTEFUnit)
200 TInt arraylength = 0;
201 TExtraLogField* aLogFields =NULL;
202 Log(aFile, aLine, aSeverity, arraylength, aLogFields, aFmt, aList);
205 EXPORT_C void RFileFlogger::Log(const TText8* aFile, TInt aLine, TLogSeverity aSeverity,TInt arraylength, TExtraLogField* aLogFields, TRefByValue<const TDesC> aFmt, VA_LIST aList)
207 * @param aFile - Source file name
208 * @param aLine - Source file line number
209 * @param aSeverity - ERR, WARN, INFO
212 * @param aFmt - UNICODE format string
213 * @param aList - Variable argument list
215 * Format a log output line
218 if (aSeverity>iloglevel && aSeverity != ESevrTEFUnit)
223 if (aSeverity == ESevrTEFUnit)
225 aSeverity = ESevrInfo;
227 /*----- Maintaince Warning for this section: -----------------------------------
228 ******* the fomat of below string is very sensible to server Server
229 ******* defomating these string with the understanding of this
230 ******* perticular format. Any change made here should be checked
231 ******* in code on server side
232 --------------------------------------------------------------------------------*/
233 // Create a filename string
234 TBuf16<KMaxFilename> fileName;
235 GetCPPModuleName(fileName, aFile);
236 // Create a buffer for formatting
237 HBufC* buffer = HBufC::New(KMaxLoggerLineLength*2);
240 TPtr ptr(buffer->Des());
245 _LIT(KMedium,"MEDIUM");
248 // ptr.Append(KTypeTagBeging);
249 ptr.Append(KSeperation);
250 if(aSeverity == ESevrErr)
252 else if(aSeverity == ESevrHigh)
254 else if(aSeverity == ESevrWarn)
256 else if(aSeverity == ESevrMedium)
258 else if (aSeverity == ESevrInfo)
260 else if(aSeverity == ESevrLow)
262 else //if(aSeverity == ESevrAll)
264 // Add the thread id -------- read CIniData to decide the level of details
265 ptr.AppendFormat(KMessageFormat,(TInt)(RThread().Id()),&fileName, aLine);
266 ptr.AppendFormatList(aFmt, aList);
267 if(arraylength>0) // trust user providing correct number with actual arrary length
270 // presuming the following string is hardly being apart of log message from users
271 // and no carrige return and line feed in their log field name and field value
273 ptr.Append(KTagSeperation);
275 ptr.AppendNum(TInt64(arraylength));
276 TInt loopValue(arraylength);
280 ptr.Append(aLogFields->iLogFieldName);
282 ptr.Append(aLogFields->iLogFieldValue);
283 loopValue--; // Decrement the looping until all fields are exhausted
284 aLogFields++; // Increment the pointer address to access sucessive array index values
287 ptr.Append(KTagSeperationEnd);
290 /*----------------- End of Maintaince warning section --------------------------*/
291 TRAP_IGNORE(WriteL(ptr));
298 void RFileFlogger::WriteL(const TDesC& aLogBuffer)
300 * @param aLogBuffer - UNICODE buffer
303 HBufC8* buffer = HBufC8::NewLC(aLogBuffer.Length()+100);
306 TPtr8 ptr(buffer->Des());
308 ptr.Append(aLogBuffer);
309 TRAP_IGNORE(WriteL(ptr));
311 CleanupStack::PopAndDestroy(buffer);
314 void RFileFlogger::WriteL(TDes8& aLogBuffer)
316 * @param aLogBuffer - pre-formatted narrow buffer
318 * Synchronous write to the server
322 // Check to see if there's room to add CRLF
323 if(aLogBuffer.Length()+2 > aLogBuffer.MaxLength())
325 HBufC8* buffer = HBufC8::NewLC(aLogBuffer.Length()+2);
328 TPtr8 ptr(buffer->Des());
329 ptr.Copy(aLogBuffer);
330 TBuf8<4> tempBuf(_L8("\r\n"));
331 if (aLogBuffer.Mid(aLogBuffer.Length()-2,2).CompareF(tempBuf) != 0)
335 args.Set(1,ptr.Length());
336 User::LeaveIfError(ilogbody->DoSendReceive(EWriteLog,args));
337 CleanupStack::PopAndDestroy(buffer);
341 TBuf8<4> tempBuf(_L8("\r\n"));
342 if (aLogBuffer.Mid(aLogBuffer.Length()-2,2).CompareF(tempBuf) != 0)
343 aLogBuffer.Append(KEnd);
345 args.Set(0,&aLogBuffer);
346 args.Set(1,aLogBuffer.Length());
347 User::LeaveIfError(ilogbody->DoSendReceive(EWriteLog,args));
351 void RFileFlogger::GetCPPModuleName(TDes& aModuleName, const TText8* aCPPFileName)
353 * @return aModuleName - Filename in descriptor
354 * @param aCppFileName - Filename
355 * Borrowed from scheduletest
358 TPtrC8 fileNamePtrC8(aCPPFileName);
359 // We do our own filename munging here; TParse can't help us since that's
360 // expressly for EPOC filepaths and here we've got whatever the build system is
361 // At present Win32 and Unix directory delimiters are supported
362 TInt lastDelimiter = Max(fileNamePtrC8.LocateReverse('\\'), fileNamePtrC8.LocateReverse('/'));
363 if(lastDelimiter >= 0 && lastDelimiter < fileNamePtrC8.Length() - 1)
365 // Found a delimiter which isn't trailing; update the ptr to start at the next char
366 TInt fileNameLen = Min(KMaxFilename, fileNamePtrC8.Length() - (lastDelimiter + 1));
367 fileNamePtrC8.Set(aCPPFileName + lastDelimiter + 1, fileNameLen);
371 // Didn't find a delimiter; take as much of the right-end of the name as fits
372 fileNamePtrC8.Set(aCPPFileName + Max(0, fileNamePtrC8.Length() - KMaxFilename), Min(fileNamePtrC8.Length(), KMaxFilename));
374 aModuleName.Copy(fileNamePtrC8);
379 EXPORT_C void RFileFlogger::SetLogLevel(TLogSeverity aloglevel)
385 EXPORT_C void RFileFlogger::Close()