sl@0
|
1 |
// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
// System includes
|
sl@0
|
17 |
#include <logwrap.h>
|
sl@0
|
18 |
|
sl@0
|
19 |
// User includes
|
sl@0
|
20 |
#include "SCHLOG.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
|
sl@0
|
23 |
//Constants
|
sl@0
|
24 |
const TInt KLogEventQueueGranularity = 3;
|
sl@0
|
25 |
|
sl@0
|
26 |
CSchLogManager::CSchLogManager()
|
sl@0
|
27 |
: CActive(EPriorityLow)
|
sl@0
|
28 |
{
|
sl@0
|
29 |
CActiveScheduler::Add(this);
|
sl@0
|
30 |
}
|
sl@0
|
31 |
|
sl@0
|
32 |
CSchLogManager::~CSchLogManager()
|
sl@0
|
33 |
{
|
sl@0
|
34 |
Cancel();
|
sl@0
|
35 |
if(iPendingLogEvents)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
iPendingLogEvents->ResetAndDestroy();
|
sl@0
|
38 |
delete iPendingLogEvents;
|
sl@0
|
39 |
}
|
sl@0
|
40 |
delete iLogEvent;
|
sl@0
|
41 |
if(iLogWrapper)
|
sl@0
|
42 |
delete iLogWrapper;
|
sl@0
|
43 |
}
|
sl@0
|
44 |
|
sl@0
|
45 |
void CSchLogManager::ConstructL(RFs& aFileSession)
|
sl@0
|
46 |
{
|
sl@0
|
47 |
iFileSession = &aFileSession;
|
sl@0
|
48 |
iLogWrapper = NULL;
|
sl@0
|
49 |
iLogEvent = CLogEvent::NewL();
|
sl@0
|
50 |
iLogEvent->SetEventType(KLogTaskSchedulerEventTypeUid);
|
sl@0
|
51 |
iPendingLogEvents = new(ELeave) CArrayPtrFlat<CLogEvent>(KLogEventQueueGranularity);
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|
sl@0
|
54 |
CSchLogManager* CSchLogManager::NewL(RFs& aFileSession)
|
sl@0
|
55 |
{
|
sl@0
|
56 |
CSchLogManager* self = new(ELeave) CSchLogManager();
|
sl@0
|
57 |
CleanupStack::PushL(self);
|
sl@0
|
58 |
self->ConstructL(aFileSession);
|
sl@0
|
59 |
CleanupStack::Pop(self);
|
sl@0
|
60 |
return self;
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
/*
|
sl@0
|
64 |
Creates a new log engine entry of type KLogTaskSchedulerEventTypeUid
|
sl@0
|
65 |
with aError as its entry.
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
void CSchLogManager::LogError(TInt aError)
|
sl@0
|
68 |
{
|
sl@0
|
69 |
// Add error code as a descriptor
|
sl@0
|
70 |
TBuf<10> errorCodeAsDescriptor;
|
sl@0
|
71 |
errorCodeAsDescriptor.Num(aError);
|
sl@0
|
72 |
iLogEvent->SetNumber(errorCodeAsDescriptor);
|
sl@0
|
73 |
// Add to log or queue
|
sl@0
|
74 |
if (!IsActive())
|
sl@0
|
75 |
{
|
sl@0
|
76 |
iStatus=KRequestPending;
|
sl@0
|
77 |
|
sl@0
|
78 |
TRAPD(error, GetLogWrapperL()->Log().AddEvent(*iLogEvent, iStatus));
|
sl@0
|
79 |
if (error != KErrNone)
|
sl@0
|
80 |
return;
|
sl@0
|
81 |
SetActive();
|
sl@0
|
82 |
}
|
sl@0
|
83 |
else
|
sl@0
|
84 |
{
|
sl@0
|
85 |
// add the request to the queue, it will be processed asap
|
sl@0
|
86 |
CLogEvent* event = 0;
|
sl@0
|
87 |
TRAPD(error, event = CLogEvent::NewL());
|
sl@0
|
88 |
if (KErrNone != error)
|
sl@0
|
89 |
{
|
sl@0
|
90 |
return; // event is discarded!
|
sl@0
|
91 |
}
|
sl@0
|
92 |
//coverity[cleanup_stack]
|
sl@0
|
93 |
/* NewL() and AppendL() are enclosed in TRAP and handled.
|
sl@0
|
94 |
* So no need of pushing the variable event onto the cleanup stack
|
sl@0
|
95 |
*/
|
sl@0
|
96 |
// add to the queue
|
sl@0
|
97 |
TRAP(error, iPendingLogEvents->AppendL(event));
|
sl@0
|
98 |
if (KErrNone != error)
|
sl@0
|
99 |
{
|
sl@0
|
100 |
delete event; // event is discarded!
|
sl@0
|
101 |
return;
|
sl@0
|
102 |
}
|
sl@0
|
103 |
}
|
sl@0
|
104 |
}
|
sl@0
|
105 |
|
sl@0
|
106 |
/*
|
sl@0
|
107 |
Creates a new log engine entry of type KLogTaskSchedulerEventTypeUid
|
sl@0
|
108 |
and subject aSubject with aError as its entry.
|
sl@0
|
109 |
*/
|
sl@0
|
110 |
void CSchLogManager::LogError(const TDesC& aSubject, TInt aError)
|
sl@0
|
111 |
{
|
sl@0
|
112 |
//AddSubject
|
sl@0
|
113 |
iLogEvent->SetSubject(aSubject);
|
sl@0
|
114 |
LogError(aError);
|
sl@0
|
115 |
}
|
sl@0
|
116 |
|
sl@0
|
117 |
void CSchLogManager::RunL()
|
sl@0
|
118 |
{
|
sl@0
|
119 |
if (iPendingLogEvents->Count()>0)
|
sl@0
|
120 |
{
|
sl@0
|
121 |
CLogEvent* nextEventPtr = iPendingLogEvents->At(0);
|
sl@0
|
122 |
iLogEvent->CopyL(*nextEventPtr);
|
sl@0
|
123 |
iStatus=KRequestPending;
|
sl@0
|
124 |
|
sl@0
|
125 |
//If error occur trap it and ignore, so that log manager can continue
|
sl@0
|
126 |
TRAPD(error, GetLogWrapperL()->Log().AddEvent(*iLogEvent, iStatus));
|
sl@0
|
127 |
//Following code is only to ignore build warnings
|
sl@0
|
128 |
if (error == KErrNone)
|
sl@0
|
129 |
error = KErrNone;
|
sl@0
|
130 |
SetActive();
|
sl@0
|
131 |
// delete the ongoing CLogEvent we just copied
|
sl@0
|
132 |
delete nextEventPtr;
|
sl@0
|
133 |
//remove the pointer from the queue
|
sl@0
|
134 |
iPendingLogEvents->Delete(0);
|
sl@0
|
135 |
}
|
sl@0
|
136 |
}
|
sl@0
|
137 |
|
sl@0
|
138 |
void CSchLogManager::DoCancel()
|
sl@0
|
139 |
{
|
sl@0
|
140 |
if(iLogWrapper)
|
sl@0
|
141 |
iLogWrapper->Log().Cancel();
|
sl@0
|
142 |
}
|
sl@0
|
143 |
/*
|
sl@0
|
144 |
Creates a new CLogWrapper and initialise iLogWrapper if it doesn't exist otherwise
|
sl@0
|
145 |
return iLogWrapper
|
sl@0
|
146 |
*/
|
sl@0
|
147 |
CLogWrapper* CSchLogManager::GetLogWrapperL()
|
sl@0
|
148 |
{
|
sl@0
|
149 |
if(iLogWrapper)
|
sl@0
|
150 |
return iLogWrapper;
|
sl@0
|
151 |
|
sl@0
|
152 |
iLogWrapper = CLogWrapper::NewL(*iFileSession, CActive::EPriorityStandard);
|
sl@0
|
153 |
|
sl@0
|
154 |
return iLogWrapper;
|
sl@0
|
155 |
}
|
sl@0
|
156 |
|
sl@0
|
157 |
|