videofeeds/vcnsuiengine/inc/vcxnsserviceclienthandler.h
author Fionntina Carville <fionntinac@symbian.org>
Mon, 15 Nov 2010 11:50:30 +0000
branchRCL_3
changeset 73 f89a65650939
parent 0 96612d01cf9f
child 12 5d288c4e5e38
permissions -rw-r--r--
Bug 3539. Update localisation mappings for videoplayer.

/*
* Copyright (c) 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 "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 VCXNSSERVICECLIENTHANDLER_H_
#define VCXNSSERVICECLIENTHANDLER_H_

// INCLUDES
#include <e32base.h>

#include "MIptvServiceManagementClientObserver.h"

// FORWARD DECLARATIONS
class CIptvServiceManagementClient;
class CVcxNsUiEngine;

/**
* Class CVcxNsServiceClientHandler handles service client interactions.
*
* @lib vcxnsuiengine.lib
*/
class CVcxNsServiceClientHandler : public CBase,
                                   public MIptvServiceManagementClientObserver
    {

public:

    /**
     * Constructor.
     * 
     * @param aUiEngine Ui engine
     */
    static CVcxNsServiceClientHandler* CVcxNsServiceClientHandler::NewL( CVcxNsUiEngine& aUiEngine );
    
    virtual ~CVcxNsServiceClientHandler();

    /**
     * Returns service management client.
     * @return Pointer to CIptvServiceManagementClient object.
     */
    CIptvServiceManagementClient* GetServiceManagementClientL();

// From MIptvServiceManagementClientObserver

    /**
     * Not used. Mandatory to implement as Service Manager client.
     */
    void AddServiceResp( TRespStatus /*aRespStatus*/ ) { ; }

    /**
     * Not used. Mandatory to implement as Service Manager client.
     */
    void UpdateServiceResp( TRespStatus /*aRespStatus*/ ) { ; }

    /**
     * Not used. Mandatory to implement as Service Manager client.
     */
    void DeleteServiceResp( TRespStatus /*aRespStatus*/ ) { ; }
    
    /**
     * Not used. Mandatory to implement as Service Manager client.
     */
    void GetServicesResp( TRespStatus /*aRespStatus*/, 
                          CDesC8ArraySeg* /*aServicesArray*/ ) { ; }

    /**
     * Not used. Mandatory to implement as Service Manager client.
     */
    void GetUsedIapResp( TUint32 /*aIapId*/,
                         const TDesC& /*aIapName*/,
                         CIptvNetworkSelection::TConnectionPermission /*aConnectionPermission*/,
                         TBool /*aWlanWhenGPRS*/,
                         CIptvNetworkSelection::TRespStatus /*aRespStatus*/ ) { ; }

    /**
     * Not used. Mandatory to implement as Service Manager client.
     */
    void ServerShutdownResp( TRespStatus /*aRespStatus*/ ) { ; }
    
    /**
     * Used to forward events of service db changes to observing clients..
     * @param aEvent event
     */
    void HandleSmEvent( CIptvSmEvent& aEvent ); 
   
public:
    
    /**
     * Delete service from database
     * @param aId Service id 
     */
    void DeleteFeedL( TUint32 aId );
    
    /**
     * Update feed.
     * @param aService Service data to update 
     */
    void UpdateFeedL( CIptvService& aService );
    
private:

    /**
     * Constructor.
     * 
     * @param aUiEngine Ui engine
     */
    CVcxNsServiceClientHandler( CVcxNsUiEngine& aUiEngine );
    
// Data

    /**
     * CIptvServiceManagementClient
     */
    CIptvServiceManagementClient* iIptvServiceManagementClient;
    
    /**
     * CVcxNsUiEngine
     */
    CVcxNsUiEngine& iUiEngine; 

    };

#endif /*VCXNSSERVICECLIENTHANDLER_H_*/