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.
24 const TInt KLoggerGranularity=5;
27 Literal const that hold back slash.
29 const TText KBackSlash='\\';
32 full path for log folder
34 _LIT(KLogFolder,"C:\\LOGS\\");
37 CFileLoggerManager definitions
40 CFileLoggerManager* CFileLoggerManager::NewL()
42 Creates a new CFileLoggerManager Object
46 CFileLoggerManager* r=new(ELeave) CFileLoggerManager();
47 CleanupStack::PushL(r);
53 CFileLoggerManager::~CFileLoggerManager()
60 TInt count=iLogger.Count();
61 for (i=0; i<count; i++)
67 iLogger.Delete(0,count);
71 CFileLoggerManager::CFileLoggerManager()
72 : iLogger(KLoggerGranularity)
78 void CFileLoggerManager::ConstructL()
81 User::LeaveIfError(iFs.Connect());
84 void CFileLoggerManager::FindOrCreateLogL(TLogFile& aLogFile)
86 Searches the log file. If not found create it otherwise just
87 increment access count.
89 @param aLogFile Name of log file
93 TInt indexFound=FindLogger(aLogFile);
94 if (indexFound!=KErrNotFound)
96 iLogger[indexFound]->CancelDeletionTimer();
97 iLogger[indexFound]->IncrementAccessCount();
98 aLogFile.SetValid(iLogger[indexFound]->LogFile().Valid());
102 CFileLogger* log=CFileLogger::NewL(this,aLogFile,iFs);
103 CleanupStack::PushL(log);
104 iLogger.AppendL(log);
108 void CFileLoggerManager::CloseLog(const TLogFile& aLogFile)
110 Searches the log file, if not found return. Decrement the access
111 count and check for the client usage. If no client is using it
112 any more, delete the log file.
114 @param aLogFile Name of log file
118 TInt indexFound=FindLogger(aLogFile);
119 if (indexFound==KErrNotFound)
122 if (!iLogger[indexFound]->DeletionTimerActive())
124 iLogger[indexFound]->DecrementAccessCount();
126 if (iLogger[indexFound]->AccessCount()==0) // if no client is using it any more
128 TBool started=iLogger[indexFound]->StartDeletionTimer();
131 delete iLogger[indexFound];
132 iLogger.Delete(indexFound,1);
138 void CFileLoggerManager::WriteToLogL(const TLogFile& aLogFile, const TDesC8& aBuf)
140 Searches and Writes to log file.
142 @param aLogFile Name of log file
143 @param aBuf Text to write
147 TInt indexFound=FindLogger(aLogFile);
148 if (indexFound==KErrNotFound)
150 User::Leave(KErrNotFound);
154 iLogger[indexFound]->WriteLogL(aBuf);
157 void CFileLoggerManager::DeleteLogger(CFileLogger* aLogger)
160 TInt index=FindLogger(aLogger->LogFile());
161 __ASSERT_DEBUG(index!=KErrNotFound, User::Invariant());
162 if (index!=KErrNotFound)
164 delete iLogger[index];
165 iLogger.Delete(index,1);
169 TInt CFileLoggerManager::FindLogger(const TLogFile& aLogFile) const
172 @param aLogFile Name of the log file
177 TInt indexFound=KErrNotFound;
178 for (i=0; i<iLogger.Count(); i++)
180 if (iLogger[i]->LogFile()==aLogFile)
190 CFileLogger defintions
193 CFileLogger* CFileLogger::NewL(CFileLoggerManager* aLoggerManager,TLogFile& aLogFile, RFs& aFs)
200 CFileLogger* r=new(ELeave) CFileLogger(aLoggerManager,aLogFile,aFs);
201 CleanupStack::PushL(r);
202 r->ConstructL(aLogFile);
207 CFileLogger::~CFileLogger()
213 __ASSERT_DEBUG(iAccessCount==0, User::Invariant());
218 CFileLogger::CFileLogger(CFileLoggerManager* aLoggerManager,TLogFile& aLogFile, RFs& aFs)
219 : iLoggerManager(aLoggerManager), iFs(aFs), iLogFile(aLogFile), iAccessCount(0)
221 Access count will be incremented when construcion is complete
226 void CFileLogger::ConstructL(TLogFile& aLogFile)
228 Decide whether to create a log (only create a log if the folder exists) and if
229 so delete any existing one, if the mode is overwirte, append to any existing one
230 if the mode is append. Open or create and the file and position to the end of it.
231 If an error occurs, the iValid flag will just be left as FALSE, as initialised.
233 @param aLogFile Name of the log file
237 iTimer=CLoggerDeletionTimer::NewL(this);
239 iLogFile.SetValid(EFalse);
240 aLogFile.SetValid(EFalse);
242 TFileName logFolder,logFilename;
243 GetFolderAndFileNameL(logFolder,logFilename);
246 if (iFs.Att(logFolder,n)==KErrNone) // the folder exists => do logging
249 TBool fileExists=EFalse;
250 if (iLogFile.Mode()==EFileLoggingModeOverwrite)
252 ret=iFs.Delete(logFilename);
253 if (ret!=KErrNotFound && ret!=KErrNone)
258 if (iFs.Att(logFilename,n)==KErrNone)
263 ret=iFile.Create(iFs,logFilename,EFileShareAny|EFileWrite);
265 ret=iFile.Open(iFs,logFilename,EFileShareAny|EFileWrite);
266 if (ret==KErrNone) // if we managed to open/create it
269 ret=iFile.Seek(ESeekEnd,pos);
272 iLogFile.SetValid(ETrue);
273 aLogFile.SetValid(ETrue);
274 IncrementAccessCount();
281 IncrementAccessCount();
284 void CFileLogger::WriteLogL(const TDesC8& aBuf)
286 Checks for log file and then Writes the text
288 @param aBuf Text to write
292 if (iLogFile.Valid())
294 User::LeaveIfError(iFile.Write(aBuf));
295 User::LeaveIfError(iFile.Flush());
299 TBool CFileLogger::StartDeletionTimer()
301 Starts timer if this was a valid log file (i.e. it was open)
305 if (!iLogFile.Valid())
307 iTimer->After(KShutdownPause);
311 void CFileLogger::CancelDeletionTimer()
319 void CFileLogger::DeletionTimerExpired()
324 iLoggerManager->DeleteLogger(this);
327 void CFileLogger::GetFolderAndFileNameL(TFileName& aFolder,TFileName& aFilename) const
329 Work out the full path of the folder and file name of the log
331 @param aFolder Full path of log file
332 @param aFilename Name of log file
336 aFolder.Append(KLogFolder);
337 if ((aFolder.MaxLength()-aFolder.Length()-iLogFile.Directory().Length()-1)>=0)
339 aFolder.Append(iLogFile.Directory());
340 aFolder.Append(KBackSlash);
343 User::Leave(KErrOverflow);
345 if ((aFilename.MaxLength()-aFolder.Length()-iLogFile.Name().Length())>=0)
347 aFilename.Append(aFolder);
348 aFilename.Append(iLogFile.Name());
351 User::Leave(KErrOverflow);
355 CLoggerDeletionTimer class definitions
358 CLoggerDeletionTimer* CLoggerDeletionTimer::NewL(CFileLogger* aLogger)
360 Creates CLoggerDeletionTimer
364 CLoggerDeletionTimer* r=new(ELeave) CLoggerDeletionTimer(aLogger);
365 CleanupStack::PushL(r);
371 CLoggerDeletionTimer::~CLoggerDeletionTimer()
377 CLoggerDeletionTimer::CLoggerDeletionTimer(CFileLogger* aLogger)
378 : CTimer(EPriorityIdle), iLogger(aLogger)
380 CActiveScheduler::Add(this);
383 void CLoggerDeletionTimer::RunL()
386 iLogger->DeletionTimerExpired();