Update contrib.
1 // Copyright (c) 2005-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.
14 // The Implementation of the CServerStartupMgr class which
15 // connects to the Domain manager to keep aware of the current start-up
16 // state and distributes the state changes to the interested MStartupStateObserver
26 #include "ServerStartupManager.h"
27 #include "EComServer.h"
28 #include "EComDebug.h"
29 #include "EComPerformance.h"
32 constructor of CServerStartupMgr
33 @param aHierarchyId The Id of the domain hierarchy to connect to.
34 @param aDomainId The Id of the domain to connect to.
35 @param aFs A reference to a connected file server session.
37 CServerStartupMgr::CServerStartupMgr(TDmHierarchyId aHierarchyId, TDmDomainId aDomainId, RFs& aFs):
38 #ifdef __ECOM_SERVER_TESTABILITY__
39 CDmDomainTestHarness(aHierarchyId,aDomainId),
41 CDmDomain(aHierarchyId,aDomainId),
43 EKFinalStartupState(EStartupStateNonCritical),
44 iCurrentStartupState(EStartupStateUndefined),
55 CServerStartupMgr::~CServerStartupMgr()
58 iObserverList.Reset();
63 Accessor to the current startup state
65 @return the current startup state
67 TStartupStateIdentifier CServerStartupMgr::CurrentStartupState()
69 return iCurrentStartupState;
73 updates the MStartupStateObserver objects.
75 @param aKnownState the startup state passed into the MStartupStateObserver objects.
77 void CServerStartupMgr::UpdateStateAwareObjectsL(TStartupStateIdentifier aKnownState)
79 RECORD_STARTUP_STATE_TIMER_RESULT(aKnownState)
80 RECORD_STARTUP_STATE_HEAP_RESULT(aKnownState)
81 TInt observerCount=iObserverList.Count();
82 for (TInt i = 0; i < observerCount; i++)
84 iObserverList[i]->ProcessSSAEventL(aKnownState);
86 RECORD_STARTUP_STATE_HEAP_RESULT(aKnownState)
87 RECORD_STARTUP_STATE_TIMER_RESULT(aKnownState)
91 This method takes a a startup state which can be KSS or USS as a parameter,
92 and returns a ECOM Known Startup State
94 @param aStartupState a startup state which can be KSS or USS.
95 @return an ECOM known startup state
97 TStartupStateIdentifier CServerStartupMgr::GetKnownStartupState(TDmDomainState aStartupState)
99 if(aStartupState >= EStartupStateNonCritical)
101 return EStartupStateNonCritical;
103 else if(aStartupState >= EStartupStateCriticalDynamic)
105 return EStartupStateCriticalDynamic;
107 else if(aStartupState >= EStartupStateCriticalStatic)
109 return EStartupStateCriticalStatic;
113 return EStartupStateUndefined;
119 Register the MStartupStateObserver object with the CServerStartupMgr.
121 @param aObs the pointer to the MStartupStateObserver object to be registered with CServerStartupMgr.
123 void CServerStartupMgr::RegisterObserverL(const MStartupStateObserver* aObs)
125 User::LeaveIfError(iObserverList.Append(aObs));
130 Handle the error if RunL leaves. Panic with the error code
132 @param aError error code generated by the RunL(), not used here.
133 @return KErrNone to avoid CActiveScheduler to panic.
135 TInt CServerStartupMgr::RunError(TInt aError)
137 __ECOM_LOG1("ECOM: PANIC in CServerStartupMgr::RunError(), error= %d", aError);
138 User::Panic(KEComServerPanicCategory, EEComPanic_CServerStartupMgr_RunError);
139 return KErrNone; // dummy return to stop compiler warnings
143 This method indicates how the CServerStartupMgr interacts with the Domain
144 manager to keep aware of the startup state change, and distribute it to the
145 MStartupStateObserver objects inside ECOM.
147 @pre CServerStartupMgr is fully constructed.
149 void CServerStartupMgr::InitialiseL(TBool aSsaEnabled)
153 // it is not SSA, do a full discovery.
154 __ECOM_TRACE("ECOM: CServerStartupMgr::InitialiseL(): It is not SSA, do a full discovery");
155 UpdateStateAwareObjectsL(EKFinalStartupState);
156 iCurrentStartupState = EKFinalStartupState;
162 __ECOM_TRACE("---------------------------------------------------");
163 __ECOM_TRACE("ECOM: CServerStartupMgr::InitialiseL(): SSA is on.");
164 #ifdef __ECOM_SERVER_TESTABILITY__
165 TRAPD(err, CDmDomainTestHarness::ConstructL());
167 TRAPD(err, CDmDomain::ConstructL());
171 // the ConstructL leaves, then do a full discovery.
172 __ECOM_TRACE("ECOM: CServerStartupMgr::InitialiseL(): Can not connect to the Domain Manager, do a full discovery.");
173 UpdateStateAwareObjectsL(EKFinalStartupState);
174 iCurrentStartupState = EKFinalStartupState;
178 //get the state from Domain Manager in case missing any.
179 #ifdef __ECOM_SERVER_TESTABILITY__
180 RequestTransitionNotificationL();
182 RequestTransitionNotification();
185 // get the start up state from the Domain Manager.
186 TDmDomainState state = GetState();
188 // either something wrong with the Domain Manager or final state is reached.
189 if(state <= EStartupStateUndefined || state >= EStartupStateNonCritical)
191 // do a full discovery. Cancel outstanding request.
192 UpdateStateAwareObjectsL(EKFinalStartupState);
193 iCurrentStartupState = EKFinalStartupState;
198 // get the ECom Known state.
199 TStartupStateIdentifier nextKnownState = GetKnownStartupState(state);
202 //for EStartupStateCriticalStatic or EStartupStateCriticalDynamic.
203 if(nextKnownState != EStartupStateUndefined)
205 // catch up to the ECOM interested state.
206 UpdateStateAwareObjectsL(EStartupStateCriticalStatic);
209 iCurrentStartupState = nextKnownState;
215 Executed when the startup state change is done, it does the same thing
216 as the method InitialiseL() does when SSA is on and the CurrentStartupState is not EStartupStateNonCritical.
219 void CServerStartupMgr::RunL()
221 // Leave if something wrong with the RequestTransitionNotification().
222 User::LeaveIfError(iStatus.Int()); //RunError will handle this.
224 //do request transition notification in case missing any.
225 #ifdef __ECOM_SERVER_TESTABILITY__
226 RequestTransitionNotificationL();
228 RequestTransitionNotification();
231 // get the start up state from Domain Manager.
232 TDmDomainState state = GetState();
233 //If the state is EStartupStateUndefined there must be sth wrong.
234 if(state == EStartupStateUndefined)
236 #ifdef __ECOM_SERVER_TESTABILITY__
237 AcknowledgeLastStateL(KErrBadHandle);
239 AcknowledgeLastState(KErrBadHandle);
242 User::Leave(KErrBadHandle); //RunError will handle this.
245 //get the known state
246 TStartupStateIdentifier nextKnownState = GetKnownStartupState(state);
248 //If the nextKnownState is a state that we are ready to switch to
249 //update all the state aware objects and change the state.
250 //This way if we receive a state that is same as our current state
251 //we do not process it. Or the new state is less than our current
252 //state, we just ignore it.
253 if((iCurrentStartupState < EStartupStateCriticalStatic && nextKnownState == EStartupStateCriticalStatic)
254 || (iCurrentStartupState < EStartupStateCriticalDynamic && nextKnownState == EStartupStateCriticalDynamic)
255 || (iCurrentStartupState < EStartupStateNonCritical && nextKnownState == EStartupStateNonCritical))
257 UpdateStateAwareObjectsL(nextKnownState);
258 iCurrentStartupState = nextKnownState;
261 //Tell domain manager that we have processed the last state change.
262 #ifdef __ECOM_SERVER_TESTABILITY__
263 AcknowledgeLastStateL(KErrNone);
265 AcknowledgeLastState(KErrNone);
268 //do not request transition notification if we have reached the last state
269 if(nextKnownState == EStartupStateNonCritical)