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.
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
// The Implementation of the CServerStartupMgr class which
sl@0
    15
// connects to the Domain manager to keep aware of the current start-up
sl@0
    16
// state and distributes the state changes to the interested MStartupStateObserver
sl@0
    17
// objects.
sl@0
    18
// 
sl@0
    19
//
sl@0
    20
sl@0
    21
/**
sl@0
    22
 @internalComponent
sl@0
    23
 @file 
sl@0
    24
*/
sl@0
    25
 
sl@0
    26
#include "ServerStartupManager.h"
sl@0
    27
#include "EComServer.h"
sl@0
    28
#include "EComDebug.h"
sl@0
    29
#include "EComPerformance.h"
sl@0
    30
sl@0
    31
/**
sl@0
    32
constructor of CServerStartupMgr
sl@0
    33
@param aHierarchyId The Id of the domain hierarchy to connect to.
sl@0
    34
@param aDomainId The Id of the domain to connect to.
sl@0
    35
@param aFs A reference to a connected file server session.
sl@0
    36
*/
sl@0
    37
 CServerStartupMgr::CServerStartupMgr(TDmHierarchyId aHierarchyId, TDmDomainId aDomainId, RFs& aFs):
sl@0
    38
#ifdef __ECOM_SERVER_TESTABILITY__
sl@0
    39
 CDmDomainTestHarness(aHierarchyId,aDomainId),
sl@0
    40
#else
sl@0
    41
 CDmDomain(aHierarchyId,aDomainId),
sl@0
    42
#endif
sl@0
    43
 EKFinalStartupState(EStartupStateNonCritical),
sl@0
    44
 iCurrentStartupState(EStartupStateUndefined),
sl@0
    45
 iFs(aFs)
sl@0
    46
	 {
sl@0
    47
	 // does nothing.	
sl@0
    48
	 }
sl@0
    49
	 
sl@0
    50
sl@0
    51
/** 
sl@0
    52
destructor
sl@0
    53
@internalComponent
sl@0
    54
*/
sl@0
    55
CServerStartupMgr::~CServerStartupMgr()
sl@0
    56
	{
sl@0
    57
	Cancel();
sl@0
    58
	iObserverList.Reset();
sl@0
    59
	}
sl@0
    60
	
sl@0
    61
sl@0
    62
/** 
sl@0
    63
Accessor to the current startup state
sl@0
    64
@internalComponent
sl@0
    65
@return the current startup state
sl@0
    66
*/
sl@0
    67
TStartupStateIdentifier CServerStartupMgr::CurrentStartupState()
sl@0
    68
	{
sl@0
    69
	return iCurrentStartupState;
sl@0
    70
	}
sl@0
    71
	
sl@0
    72
/**
sl@0
    73
updates the MStartupStateObserver objects.
sl@0
    74
@internalComponent
sl@0
    75
@param aKnownState the startup state passed into the MStartupStateObserver objects. 
sl@0
    76
*/	
sl@0
    77
void CServerStartupMgr::UpdateStateAwareObjectsL(TStartupStateIdentifier aKnownState)
sl@0
    78
	{
sl@0
    79
	RECORD_STARTUP_STATE_TIMER_RESULT(aKnownState)
sl@0
    80
	RECORD_STARTUP_STATE_HEAP_RESULT(aKnownState)
sl@0
    81
	TInt observerCount=iObserverList.Count();
sl@0
    82
	for (TInt i = 0; i < observerCount; i++)
sl@0
    83
		{
sl@0
    84
		iObserverList[i]->ProcessSSAEventL(aKnownState);
sl@0
    85
		}
sl@0
    86
	RECORD_STARTUP_STATE_HEAP_RESULT(aKnownState)
sl@0
    87
	RECORD_STARTUP_STATE_TIMER_RESULT(aKnownState)
sl@0
    88
	}
sl@0
    89
	
sl@0
    90
/** 
sl@0
    91
This method takes a a startup state which can be KSS or USS as a parameter,
sl@0
    92
and returns a ECOM Known Startup State
sl@0
    93
@internalComponent
sl@0
    94
@param aStartupState a startup state which can be KSS or USS.
sl@0
    95
@return an ECOM known startup state
sl@0
    96
*/
sl@0
    97
TStartupStateIdentifier CServerStartupMgr::GetKnownStartupState(TDmDomainState aStartupState)
sl@0
    98
	{
sl@0
    99
	if(aStartupState >= EStartupStateNonCritical)
sl@0
   100
		{
sl@0
   101
		return EStartupStateNonCritical;
sl@0
   102
		}
sl@0
   103
	else if(aStartupState >= EStartupStateCriticalDynamic)
sl@0
   104
		{
sl@0
   105
		return EStartupStateCriticalDynamic;
sl@0
   106
		}
sl@0
   107
	else if(aStartupState >= EStartupStateCriticalStatic)
sl@0
   108
		{
sl@0
   109
		return EStartupStateCriticalStatic;
sl@0
   110
		}
sl@0
   111
	else
sl@0
   112
		{
sl@0
   113
		return EStartupStateUndefined;
sl@0
   114
		}
sl@0
   115
	}
