Update contrib.
1 // Copyright (c) 2002-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 // Main log server engine.
15 // Process log requests from multiple clients simultaneously.
24 CLogServer* CLogServer::NewL()
26 * @return - Instance of the log server
29 CLogServer * server = new (ELeave) CLogServer();
30 CleanupStack::PushL(server);
32 // CServer base class call
33 server->StartL(KFileLogrerServerName);
34 CleanupStack::Pop(server);
38 void CLogServer::ConstructL()
40 * Second phase construction
43 User::LeaveIfError(Fs().Connect());
47 CLogServer::CLogServer() : CServer2(EPriorityStandard,ESharableSessions)
54 CLogServer::~CLogServer()
59 // Close the array of control structures
65 CSession2* CLogServer::NewSessionL(const TVersion& /*aVersion*/,const RMessage2& /*aMessage*/) const
67 * @param RMessage - RMessage for the session open
70 // Just create the session
71 CLogSession* session = new (ELeave) CLogSession();
75 void CLogServer::ControlComplete(CLogFileControl& aControl)
77 * @param aControl - Logfile control class reference
79 * Checks to see if this control session can be removed
82 // Check session count and the data buffers on the queue
83 if(aControl.SessionCount() || !aControl.QueueEmpty())
86 // There are no subsessions mapped to the logfile control class and
87 // no data buffers on its write queue
88 // Loop through the server's control array and remove it then delete it
90 for(i=0;i<LogControl().Count();i++)
92 if(&aControl == LogControl()[i])
95 LogControl().Remove(i);
100 // If it's the last one then exit the server
101 if(!LogControl().Count())
102 CActiveScheduler::Stop();
108 CLogSession::CLogSession()
115 CLogSession::~CLogSession()
121 // Session close without a createlog call leaves iControl null
124 // A logfile control structure can have multiple server sessions
125 // decrement its server session count
126 iControl->RemoveSession();
127 CLogServer* p=(CLogServer*) Server();
128 // Shuts Down the server if this is the last open session
129 p->ControlComplete(*iControl);
132 void CLogSession::ServiceL(const RMessage2& aMessage)
134 * @param aMessage - Function and data for the session
137 switch(aMessage.Function())
139 // API CreateLog() call
140 case RFileFlogger::ECreateLog :
142 // Sanity check to make sure it's not been called multiple times
145 aMessage.Complete(KErrInUse);
149 // size policed on the client side
150 TBuf<KMaxLoggerFilePath> logFilePath;
152 aMessage.ReadL(0,logFilePath);
153 // Get the log mode in the second argument
154 RFileFlogger::TLogMode logMode;
155 logMode = (RFileFlogger::TLogMode)aMessage.Int1();
156 // Get a pointer to the parent server
157 CLogServer* server=(CLogServer*) Server();
158 // For compare's convert the whole path to lower case
159 logFilePath.LowerCase();
160 // Get rid of leading and trailing spaces.
163 // Loop the through the server's logfile control class list
164 // to see if there's a match.
166 for(i=0;i<server->LogControl().Count();i++)
168 if(server->LogControl()[i]->LogFile() == logFilePath)
169 // This file's already in open so we don't have to open it
174 if(i < server->LogControl().Count())
175 // Map this session to an existing logfile control class in the list
176 iControl = server->LogControl()[i];
179 // Create a new logfile control class
180 // creates/opens the logfile
181 TRAP(err,iControl = CLogFileControl::NewL(*server,logFilePath,logMode));
184 // find out the type of output format and assign to this new created control
185 TInt error = logFilePath.Find(_L(".xml"));
186 if(error==KErrNotFound) iControl->SetLogType(CLogFileControl::ETxt);
187 else iControl->SetLogType(CLogFileControl::EXml);
189 // Append it to the logfile control class list
190 server->LogControl().Append(iControl);
194 // Increment its session count
195 iControl->AddSession();
196 aMessage.Complete(err);
199 // One of the API write calls
200 case RFileFlogger::EWriteLog :
205 aMessage.Complete(KErrNotFound);
208 // Data can be any size
209 // Get the length from second argument
210 TInt bufferLength = aMessage.Int1();
211 // Get a heap buffer of the right size
212 HBufC8* buffer = HBufC8::NewLC(bufferLength);
213 TPtr8 ptr(buffer->Des());
215 aMessage.ReadL(0,ptr);
216 // Get a buffer control class contructed with the heap data
218 CLogBuffer* logBuffer = new (ELeave) CLogBuffer(*buffer);
219 CleanupStack::Pop(buffer);
220 // Add it to the logfile control class buffer queue
221 iControl->AddLogBuffer(*logBuffer);
222 if(!iControl->IsActive())
223 // AO is idle, kick into life
225 aMessage.Complete(KErrNone);
236 CLogFileControl* CLogFileControl::NewL(CLogServer& aParent, const TDesC& aLogFilePath,RFileFlogger::TLogMode aMode)
238 * @param aParent - Server reference for callback
239 * @param aLogFilePath - Full path and filename of the logfile
240 * @param aMode - Overwrite or Append
242 * First phase construction for logfile control class
245 CLogFileControl* self = new (ELeave) CLogFileControl(aParent,aLogFilePath);
246 CleanupStack::PushL(self);
247 self->ConstructL(aMode);
252 CLogFileControl::CLogFileControl(CLogServer& aParent,const TDesC& aLogFilePath) :
254 iLogFileName(aLogFilePath),
257 * @param aParent - Server reference for callback
258 * @param aLogFilePath - Full path and filename of the logfile
260 * Constructor - Safe initialisation
263 iQueue.SetOffset(CLogBuffer::LinkOffset());
266 void CLogFileControl::ConstructL(RFileFlogger::TLogMode aMode)
268 * @param aMode - Overwrite or Append
270 * Second phase construction - Create or open the logfile
273 if(aMode == RFileFlogger::ELogModeOverWrite)
274 // In overwrite mode replace
275 User::LeaveIfError(iLogFile.Replace(iParent.Fs(),iLogFileName,EFileWrite));
278 // For append try open then replace
279 TInt err = iLogFile.Open(iParent.Fs(),iLogFileName,EFileWrite);
281 // Bomb out if replace fails
282 User::LeaveIfError(iLogFile.Replace(iParent.Fs(),iLogFileName,EFileWrite));
285 // Open worked. Position at EOF
288 User::LeaveIfError(iLogFile.Seek(ESeekEnd,pos));
293 CLogFileControl::~CLogFileControl()
296 * The server maintains a list of these classes and will not destruct one if there
297 * is data on its queue
298 * Destructor just closes the file handle.
304 void CLogFileControl::RunL()
306 * Main File writing pump
307 * Called on write completion or Kick() by the session that accepts the data
311 _LIT(KPanic,"LogEng RunL()");
313 __ASSERT_DEBUG(iStatus.Int() == KErrNone,User::Panic(KPanic,iStatus.Int()));
314 // Check to see if this is the result of write completion
318 // Remove the buffer at the head of the queue and free it
319 CLogBuffer* buffer = iQueue.First();
320 iQueue.Remove(*buffer);
323 // Check to see if there's more on the queue
324 if(!iQueue.IsEmpty())
326 // There is so write the head of the queue
327 CLogBuffer* buffer = iQueue.First();
329 // Set the flag to say we've transmitted
330 iTransmitted = ETrue;
332 // ------------------------------------
333 if(iLogFormat==ETxt) WriteTxt(buffer->Buf());
334 else WriteXml(buffer->Buf());
338 // Nothing on the queue
339 iTransmitted = EFalse;
340 // Call into the server to check if this resource can be freed
341 iParent.ControlComplete(*this);
345 void CLogFileControl::WriteXml(const TDesC8 &aDes)
347 * @param aDes - send a aDes string in xml format to a log file
350 /*--------- Maintaince Warning: -----------------------------------
351 ******* the fomat of below is sensible from client original format.
352 ******* Any change should match actual string formated from client.
353 ******* Double check the code on client side
355 * The current assumtion of format:
356 * First string values are seperated by sign " - " and extra pair of fields are
357 * seperated from main log message by long unusual string "LogFieldsRequiredBeingAddedToAboveLogMessage"
358 * The \t used to seperate field name and field value and \r\n used to seperate
359 * each other from those pairs of field
360 * \t\t\t\t\t\t is used to end of whole string
361 --------------------------------------------------------------------------------*/
362 _LIT8(KxmlHeader,"<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\r\n<LOGFILE>");
363 //The order of variables:
365 // Severity - aSeverity
367 // Filename - aFilename
368 // Linenumber - aLinenumber
371 // Start of string retrive/deformating
372 HBufC8* pBuf1 = HBufC8::New(KMaxLoggerLineLength*2); //(aDes.Length()+200);
377 TPtr8 aPtr(pBuf1->Des()); // used for searching
378 TPtr8 alogbuf(pBuf1->Des()); //used for final log
385 // retrive log message:
386 // Retrive common part of log message:
390 SearchBuf.Set(aPtr.Mid(posI));
391 aCount[i]=SearchBuf.Find(KSeperation8)+posI;
393 if(aCount[i]<aCount[i-1])
396 return; // wrong format string from client
399 // seperating common log message and extra log fields will be easy for future maintaince.
400 TLogField8* alogField = new TLogField8[6]; // the common part of log message for both
401 // with and without extra log fields
408 TLogField8* extralogField=NULL; // only applied to extra log fields
410 TInt alength=0; // a length of array of extra log fields
412 alogField[0].iLogTag8.Copy(_L8("TIME"));
413 alogField[1].iLogTag8.Copy(_L8("SEVERITY"));
414 alogField[2].iLogTag8.Copy(_L8("THREAD"));
415 alogField[3].iLogTag8.Copy(_L8("FILENAME"));
416 alogField[4].iLogTag8.Copy(_L8("LINENUMBER"));
417 alogField[5].iLogTag8.Copy(_L8("TEXT"));
419 alogField[0].iLogValue8.Copy(aPtr.Mid(aCount[0],aCount[1]-aCount[0]));
422 alogField[i].iLogValue8.Copy(aPtr.Mid(aCount[i]+3,aCount[i+1]-aCount[i]-3));
425 SearchBuf.Set(aPtr.Mid(posI));
426 aCount[6]=SearchBuf.Find(_L8("LogFieldsRequiredBeingAddedToAboveLogMessage"))+posI;
427 if(aCount[6]<posI) // no addtional fields. Find return value is KErrNotFound or >0
429 alogField[5].iLogValue8.Copy(aPtr.Mid(aCount[5]+3,aDes.Length()-aCount[5]-5));
433 alogField[5].iLogValue8.Copy(aPtr.Mid(aCount[5]+3,aCount[6]-aCount[5]-5));
434 posI=aCount[6]+45; //45 is from the length of long string and a tab
435 SearchBuf.Set(aPtr.Mid(posI));
436 aCount[7]=SearchBuf.Find(_L8("\r\n"))+posI;
437 TLex8 lex(aPtr.Mid(posI,aCount[7]-posI)); // get the length
438 TInt err=lex.Val(alength);
440 alength=0; // ignor the extra log fields. Let the log go
442 // Retrive the extra log fields
443 extralogField = new TLogField8[alength];
449 for(TInt i=0; i<alength; i++)
451 aCount[6]=aCount[7]+2;
452 SearchBuf.Set(aPtr.Mid(aCount[6]));
453 aCount[7]=SearchBuf.Find(_L8("\t"))+aCount[6];
454 extralogField[i].iLogTag8.Copy(aPtr.Mid(aCount[6],aCount[7]-aCount[6]));
455 aCount[6]=aCount[7]+1;
456 SearchBuf.Set(aPtr.Mid(aCount[6]));
457 aCount[7]=SearchBuf.Find(_L8("\r\n"))+aCount[6];
458 extralogField[i].iLogValue8.Copy(aPtr.Mid(aCount[6],aCount[7]-aCount[6]));
461 // Start to organize an XML format:
463 _LIT(KLogMutex, "LoggingServerMutex");
465 TInt r = mutex.CreateGlobal(KLogMutex);
466 if(r==KErrAlreadyExists)
467 r = mutex.OpenGlobal(KLogMutex);
470 mutex.Wait(); // If still failed, let logging go without bother the mutex.
471 iLogFile.Size(afileSize);
472 if(afileSize<12) // 12 is from charters of "\r\n</LOGFILE>"
473 //It shoud happened once at the beginning of the file
474 // such as overwrite mode
476 afileSize=12; // used for lock position
477 alogbuf.Copy(KxmlHeader);
479 alogbuf.Append(_L8("\r\n<MESSAGE>\r\n"));
480 for(TInt i=0; i<6; i++)
482 alogbuf.Append(_L8(" <"));
483 alogbuf.Append(alogField[i].iLogTag8);
484 alogbuf.Append(_L8(">"));
485 alogbuf.Append(alogField[i].iLogValue8);
486 alogbuf.Append(_L8("</"));
487 alogbuf.Append(alogField[i].iLogTag8);
488 alogbuf.Append(_L8(">\r\n"));
490 for(TInt i=0; i<alength; i++)
492 alogbuf.Append(_L8(" <"));
493 alogbuf.Append(extralogField[i].iLogTag8);
494 alogbuf.Append(_L8(">"));
495 alogbuf.Append(extralogField[i].iLogValue8);
496 alogbuf.Append(_L8("</"));
497 alogbuf.Append(extralogField[i].iLogTag8);
498 alogbuf.Append(_L8(">\r\n"));
501 alogbuf.Append(_L8("</MESSAGE>"));
502 alogbuf.Append(_L8("\r\n</LOGFILE>"));
504 iLogFile.Write(afileSize-12, alogbuf,iStatus);
513 delete[] extralogField;
519 void CLogFileControl::WriteTxt(const TDesC8 &aDes)
521 * @param aDes - send a aDes string in xml format to a log file
524 /*--------- Maintaince Warning for aLogBuffer -----------------------------------
525 ******* the fomat of below is sensible from client original format.
526 ******* Any change should match actual string formated from client.
527 ******* Double check the code on client side
529 * The current assumtion of format:
530 * First string values are seperated by sign " - " and extra pair of fields are
531 * seperated from main log message by long unusual string "LogFieldsRequiredBeingAddedToAboveLogMessage"
532 * The \t used to seperate field name and field value and \r\n used to seperate
533 * each other from those pairs of field
534 --------------------------------------------------------------------------------*/
535 iLogFile.Write(aDes,iStatus);
538 CLogBuffer::CLogBuffer(HBufC8& aLogBuffer) : iLogBuffer(aLogBuffer)
540 * @param aLogBuffer - Heap descriptor. This class takes ownership
546 CLogBuffer::~CLogBuffer()
549 * This class owns a heap buffer so just free it