realtimenetprots/sipfw/ProfileAgent/Client/Src/sipprofileregistry.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 02 Feb 2010 01:03:15 +0200
changeset 0 307788aac0a8
permissions -rw-r--r--
Revision: 201003 Kit: 201005

// Copyright (c) 2003-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:
// Name        : sipprofileregistry
// Part of     : SIP Profile Client
// implementation
// Version     : 1.0
// INCLUDE FILES
//



#include "sip.h"
#include "sipconnection.h"
#include "sipprofileregistry.h"
#include "sipprofileregistryobserver.h"
#include "sipprofile.h"
#include "sipconcreteprofile.h"

// ============================ MEMBER FUNCTIONS ===============================

// -----------------------------------------------------------------------------
// CSIPProfileRegistry::NewL
// Two-phased constructor.
// -----------------------------------------------------------------------------
//
EXPORT_C CSIPProfileRegistry* CSIPProfileRegistry::NewL(
	CSIP& aSip,
	MSIPProfileRegistryObserver& aObserver)
	{
    CSIPProfileRegistry* self = CSIPProfileRegistry::NewLC(aSip, aObserver);
    CleanupStack::Pop(self);
    return self;
	}

// -----------------------------------------------------------------------------
// CSIPProfileRegistry::NewLC
// Two-phased constructor.
// -----------------------------------------------------------------------------
//
EXPORT_C CSIPProfileRegistry* CSIPProfileRegistry::NewLC(
	CSIP& aSip,
	MSIPProfileRegistryObserver& aObserver)
	{
	CSIPProfileRegistry* self = new (ELeave) CSIPProfileRegistry(aSip, aObserver);
    CleanupStack::PushL(self);
    self->ConstructL();
    return self;
	}

// -----------------------------------------------------------------------------
// CSIPProfileRegistry::~CSIPProfileRegistry
// -----------------------------------------------------------------------------
//
EXPORT_C CSIPProfileRegistry::~CSIPProfileRegistry()
	{
	}

// -----------------------------------------------------------------------------
// CSIPProfileRegistry::EnableL
// -----------------------------------------------------------------------------
//
EXPORT_C void CSIPProfileRegistry::EnableL(CSIPProfile& aSIPProfile,
						MSIPConnectionObserver &aObserver)
	{
	__ASSERT_ALWAYS (!aSIPProfile.IsEnabled(), User::Leave (KErrArgument));
	aSIPProfile.ConcreteProfile().SetLastRegistrationError(KErrNone);
	iConnectionObserver = &aObserver;

	EnableProfileL(aSIPProfile);
	}

// -----------------------------------------------------------------------------
// CSIPProfileRegistry::Disable
// -----------------------------------------------------------------------------
//
EXPORT_C TInt CSIPProfileRegistry::Disable(CSIPProfile& aProfile)
	{
	aProfile.ConcreteProfile().SetLastRegistrationError(KErrNone);
	TRAPD(err, DisableProfileL(aProfile));
	return err;
	}

// -----------------------------------------------------------------------------
// CSIPProfileRegistry::RefreshEnableL
// -----------------------------------------------------------------------------
//

EXPORT_C  void CSIPProfileRegistry::RefreshEnableL(CSIPProfile& aProfile)
	{
	__ASSERT_ALWAYS (aProfile.IsEnabled(), User::Leave (KErrArgument));
	EnableProfileL(aProfile);
	}
// -----------------------------------------------------------------------------
// CSIPProfileRegistry::ForceDisable
// -----------------------------------------------------------------------------
//
EXPORT_C TInt CSIPProfileRegistry::ForceDisable(CSIPProfile& aProfile)
	{
	aProfile.ConcreteProfile().SetLastRegistrationError(KErrNone);
	TRAPD(err, ForceDisableProfileL(aProfile));
	return err;
	}

// -----------------------------------------------------------------------------
// CSIPProfileRegistry::SIP
// -----------------------------------------------------------------------------
//
EXPORT_C CSIP& CSIPProfileRegistry::SIP() const
	{
	return iSip;
	}

// -----------------------------------------------------------------------------
// CSIPProfileRegistry::ConnectionL
// -----------------------------------------------------------------------------
//
EXPORT_C CSIPConnection* CSIPProfileRegistry::ConnectionL(
						CSIPProfile& aSIPProfile)
	{
	TUint32 apId(0);
	__ASSERT_ALWAYS (iConnectionObserver != 0, User::Leave (KErrArgument));
	aSIPProfile.GetParameter(KSIPAccessPointId, apId);
	CSIPConnection* connection = iSip.Connection(apId);
	if (connection == 0)
		{
		connection = CSIPConnection::NewL(iSip, apId, *iConnectionObserver);
		}
		
    TUint32 ipTosVal( 0 );
    if ( aSIPProfile.GetParameter( KSIPSoIpTOS, ipTosVal ) != KErrNotFound )
        {
        // Client might not have required capabilities for setting socket opts,
        // ignore error as the connection can be still used
        TRAP_IGNORE( connection->SetOptL( KSoIpTOS, KProtocolInetIp, ipTosVal ) )
        }
	return connection;
	}

// -----------------------------------------------------------------------------
// CSIPProfileRegistry::IsEnabled
// -----------------------------------------------------------------------------
//
EXPORT_C TBool CSIPProfileRegistry::IsEnabled(const CSIPProfile& aSIPProfile) const
	{
	return aSIPProfile.IsEnabled();
	}

// -----------------------------------------------------------------------------
// CSIPProfileRegistry::CSIPProfileRegistry
// -----------------------------------------------------------------------------
//
CSIPProfileRegistry::CSIPProfileRegistry(
	CSIP& aSip,
	MSIPProfileRegistryObserver& aObserver):
	CSIPProfileRegistryBase(aObserver), iSip(aSip)
	{

	}

// -----------------------------------------------------------------------------
// CSIPProfileRegistry::ConstructL
// -----------------------------------------------------------------------------
//
void CSIPProfileRegistry::ConstructL()
	{
	BaseConstructL();
	}

// -----------------------------------------------------------------------------
// CSIPProfileRegistry::NewInstanceL
// -----------------------------------------------------------------------------
//
CSIPProfile* CSIPProfileRegistry::NewInstanceL()
	{
    return CSIPProfile::NewL(this);
	}