os/ossrv/lowlevellibsandfws/pluginfw/Framework/ServerStartupMgrTest/StartupStateObserverObject.cpp
First public contribution.
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.
17 #include <startup.hrh>
18 #include "StartupStateObserverObject.h"
20 CStartupStateObserver::CStartupStateObserver()
21 :CBase(), iState(SsoUndefined)
25 CStartupStateObserver::~CStartupStateObserver()
29 CStartupStateObserver* CStartupStateObserver::NewL()
31 CStartupStateObserver* self = CStartupStateObserver::NewLC();
32 CleanupStack::Pop(self);
37 CStartupStateObserver* CStartupStateObserver::NewLC()
39 CStartupStateObserver* self = new(ELeave) CStartupStateObserver;
40 CleanupStack::PushL(self);
47 void CStartupStateObserver::Construct()
53 void CStartupStateObserver::InitialiseEvent()
55 iState = SsoNoPluginsInternalized;
58 void CStartupStateObserver::ProcessSSAEventL(TStartupStateIdentifier aKnownState)
60 if(iState == SsoNoPluginsInternalized)
62 if(aKnownState == EStartupStateCriticalStatic)
64 iState = SsoCriticalPlugingsInternalized;
66 else if(aKnownState == EStartupStateNonCritical)
68 iState = SsoAllPluginsInternalized;
71 else if(iState == SsoCriticalPlugingsInternalized &&
72 aKnownState == EStartupStateNonCritical)
74 iState = SsoAllPluginsInternalized;
78 CStartupStateObserver::TSsoState CStartupStateObserver::GetState()
83 void CStartupStateObserver::SetState(CStartupStateObserver::TSsoState aState)