common/tools/ats/smoketest/lbs/lbsclient/inc/ctlbsclientobserver.h
author Maciej Seroka <maciejs@symbian.org>
Tue, 10 Nov 2009 13:50:58 +0000
changeset 748 e13acd883fbe
child 872 17498133d9ad
permissions -rw-r--r--
Added new smoketest

/*
* Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Symbian Foundation License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
*
*/



#ifndef __CT_LBS_CLIENT_OBSERVER_H__ 
#define __CT_LBS_CLIENT_OBSERVER_H__

//  INCLUDES
#include <e32base.h>

// CONSTANTS

// FORWARD DECLARATIONS

// CLASS DECLARATION

/**
*  ?one_line_short_description.
*  ?other_description_lines
*/
class CT_LbsClientObserver : public CBase
    {
    public:  // New functions
        
        /**
        * Waits for EPos server to shut down. If it is
        * not running this method will return instantaneously.
        */
        static void WaitForEPosShutdown();
        
        /**
        * Pushes WaitForEPosShutdown to the cleanup stack. It is useful when
        * other cleanup items are dependent on EPos having released all its
        * resources
        */
        static void EPosShutdownWaitPushL();
        
        /**
        * Checks if EPos server is alive.
        */
        static TBool EPosAliveL();

        /**
        * Waits for privacy server to shut down. If it is
        * not running this method will return instantaneously.
        */
        static void WaitForPrivacyServerShutdown();
        
        /**
        * Pushes WaitForPrivacyServerShutdown to the cleanup stack. It is useful
        * when other cleanup items are dependent on EPos having released all its
        * resources
        */
        static void PrivacyServerShutdownWaitPushL();
        
        /**
        * Checks if privacy server is alive.
        */
        static TBool PrivacyServerAliveL();

    private: // New functions

        /**
        * Waits for a process to die. If the process is
        * not running this method will return instantaneously.
        * @param aProcessName The name of the process.
        */
        static void WaitForProcessDeath(
        /* IN  */       const TDesC& aProcessName
        );
        
        /**
        * Checks if a process is alive.
        * @param aProcessName The name of the process.
        */
        static TBool ProcessAliveL(
        /* IN  */       const TDesC& aProcessName
        );
        
    };

#endif      // __CT_LBS_CLIENT_OBSERVER_H__  
            
// End of File