os/ossrv/lowlevellibsandfws/pluginfw/Framework/ServerStartupMgrTest/StartupStateObserverObject.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #ifndef __STARTUP_STATE_OBSERVER_OBJECT_H__
    17 #define __STARTUP_STATE_OBSERVER_OBJECT_H__
    18 
    19 
    20 #include "StartupStateObserver.h"
    21 
    22 /**
    23 @internalTechnology
    24 
    25 A dummy startup state observer enabled class useful for unit testing.
    26 */
    27 class CStartupStateObserver: public CBase, public MStartupStateObserver
    28 	{
    29 public:
    30 	/**
    31 	* Factory method to create an instance of the class
    32 	*/
    33 	static CStartupStateObserver* NewL();
    34 	
    35 	/**
    36 	* Factory method to create an instance of the class
    37 	* The object is left on the CleanupStack;
    38 	*/
    39 	static CStartupStateObserver* NewLC();
    40 	
    41 	/*
    42 	* Destructor
    43 	*/
    44 	virtual ~CStartupStateObserver();
    45 
    46 	/** 
    47 	Internal state for CStartupStateObserver 
    48 	@internalComponent
    49 	*/
    50 	enum TSsoState
    51 		{
    52 		SsoUndefined,
    53 		SsoNoPluginsInternalized,
    54 		SsoCriticalPlugingsInternalized,
    55 		SsoAllPluginsInternalized
    56 		};
    57 	
    58 	/**
    59 	* the method used to process the SSA(Startup State Aware) event for the 
    60 	* MStartupStateObserver object.
    61 	* 
    62 	* @param aState the TDmDomainState passes into the MStartupStateObserver object.
    63 	*/
    64 	virtual void ProcessSSAEventL(TStartupStateIdentifier aKnownState);
    65 	
    66 	/**
    67 	* Initialises the internal state of the object
    68 	*/
    69 	void InitialiseEvent();
    70 	
    71 	/**
    72 	* Returns the current state of the object
    73 	* @return the current state
    74 	*/
    75 	CStartupStateObserver::TSsoState GetState();
    76 	
    77 	/**
    78 	* Sets the current state of the object
    79 	* @param aState the new state of the object
    80 	*/
    81 	void SetState(CStartupStateObserver::TSsoState aState);
    82 	
    83 private:
    84 	/**
    85 	* Default constructor. Make it private so the objects can only be
    86 	* instantiated with NewL
    87 	*/
    88 	CStartupStateObserver();
    89 	
    90 	/**
    91 	* Initialises the object
    92 	*/
    93 	void Construct();
    94 	
    95 private:
    96 	TSsoState iState;
    97 	};
    98 
    99 
   100 #endif //__STARTUP_STATE_OBSERVER_OBJECT_H__