First public contribution.
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.
28 NONSHARABLE_CLASS(CFileLoggerManager) : public CBase
34 static CFileLoggerManager* NewL();
35 ~CFileLoggerManager();
37 void FindOrCreateLogL(TLogFile& aLogFile);
38 void CloseLog(const TLogFile& aLogFile);
39 void WriteToLogL(const TLogFile& aLogFile, const TDesC8& aBuf);
40 void DeleteLogger(CFileLogger* aLogger);
44 TInt FindLogger(const TLogFile& aLogFile) const;
46 CArrayFixFlat<CFileLogger*> iLogger;
50 class CLoggerDeletionTimer;
52 NONSHARABLE_CLASS(CFileLogger) : public CBase
55 @deprecated becoming internal
59 static CFileLogger* NewL(CFileLoggerManager* aLoggerManager,TLogFile& aLogFile, RFs& aFs);
62 void WriteLogL(const TDesC8& aBuf);
63 TBool StartDeletionTimer();
64 void CancelDeletionTimer();
65 void DeletionTimerExpired();
66 inline void IncrementAccessCount();
67 inline void DecrementAccessCount();
68 inline TInt AccessCount() const;
69 inline TLogFile LogFile() const;
70 inline TBool DeletionTimerActive() const;
72 CFileLogger(CFileLoggerManager* aLoggerManager,TLogFile& aLogFile, RFs& aFs);
73 void ConstructL(TLogFile& aLogFile);
74 void GetFolderAndFileNameL(TFileName& aFolder,TFileName& aFilename) const;
76 CLoggerDeletionTimer* iTimer;
77 CFileLoggerManager* iLoggerManager;
84 NONSHARABLE_CLASS(CLoggerDeletionTimer) : public CTimer
90 static CLoggerDeletionTimer* NewL(CFileLogger* aLogger);
91 ~CLoggerDeletionTimer();
93 CLoggerDeletionTimer(CFileLogger* aLoggerManager);
99 #include "FLOGMAN.INL"