sl@0: // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef __SCHLOG_H__ sl@0: #define __SCHLOG_H__ sl@0: sl@0: // Classes referenced sl@0: class CLogEvent; sl@0: class CLogWrapper; sl@0: sl@0: /* sl@0: This class manages the logging of error messages to the log engine. sl@0: It allows several messages to be able to be logged at the same time sl@0: by performing some simple queuing. sl@0: */ sl@0: NONSHARABLE_CLASS(CSchLogManager) : public CActive sl@0: { sl@0: public: sl@0: ~CSchLogManager(); sl@0: static CSchLogManager* NewL(RFs& aFileSession); sl@0: sl@0: private: sl@0: CLogWrapper* GetLogWrapperL(); sl@0: CSchLogManager(); sl@0: void ConstructL(RFs& aFileSession); sl@0: // From CActive sl@0: void RunL(); sl@0: void DoCancel(); sl@0: sl@0: public: sl@0: void LogError(const TDesC& aSubject, TInt aError); sl@0: void LogError(TInt aError); sl@0: sl@0: private: sl@0: RFs *iFileSession; sl@0: CLogEvent* iLogEvent; sl@0: CLogWrapper* iLogWrapper; sl@0: CArrayPtrFlat* iPendingLogEvents; sl@0: }; sl@0: sl@0: #endif sl@0: