os/ossrv/lowlevellibsandfws/pluginfw/Framework/ServerStartupMgrTest/StartupStateObserverObject.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/ServerStartupMgrTest/StartupStateObserverObject.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,100 @@
1.4 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#ifndef __STARTUP_STATE_OBSERVER_OBJECT_H__
1.20 +#define __STARTUP_STATE_OBSERVER_OBJECT_H__
1.21 +
1.22 +
1.23 +#include "StartupStateObserver.h"
1.24 +
1.25 +/**
1.26 +@internalTechnology
1.27 +
1.28 +A dummy startup state observer enabled class useful for unit testing.
1.29 +*/
1.30 +class CStartupStateObserver: public CBase, public MStartupStateObserver
1.31 + {
1.32 +public:
1.33 + /**
1.34 + * Factory method to create an instance of the class
1.35 + */
1.36 + static CStartupStateObserver* NewL();
1.37 +
1.38 + /**
1.39 + * Factory method to create an instance of the class
1.40 + * The object is left on the CleanupStack;
1.41 + */
1.42 + static CStartupStateObserver* NewLC();
1.43 +
1.44 + /*
1.45 + * Destructor
1.46 + */
1.47 + virtual ~CStartupStateObserver();
1.48 +
1.49 + /**
1.50 + Internal state for CStartupStateObserver
1.51 + @internalComponent
1.52 + */
1.53 + enum TSsoState
1.54 + {
1.55 + SsoUndefined,
1.56 + SsoNoPluginsInternalized,
1.57 + SsoCriticalPlugingsInternalized,
1.58 + SsoAllPluginsInternalized
1.59 + };
1.60 +
1.61 + /**
1.62 + * the method used to process the SSA(Startup State Aware) event for the
1.63 + * MStartupStateObserver object.
1.64 + *
1.65 + * @param aState the TDmDomainState passes into the MStartupStateObserver object.
1.66 + */
1.67 + virtual void ProcessSSAEventL(TStartupStateIdentifier aKnownState);
1.68 +
1.69 + /**
1.70 + * Initialises the internal state of the object
1.71 + */
1.72 + void InitialiseEvent();
1.73 +
1.74 + /**
1.75 + * Returns the current state of the object
1.76 + * @return the current state
1.77 + */
1.78 + CStartupStateObserver::TSsoState GetState();
1.79 +
1.80 + /**
1.81 + * Sets the current state of the object
1.82 + * @param aState the new state of the object
1.83 + */
1.84 + void SetState(CStartupStateObserver::TSsoState aState);
1.85 +
1.86 +private:
1.87 + /**
1.88 + * Default constructor. Make it private so the objects can only be
1.89 + * instantiated with NewL
1.90 + */
1.91 + CStartupStateObserver();
1.92 +
1.93 + /**
1.94 + * Initialises the object
1.95 + */
1.96 + void Construct();
1.97 +
1.98 +private:
1.99 + TSsoState iState;
1.100 + };
1.101 +
1.102 +
1.103 +#endif //__STARTUP_STATE_OBSERVER_OBJECT_H__