os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/ServerStartupManager.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    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
    17 // objects.
    18 // 
    19 //
    20 
    21 /**
    22  @internalComponent
    23  @file 
    24 */
    25  
    26 #include "ServerStartupManager.h"
    27 #include "EComServer.h"
    28 #include "EComDebug.h"
    29 #include "EComPerformance.h"
    30 
    31 /**
    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.
    36 */
    37  CServerStartupMgr::CServerStartupMgr(TDmHierarchyId aHierarchyId, TDmDomainId aDomainId, RFs& aFs):
    38 #ifdef __ECOM_SERVER_TESTABILITY__
    39  CDmDomainTestHarness(aHierarchyId,aDomainId),
    40 #else
    41  CDmDomain(aHierarchyId,aDomainId),
    42 #endif
    43  EKFinalStartupState(EStartupStateNonCritical),
    44  iCurrentStartupState(EStartupStateUndefined),
    45  iFs(aFs)
    46 	 {
    47 	 // does nothing.	
    48 	 }
    49 	 
    50 
    51 /** 
    52 destructor
    53 @internalComponent
    54 */
    55 CServerStartupMgr::~CServerStartupMgr()
    56 	{
    57 	Cancel();
    58 	iObserverList.Reset();
    59 	}
    60 	
    61 
    62 /** 
    63 Accessor to the current startup state
    64 @internalComponent
    65 @return the current startup state
    66 */
    67 TStartupStateIdentifier CServerStartupMgr::CurrentStartupState()
    68 	{
    69 	return iCurrentStartupState;
    70 	}
    71 	
    72 /**
    73 updates the MStartupStateObserver objects.
    74 @internalComponent
    75 @param aKnownState the startup state passed into the MStartupStateObserver objects. 
    76 */	
    77 void CServerStartupMgr::UpdateStateAwareObjectsL(TStartupStateIdentifier aKnownState)
    78 	{
    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++)
    83 		{
    84 		iObserverList[i]->ProcessSSAEventL(aKnownState);
    85 		}
    86 	RECORD_STARTUP_STATE_HEAP_RESULT(aKnownState)
    87 	RECORD_STARTUP_STATE_TIMER_RESULT(aKnownState)
    88 	}
    89 	
    90 /** 
    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
    93 @internalComponent
    94 @param aStartupState a startup state which can be KSS or USS.
    95 @return an ECOM known startup state
    96 */
    97 TStartupStateIdentifier CServerStartupMgr::GetKnownStartupState(TDmDomainState aStartupState)
    98 	{
    99 	if(aStartupState >= EStartupStateNonCritical)
   100 		{
   101 		return EStartupStateNonCritical;
   102 		}
   103 	else if(aStartupState >= EStartupStateCriticalDynamic)
   104 		{
   105 		return EStartupStateCriticalDynamic;
   106 		}
   107 	else if(aStartupState >= EStartupStateCriticalStatic)
   108 		{
   109 		return EStartupStateCriticalStatic;
   110 		}
   111 	else
   112 		{
   113 		return EStartupStateUndefined;
   114 		}
   115 	}
   116 
   117 	
   118 /**
   119 Register the MStartupStateObserver object with the CServerStartupMgr.
   120 @internalComponent
   121 @param aObs the pointer to the MStartupStateObserver object to be registered with CServerStartupMgr.
   122 */
   123 void CServerStartupMgr::RegisterObserverL(const MStartupStateObserver* aObs)
   124 	{
   125 	User::LeaveIfError(iObserverList.Append(aObs));
   126 	}
   127 	
   128 
   129 /**
   130 Handle the error if RunL leaves. Panic with the error code
   131 @internalComponent
   132 @param aError error code generated by the RunL(), not used here.
   133 @return KErrNone to avoid CActiveScheduler to panic. 
   134 */	
   135 TInt CServerStartupMgr::RunError(TInt aError)
   136 	{
   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
   140 	}
   141 
   142 /**
   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.
   146 @internalComponent
   147 @pre CServerStartupMgr is fully constructed.
   148 */
   149 void CServerStartupMgr::InitialiseL(TBool aSsaEnabled)
   150 	{
   151 	if(!aSsaEnabled)
   152 		{
   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;
   157 		return;	
   158 		}
   159 	// it is SSA.	
   160 	else
   161 		{
   162 		__ECOM_TRACE("---------------------------------------------------");
   163 		__ECOM_TRACE("ECOM: CServerStartupMgr::InitialiseL(): SSA is on.");
   164 #ifdef __ECOM_SERVER_TESTABILITY__
   165 		TRAPD(err, CDmDomainTestHarness::ConstructL());
   166 #else
   167 		TRAPD(err, CDmDomain::ConstructL());
   168 #endif
   169 		if(err!=KErrNone)
   170 			{
   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;
   175 			return;
   176 			}
   177 		
   178 		//get the state from Domain Manager in case missing any.	
   179 #ifdef __ECOM_SERVER_TESTABILITY__
   180 		RequestTransitionNotificationL();
   181 #else
   182 		RequestTransitionNotification();
   183 #endif
   184 		
   185 		// get the start up state from the Domain Manager.
   186 		TDmDomainState state = GetState();
   187 		
   188 		// either something wrong with the Domain Manager or final state is reached.
   189 		if(state <= EStartupStateUndefined || state >= EStartupStateNonCritical)
   190 			{
   191 			// do a full discovery. Cancel outstanding request.
   192 			UpdateStateAwareObjectsL(EKFinalStartupState);
   193 			iCurrentStartupState = EKFinalStartupState;
   194 			Cancel();
   195 			return;
   196 			}
   197 			
   198 		// get the ECom Known state.
   199 		TStartupStateIdentifier nextKnownState = GetKnownStartupState(state);
   200 	
   201 		
   202 		 //for EStartupStateCriticalStatic or EStartupStateCriticalDynamic.
   203 		if(nextKnownState != EStartupStateUndefined)
   204 			{
   205 			// catch up to the ECOM interested state.
   206 			UpdateStateAwareObjectsL(EStartupStateCriticalStatic);
   207 			}
   208 			
   209 		iCurrentStartupState = nextKnownState;
   210 		}
   211 	}
   212 
   213 
   214 /**
   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.
   217 @internalComponent
   218 */
   219 void CServerStartupMgr::RunL()
   220 	{
   221 	// Leave if something wrong with the RequestTransitionNotification().
   222 	User::LeaveIfError(iStatus.Int()); //RunError will handle this.
   223 
   224 	//do request transition notification in case missing any.
   225 #ifdef __ECOM_SERVER_TESTABILITY__
   226 	RequestTransitionNotificationL();
   227 #else
   228 	RequestTransitionNotification();
   229 #endif
   230 		
   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) 
   235 		{
   236 #ifdef __ECOM_SERVER_TESTABILITY__
   237 		AcknowledgeLastStateL(KErrBadHandle);
   238 #else
   239 		AcknowledgeLastState(KErrBadHandle);
   240 #endif
   241 		Cancel();
   242 		User::Leave(KErrBadHandle); //RunError will handle this.
   243 		}
   244 
   245 	//get the known state			
   246 	TStartupStateIdentifier nextKnownState = GetKnownStartupState(state);
   247 
   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))
   256 		{
   257 		UpdateStateAwareObjectsL(nextKnownState);
   258 		iCurrentStartupState = nextKnownState;
   259 		}
   260 		
   261 	//Tell domain manager that we have processed the last state change.
   262 #ifdef __ECOM_SERVER_TESTABILITY__
   263 	AcknowledgeLastStateL(KErrNone);
   264 #else
   265 	AcknowledgeLastState(KErrNone);
   266 #endif
   267 		
   268 	//do not request transition notification if we have reached the last state
   269 	if(nextKnownState == EStartupStateNonCritical)
   270 		{
   271 		Cancel();
   272 		}
   273 	}
   274 
   275 
   276 
   277