diff -r 000000000000 -r 3553901f7fa8 telephonyprotocols/pdplayer/src/PDPSCPRFactory.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/telephonyprotocols/pdplayer/src/PDPSCPRFactory.cpp Tue Feb 02 01:41:59 2010 +0200 @@ -0,0 +1,70 @@ +// Copyright (c) 2006-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: +// PDP SubConnection Provider factory class definition. +// +// + +/** + @file + @internalComponent +*/ + +#include +#include "PDPSCPRFactory.h" +#include "PDPSCPR.h" +#include "PDPDeftSCPR.h" +#include + +#include + +using namespace ESock; + +//-========================================================= +// +// CPDPSubConnectionProviderFactory methods +// +//-========================================================= +CPDPSubConnectionProviderFactory* CPDPSubConnectionProviderFactory::NewL(TAny* aParentContainer) + { + return new (ELeave) CPDPSubConnectionProviderFactory(TUid::Uid(CPDPSubConnectionProviderFactory::iUid), + *reinterpret_cast(aParentContainer)); + } + +CPDPSubConnectionProviderFactory::CPDPSubConnectionProviderFactory(TUid aFactoryId, ESock::CSubConnectionFactoryContainer& aParentContainer) + : CSubConnectionProviderFactoryBase(aFactoryId, aParentContainer) + { + } + +ESock::ACommsFactoryNodeId* CPDPSubConnectionProviderFactory::DoCreateObjectL(ESock::TFactoryQueryBase& aQuery) + { + const TDefaultSCPRFactoryQuery& query = static_cast(aQuery); + CSubConnectionProviderBase* provider = NULL; + if (query.iSCPRType == RSubConnection::ECreateNew) + { + provider = CPDPSubConnectionProvider::NewL(*this); + ESOCK_DEBUG_REGISTER_GENERAL_NODE(iUid, provider); + } + else if (query.iSCPRType == RSubConnection::EAttachToDefault) + { + provider = CPDPDefaultSubConnectionProvider::NewL(*this); + ESOCK_DEBUG_REGISTER_GENERAL_NODE(iUid, provider); + } + else + { + User::Leave(KErrNotSupported); + } + return provider; + } + +