sl@0
   116
sl@0
   117
	
sl@0
   118
/**
sl@0
   119
Register the MStartupStateObserver object with the CServerStartupMgr.
sl@0
   120
@internalComponent
sl@0
   121
@param aObs the pointer to the MStartupStateObserver object to be registered with CServerStartupMgr.
sl@0
   122
*/
sl@0
   123
void CServerStartupMgr::RegisterObserverL(const MStartupStateObserver* aObs)
sl@0
   124
	{
sl@0
   125
	User::LeaveIfError(iObserverList.Append(aObs));
sl@0
   126
	}
sl@0
   127
	
sl@0
   128
sl@0
   129
/**
sl@0
   130
Handle the error if RunL leaves. Panic with the error code
sl@0
   131
@internalComponent
sl@0
   132
@param aError error code generated by the RunL(), not used here.
sl@0
   133
@return KErrNone to avoid CActiveScheduler to panic. 
sl@0
   134
*/	
sl@0
   135
TInt CServerStartupMgr::RunError(TInt aError)
sl@0
   136
	{
sl@0
   137
	__ECOM_LOG1("ECOM: PANIC in CServerStartupMgr::RunError(), error= %d", aError);
sl@0
   138
	User::Panic(KEComServerPanicCategory, EEComPanic_CServerStartupMgr_RunError);	
sl@0
   139
	return KErrNone; // dummy return to stop compiler warnings
sl@0
   140
	}
sl@0
   141
sl@0
   142
/**
sl@0
   143
This method indicates how the CServerStartupMgr interacts with the Domain
sl@0
   144
manager to keep aware of the startup state change, and distribute it to the
sl@0
   145
MStartupStateObserver objects inside ECOM.
sl@0
   146
@internalComponent
sl@0
   147
@pre CServerStartupMgr is fully constructed.
sl@0
   148
*/
sl@0
   149
void CServerStartupMgr::InitialiseL(TBool aSsaEnabled)
sl@0
   150
	{
sl@0
   151
	if(!aSsaEnabled)
sl@0
   152
		{
sl@0
   153
		// it is not SSA, do a full discovery.
sl@0
   154
		__ECOM_TRACE("ECOM: CServerStartupMgr::InitialiseL(): It is not SSA, do a full discovery");
sl@0
   155
		UpdateStateAwareObjectsL(EKFinalStartupState);
sl@0
   156
		iCurrentStartupState = EKFinalStartupState;
sl@0
   157
		return;	
sl@0
   158
		}
sl@0
   159
	// it is SSA.	
sl@0
   160
	else
sl@0
   161
		{
sl@0
   162
		__ECOM_TRACE("---------------------------------------------------");
sl@0
   163
		__ECOM_TRACE("ECOM: CServerStartupMgr::InitialiseL(): SSA is on.");
sl@0
   164
#ifdef __ECOM_SERVER_TESTABILITY__
sl@0
   165
		TRAPD(err, CDmDomainTestHarness::ConstructL());
sl@0
   166
#else
sl@0
   167
		TRAPD(err, CDmDomain::ConstructL());
sl@0
   168
#endif
sl@0
   169
		if(err!=KErrNone)
sl@0
   170
			{
sl@0
   171
			// the ConstructL leaves, then do a full discovery.
sl@0
   172
			__ECOM_TRACE("ECOM: CServerStartupMgr::InitialiseL(): Can not connect to the Domain Manager, do a full discovery.");
sl@0
   173
			UpdateStateAwareObjectsL(EKFinalStartupState);
sl@0
   174
			iCurrentStartupState = EKFinalStartupState;
sl@0
   175
			return;
sl@0
   176
			}
sl@0
   177
		
sl@0
   178
		//get the state from Domain Manager in case missing any.	
sl@0
   179
#ifdef __ECOM_SERVER_TESTABILITY__
sl@0
   180
		RequestTransitionNotificationL();
sl@0
   181
#else
sl@0
   182
		RequestTransitionNotification();
sl@0
   183
#endif
sl@0
   184
		
sl@0
   185
		// get the start up state from the Domain Manager.
sl@0
   186
		TDmDomainState state = GetState();
sl@0
   187
		
sl@0
   188
		// either something wrong with the Domain Manager or final state is reached.
sl@0
   189
		if(state <= EStartupStateUndefined || state >= EStartupStateNonCritical)
sl@0
   190
			{
sl@0
   191
			// do a full discovery. Cancel outstanding request.
sl@0
   192
			UpdateStateAwareObjectsL(EKFinalStartupState);
sl@0
   193
			iCurrentStartupState = EKFinalStartupState;
sl@0
   194
			Cancel();
sl@0
   195
			return;
sl@0
   196
			}
sl@0
   197
			
sl@0
   198
		// get the ECom Known state.
sl@0
   199
		TStartupStateIdentifier nextKnownState = GetKnownStartupState(state);
sl@0
   200
	
sl@0
   201
		
sl@0
   202
		 //for EStartupStateCriticalStatic or EStartupStateCriticalDynamic.
sl@0
   203
		if(nextKnownState != EStartupStateUndefined)
sl@0
   204
			{
sl@0
   205
			// catch up to the ECOM interested state.
sl@0
   206
			UpdateStateAwareObjectsL(EStartupStateCriticalStatic);
sl@0
   207
			}
sl@0
   208
			
sl@0
   209
		iCurrentStartupState = nextKnownState;
sl@0
   210
		}
sl@0
   211
	}
