sl@0
|
1 |
// Copyright (c) 2005-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 |
// Implementation of CSchStartupStateMgr class which connects to
|
sl@0
|
15 |
// the Domain manager to keep aware of the current start-up
|
sl@0
|
16 |
// state and distributes the state changes to registered observers.
|
sl@0
|
17 |
//
|
sl@0
|
18 |
//
|
sl@0
|
19 |
|
sl@0
|
20 |
/**
|
sl@0
|
21 |
@file
|
sl@0
|
22 |
@internalComponent
|
sl@0
|
23 |
*/
|
sl@0
|
24 |
|
sl@0
|
25 |
#include "SchSSAMan.h"
|
sl@0
|
26 |
#include "SchLogger.h"
|
sl@0
|
27 |
|
sl@0
|
28 |
/**
|
sl@0
|
29 |
constructor of CSchStartupStateMgr
|
sl@0
|
30 |
@internalComponent
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
CSchStartupStateMgr::CSchStartupStateMgr(TDmHierarchyId aHierarchyId, TDmDomainId aDomainId) :
|
sl@0
|
33 |
CDmDomain(aHierarchyId,aDomainId),
|
sl@0
|
34 |
iCurrentStartupState(EStartupStateUndefined)
|
sl@0
|
35 |
{
|
sl@0
|
36 |
}
|
sl@0
|
37 |
|
sl@0
|
38 |
/**
|
sl@0
|
39 |
destructor of CSchStartupStateMgr
|
sl@0
|
40 |
@internalComponent
|
sl@0
|
41 |
*/
|
sl@0
|
42 |
CSchStartupStateMgr::~CSchStartupStateMgr()
|
sl@0
|
43 |
{
|
sl@0
|
44 |
Cancel();
|
sl@0
|
45 |
iObserverList.Reset();
|
sl@0
|
46 |
}
|
sl@0
|
47 |
|
sl@0
|
48 |
/**
|
sl@0
|
49 |
Getter
|
sl@0
|
50 |
@internalComponent
|
sl@0
|
51 |
@return the current startup state
|
sl@0
|
52 |
*/
|
sl@0
|
53 |
TStartupStateIdentifier CSchStartupStateMgr::CurrentStartupState()
|
sl@0
|
54 |
{
|
sl@0
|
55 |
return iCurrentStartupState;
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
/**
|
sl@0
|
59 |
updates the MSchStartupStateObserver objects.
|
sl@0
|
60 |
@internalComponent
|
sl@0
|
61 |
*/
|
sl@0
|
62 |
void CSchStartupStateMgr::UpdateStateAwareObjectsL(TStartupStateIdentifier aKnownState)
|
sl@0
|
63 |
{
|
sl@0
|
64 |
for (TInt i = 0; i < iObserverList.Count(); i++)
|
sl@0
|
65 |
{
|
sl@0
|
66 |
iObserverList[i]->ProcessSSAEventL(aKnownState);
|
sl@0
|
67 |
}
|
sl@0
|
68 |
}
|
sl@0
|
69 |
|
sl@0
|
70 |
/**
|
sl@0
|
71 |
This method takes a a startup state which can be user defined
|
sl@0
|
72 |
state and maps it to a known startup state (KSS). KSS are
|
sl@0
|
73 |
Symbian defined states: undefined, critical static, critical dynamic,
|
sl@0
|
74 |
and non-critical.
|
sl@0
|
75 |
User defined states are refered to as USS - unknown startup state.
|
sl@0
|
76 |
|
sl@0
|
77 |
@internalComponent
|
sl@0
|
78 |
*/
|
sl@0
|
79 |
TStartupStateIdentifier CSchStartupStateMgr::GetKnownStartupState(TDmDomainState aStartupState)
|
sl@0
|
80 |
{
|
sl@0
|
81 |
TStartupStateIdentifier knownStartupState = iCurrentStartupState;
|
sl@0
|
82 |
|
sl@0
|
83 |
if (aStartupState >= EStartupStateNonCritical)
|
sl@0
|
84 |
{
|
sl@0
|
85 |
knownStartupState = EStartupStateNonCritical;
|
sl@0
|
86 |
}
|
sl@0
|
87 |
else if(aStartupState >= EStartupStateCriticalDynamic)
|
sl@0
|
88 |
{
|
sl@0
|
89 |
knownStartupState = EStartupStateCriticalDynamic;
|
sl@0
|
90 |
}
|
sl@0
|
91 |
else if(aStartupState >= EStartupStateCriticalStatic)
|
sl@0
|
92 |
{
|
sl@0
|
93 |
knownStartupState = EStartupStateCriticalStatic;
|
sl@0
|
94 |
}
|
sl@0
|
95 |
else
|
sl@0
|
96 |
{
|
sl@0
|
97 |
knownStartupState = EStartupStateUndefined;
|
sl@0
|
98 |
}
|
sl@0
|
99 |
|
sl@0
|
100 |
return knownStartupState;
|
sl@0
|
101 |
}
|
sl@0
|
102 |
|
sl@0
|
103 |
/**
|
sl@0
|
104 |
Register the MSchStartupStateObserver object with the CServerStartupMgr.
|
sl@0
|
105 |
@internalComponent
|
sl@0
|
106 |
@param aObs the pointer to the MStartupStateObserver object to be registered with CServerStartupMgr.
|
sl@0
|
107 |
*/
|
sl@0
|
108 |
void CSchStartupStateMgr::RegisterObserverL(const MSchStartupStateObserver* aObs)
|
sl@0
|
109 |
{
|
sl@0
|
110 |
User::LeaveIfError(iObserverList.Append(aObs));
|
sl@0
|
111 |
}
|
sl@0
|
112 |
|
sl@0
|
113 |
/**
|
sl@0
|
114 |
Handle the error if RunL leaves. Just tell the observers that
|
sl@0
|
115 |
we have reached the final state.
|
sl@0
|
116 |
|
sl@0
|
117 |
@internalComponent
|
sl@0
|
118 |
@param aError error code generated by the RunL(), not used here.
|
sl@0
|
119 |
@return KErrNone to avoid CActiveScheduler to panic.
|
sl@0
|
120 |
*/
|
sl@0
|
121 |
TInt CSchStartupStateMgr::RunError(TInt /*aError*/)
|
sl@0
|
122 |
{
|
sl@0
|
123 |
LOGSTRING("CSchStartupStateMgr::RunL() leaves, set SS to final state.");
|
sl@0
|
124 |
TRAP_IGNORE(UpdateStateAwareObjectsL(KSchFinalStartupState));
|
sl@0
|
125 |
return KErrNone;
|
sl@0
|
126 |
}
|
sl@0
|
127 |
|
sl@0
|
128 |
/**
|
sl@0
|
129 |
Finsish constructing the CSchStartupStateMgr and start
|
sl@0
|
130 |
interacting with Domain Manager to receive startup state
|
sl@0
|
131 |
changes.
|
sl@0
|
132 |
All observers should have been registered before calling this method
|
sl@0
|
133 |
|
sl@0
|
134 |
@internalComponent
|
sl@0
|
135 |
*/
|
sl@0
|
136 |
void CSchStartupStateMgr::InitialiseL()
|
sl@0
|
137 |
{
|
sl@0
|
138 |
TRAPD(err, CDmDomain::ConstructL());
|
sl@0
|
139 |
if (err != KErrNone)
|
sl@0
|
140 |
{
|
sl@0
|
141 |
// the ConstructL leaves, go to final state
|
sl@0
|
142 |
LOGSTRING2("CDmDomain::ConstructL leaves with %d. Goto final state", err);
|
sl@0
|
143 |
UpdateStateAwareObjectsL(KSchFinalStartupState);
|
sl@0
|
144 |
iCurrentStartupState = KSchFinalStartupState;
|
sl@0
|
145 |
return;
|
sl@0
|
146 |
}
|
sl@0
|
147 |
|
sl@0
|
148 |
// Typical pattern of using P&S is to subscribe first then get
|
sl@0
|
149 |
// current state. Example implementation given
|
sl@0
|
150 |
// in SSA Adaptation How-to also does it this way.
|
sl@0
|
151 |
RequestTransitionNotification();
|
sl@0
|
152 |
|
sl@0
|
153 |
// get the start up state from the Domain Manager.
|
sl@0
|
154 |
TDmDomainState rawstate = GetState();
|
sl@0
|
155 |
|
sl@0
|
156 |
// rawstate may be user defined. Map to known states.
|
sl@0
|
157 |
TStartupStateIdentifier nextKnownState = GetKnownStartupState(rawstate);
|
sl@0
|
158 |
|
sl@0
|
159 |
// NB: nextKnownState can be KStartupStateUndefined for 2 reasons.
|
sl@0
|
160 |
// One is rawstate == 0 which we must check first. Second:
|
sl@0
|
161 |
// rawstate is user defined values lower than critical static. In
|
sl@0
|
162 |
// the second case we must wait for next state change.
|
sl@0
|
163 |
if (rawstate == EStartupStateUndefined ||
|
sl@0
|
164 |
nextKnownState == KSchFinalStartupState)
|
sl@0
|
165 |
{
|
sl@0
|
166 |
// If either something wrong with DM or final state is reached,
|
sl@0
|
167 |
// go to final state
|
sl@0
|
168 |
iCurrentStartupState = KSchFinalStartupState;
|
sl@0
|
169 |
UpdateStateAwareObjectsL(KSchFinalStartupState);
|
sl@0
|
170 |
Cancel();
|
sl@0
|
171 |
return;
|
sl@0
|
172 |
}
|
sl@0
|
173 |
|
sl@0
|
174 |
iCurrentStartupState = nextKnownState;
|
sl@0
|
175 |
}
|
sl@0
|
176 |
|
sl@0
|
177 |
/**
|
sl@0
|
178 |
Executed when the startup state change is done, it does the
|
sl@0
|
179 |
same thing as the method InitialiseL() does
|
sl@0
|
180 |
@internalComponent
|
sl@0
|
181 |
*/
|
sl@0
|
182 |
void CSchStartupStateMgr::RunL()
|
sl@0
|
183 |
{
|
sl@0
|
184 |
if(iStatus != KErrNone) // something wrong with the RequestTransitionNotification().
|
sl@0
|
185 |
{
|
sl@0
|
186 |
AcknowledgeLastState(iStatus.Int()); //Acknowledge the domainmanager in case of leaving, this to avoid the acknowledgement in RunError()
|
sl@0
|
187 |
User::LeaveIfError(iStatus.Int()); //RunError will handle this.
|
sl@0
|
188 |
}
|
sl@0
|
189 |
|
sl@0
|
190 |
RequestTransitionNotification();
|
sl@0
|
191 |
|
sl@0
|
192 |
TDmDomainState rawstate = GetState();
|
sl@0
|
193 |
|
sl@0
|
194 |
// Must first check the case rawstate == undefined and deal with it here.
|
sl@0
|
195 |
// GetKnowStartupState maps 1 to 15 to EStartupStateUndefined
|
sl@0
|
196 |
// which means a SS before critical static. It does not mean go
|
sl@0
|
197 |
// to final state.
|
sl@0
|
198 |
|
sl@0
|
199 |
//If the rawstate is EStartupStateUndefined there must be sth wrong.
|
sl@0
|
200 |
if(rawstate == EStartupStateUndefined)
|
sl@0
|
201 |
{
|
sl@0
|
202 |
Cancel();
|
sl@0
|
203 |
AcknowledgeLastState(KErrBadHandle);
|
sl@0
|
204 |
User::Leave(KErrBadHandle); //RunError will handle this.
|
sl@0
|
205 |
}
|
sl@0
|
206 |
|
sl@0
|
207 |
// get the known state
|
sl@0
|
208 |
TStartupStateIdentifier nextKnownState = GetKnownStartupState(rawstate);
|
sl@0
|
209 |
|
sl@0
|
210 |
//Tell domain manager that we have processed the last state change before starting any time consuming work.
|
sl@0
|
211 |
AcknowledgeLastState(KErrNone);
|
sl@0
|
212 |
|
sl@0
|
213 |
//Sleep 2 tickperiods this allows the acknowledgement reach the domain manager.
|
sl@0
|
214 |
TTimeIntervalMicroSeconds32 tickPeriod;
|
sl@0
|
215 |
UserHal::TickPeriod(tickPeriod);
|
sl@0
|
216 |
User::After(2*tickPeriod.Int());
|
sl@0
|
217 |
|
sl@0
|
218 |
// Schsvr only want to know transition to non-critical.
|
sl@0
|
219 |
// Ignore all states below that level.
|
sl@0
|
220 |
if (iCurrentStartupState < KSchFinalStartupState && nextKnownState == KSchFinalStartupState)
|
sl@0
|
221 |
{
|
sl@0
|
222 |
UpdateStateAwareObjectsL(nextKnownState);
|
sl@0
|
223 |
}
|
sl@0
|
224 |
|
sl@0
|
225 |
iCurrentStartupState = nextKnownState;
|
sl@0
|
226 |
|
sl@0
|
227 |
//do not request transition notification if we have reached the last state
|
sl@0
|
228 |
if(iCurrentStartupState == KSchFinalStartupState)
|
sl@0
|
229 |
{
|
sl@0
|
230 |
Cancel();
|
sl@0
|
231 |
}
|
sl@0
|
232 |
}
|