telephonyserverplugins/common_tsy/commontsy/inc/mmtsy/cmmphonefactorytsy.h
author Oscar Gonzalez <oscar.1.gonzalez@nokia.com>
Thu, 06 May 2010 15:10:38 +0100
branchopencode
changeset 24 6638e7f4bd8f
parent 0 3553901f7fa8
child 32 58332560b319
permissions -rw-r--r--
opencode

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



#ifndef CMMPHONEFACTORYTSY_H
#define CMMPHONEFACTORYTSY_H

#include <et_phone.h>
#include <etel.h>
#include <ctsy/mltsyfactorybase.h>
#include <ctsy/mltsyfactory.h>

// FORWARD DECLARATIONS
class CTsySatMessagingBase;
class CMmPhoneTsy;
class MLtsyFactoryBase;

// CLASS DECLARATION

/**
 * CMmPhoneFactoryTsy creates a new multimode phone object.
 */
NONSHARABLE_CLASS( CMmPhoneFactoryTsy ) : public CPhoneFactoryBase
    {
    public: // Constructors and destructor

        /**
         * Two-phased constructor.
         * return created phone object 
         */
        static CMmPhoneFactoryTsy* NewL();
        
        /**
         * C++ default constructor. LibEntry requires that this is public
         */
        CMmPhoneFactoryTsy();   
        
        /**
         * By default Symbian 2nd phase constructor.
         */
        void ConstructL();

        /**
         * Returns Phone instance
         */
        CPhoneBase* NewPhoneL( const TDesC& aName );

        /**
         * Returns SimAtk TSY instance
         */
        virtual CTsySatMessagingBase* NewSimAtk( const TDesC& aName );

        /**
         * Destructor.
         */
        ~CMmPhoneFactoryTsy();  

        // New functions

        /**
         * Returns maximum number of supported phone instances.
         * 
         *
         * @return Maximum number of supported phone instances.
         */
        TInt EnumeratePhones(); 

        /**
         * Returns phone information
         * 
         *
         * @param aIndex index number of the phone
         * @param aPhoneFactoryBaseInfo info copied here
         * @return Return value to the ETel Server
         */
        TInt GetPhoneInfo( 
            const TInt aIndex, 
            RTelServer::TPhoneInfo& aPhoneFactoryBaseInfo );

        /**
         * Provides information about the supported functional units of 
         * the TSY
         * 
         *
         * @param aFunctionalUnit is this functional unit supported.
         * @return TBool ETrue if supported, EFalse if not
         */
        TBool IsSupported( const TInt aFunctionalUnit );    
#ifdef USING_CTSY_DISPATCHER     
    protected:
        
        TBool UsingCtsyDispatcher();
#endif // #endif USING_CTSY_DISPATCHER
        MLtsyFactoryBase* LoadLibraryL();
        
    private:
        TPtrC ReadDllNameFromConfigL(const TDesC& aConfigData);
        TUint ReadDllUidFromConfigL(const TDesC& aConfigData);
        static void ReadConfigFileL(RBuf* aConfigData);
        static TPtrC GetValueForKeyL(const TDesC& aKeysValues, const TDesC& aKey);

    private:    // Data
    
        /**
         * Pointer to PhoneTSY
         * Not owned.
         */
        CMmPhoneTsy* iPhoneTsy;

        /**
         * Pointer to messagerouter 
         * Not owned.
         */
        MMessageRouter* iMessageRouter;

        RLibrary iLoadedLib; //can either be LicenseeTsy or CtsyDispatcher dlls
    };

#endif // CMMPHONEFACTORYTSY_H