sl@0
   212
sl@0
   213
sl@0
   214
/**
sl@0
   215
Executed when the startup state change is done, it does the same thing 
sl@0
   216
as the method InitialiseL() does when SSA is on and the CurrentStartupState is not EStartupStateNonCritical.
sl@0
   217
@internalComponent
sl@0
   218
*/
sl@0
   219
void CServerStartupMgr::RunL()
sl@0
   220
	{
sl@0
   221
	// Leave if something wrong with the RequestTransitionNotification().
sl@0
   222
	User::LeaveIfError(iStatus.Int()); //RunError will handle this.
sl@0
   223
sl@0
   224
	//do request transition notification in case missing any.
sl@0
   225
#ifdef __ECOM_SERVER_TESTABILITY__
sl@0
   226
	RequestTransitionNotificationL();
sl@0
   227
#else
sl@0
   228
	RequestTransitionNotification();
sl@0
   229
#endif
sl@0
   230
		
sl@0
   231
	// get the start up state from Domain Manager.
sl@0
   232
	TDmDomainState state = GetState();
sl@0
   233
	//If the state is EStartupStateUndefined there must be sth wrong.
sl@0
   234
	if(state == EStartupStateUndefined) 
sl@0
   235
		{
sl@0
   236
#ifdef __ECOM_SERVER_TESTABILITY__
sl@0
   237
		AcknowledgeLastStateL(KErrBadHandle);
sl@0
   238
#else
sl@0
   239
		AcknowledgeLastState(KErrBadHandle);
sl@0
   240
#endif
sl@0
   241
		Cancel();
sl@0
   242
		User::Leave(KErrBadHandle); //RunError will handle this.
sl@0
   243
		}
sl@0
   244
sl@0
   245
	//get the known state			
sl@0
   246
	TStartupStateIdentifier nextKnownState = GetKnownStartupState(state);
sl@0
   247
sl@0
   248
	//If the nextKnownState is a state that we are ready to switch to
sl@0
   249
	//update all the state aware objects and change the state.
sl@0
   250
	//This way if we receive a state that is same as our current state
sl@0
   251
	//we do not process it. Or the new state is less than our current
sl@0
   252
	//state, we just ignore it.
sl@0
   253
	if((iCurrentStartupState < EStartupStateCriticalStatic && nextKnownState == EStartupStateCriticalStatic)
sl@0
   254
	    || (iCurrentStartupState < EStartupStateCriticalDynamic && nextKnownState == EStartupStateCriticalDynamic)
sl@0
   255
	    || (iCurrentStartupState < EStartupStateNonCritical && nextKnownState == EStartupStateNonCritical))
sl@0
   256
		{
sl@0
   257
		UpdateStateAwareObjectsL(nextKnownState);
sl@0
   258
		iCurrentStartupState = nextKnownState;
sl@0
   259
		}
sl@0
   260
		
sl@0
   261
	//Tell domain manager that we have processed the last state change.
sl@0
   262
#ifdef __ECOM_SERVER_TESTABILITY__
sl@0
   263
	AcknowledgeLastStateL(KErrNone);
sl@0
   264
#else
sl@0
   265
	AcknowledgeLastState(KErrNone);
sl@0
   266
#endif
sl@0
   267
		
sl@0
   268
	//do not request transition notification if we have reached the last state
sl@0
   269
	if(nextKnownState == EStartupStateNonCritical)
sl@0
   270
		{
sl@0
   271
		Cancel();
sl@0
   272
		}
sl@0
   273
	}
sl@0
   274
sl@0
   275
sl@0
   276
sl@0
   277