Update contrib.
1 // Copyright (c) 2004-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 KLogEventQueueGranularity = 3;
26 CSchLogManager::CSchLogManager()
27 : CActive(EPriorityLow)
29 CActiveScheduler::Add(this);
32 CSchLogManager::~CSchLogManager()
37 iPendingLogEvents->ResetAndDestroy();
38 delete iPendingLogEvents;
45 void CSchLogManager::ConstructL(RFs& aFileSession)
47 iFileSession = &aFileSession;
49 iLogEvent = CLogEvent::NewL();
50 iLogEvent->SetEventType(KLogTaskSchedulerEventTypeUid);
51 iPendingLogEvents = new(ELeave) CArrayPtrFlat<CLogEvent>(KLogEventQueueGranularity);
54 CSchLogManager* CSchLogManager::NewL(RFs& aFileSession)
56 CSchLogManager* self = new(ELeave) CSchLogManager();
57 CleanupStack::PushL(self);
58 self->ConstructL(aFileSession);
59 CleanupStack::Pop(self);
64 Creates a new log engine entry of type KLogTaskSchedulerEventTypeUid
65 with aError as its entry.
67 void CSchLogManager::LogError(TInt aError)
69 // Add error code as a descriptor
70 TBuf<10> errorCodeAsDescriptor;
71 errorCodeAsDescriptor.Num(aError);
72 iLogEvent->SetNumber(errorCodeAsDescriptor);
73 // Add to log or queue
76 iStatus=KRequestPending;
78 TRAPD(error, GetLogWrapperL()->Log().AddEvent(*iLogEvent, iStatus));
79 if (error != KErrNone)
85 // add the request to the queue, it will be processed asap
87 TRAPD(error, event = CLogEvent::NewL());
88 if (KErrNone != error)
90 return; // event is discarded!
92 //coverity[cleanup_stack]
93 /* NewL() and AppendL() are enclosed in TRAP and handled.
94 * So no need of pushing the variable event onto the cleanup stack
97 TRAP(error, iPendingLogEvents->AppendL(event));
98 if (KErrNone != error)
100 delete event; // event is discarded!
107 Creates a new log engine entry of type KLogTaskSchedulerEventTypeUid
108 and subject aSubject with aError as its entry.
110 void CSchLogManager::LogError(const TDesC& aSubject, TInt aError)
113 iLogEvent->SetSubject(aSubject);
117 void CSchLogManager::RunL()
119 if (iPendingLogEvents->Count()>0)
121 CLogEvent* nextEventPtr = iPendingLogEvents->At(0);
122 iLogEvent->CopyL(*nextEventPtr);
123 iStatus=KRequestPending;
125 //If error occur trap it and ignore, so that log manager can continue
126 TRAPD(error, GetLogWrapperL()->Log().AddEvent(*iLogEvent, iStatus));
127 //Following code is only to ignore build warnings
128 if (error == KErrNone)
131 // delete the ongoing CLogEvent we just copied
133 //remove the pointer from the queue
134 iPendingLogEvents->Delete(0);
138 void CSchLogManager::DoCancel()
141 iLogWrapper->Log().Cancel();
144 Creates a new CLogWrapper and initialise iLogWrapper if it doesn't exist otherwise
147 CLogWrapper* CSchLogManager::GetLogWrapperL()
152 iLogWrapper = CLogWrapper::NewL(*iFileSession, CActive::EPriorityStandard);