telephonyserver/etelserverandcore/DSTDNC/didenbad.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 02 Feb 2010 01:41:59 +0200
changeset 0 3553901f7fa8
child 24 6638e7f4bd8f
permissions -rw-r--r--
Revision: 201005 Kit: 201005

// Copyright (c) 1997-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:
//

#include <e32base.h>
#include "ET_PHONE.H"
#include "DDEF.H"
#include "didendef.h"
#include "dbaddef.h"
#include "../DSTDNC/DNCDEF.H"
#include "didenbad.h"

//
//	First Ordinal Functions
//
extern	"C"
	{
	IMPORT_C CPhoneFactoryBase* LibEntry();	//	Force "Proper Name" export
	}

EXPORT_C CPhoneFactoryBase* LibEntry()
	{
	RFs fs;
	TInt ret;
	
	ret = fs.Connect();
	if (ret == KErrNone)
		{
		fs.Close();
		}

	return new CPhoneFactoryBad;
	}

//
//	Bad Phone Factory Functions
//
CPhoneFactoryBad::CPhoneFactoryBad()
	{
	iVersion=TVersion(KTsyEtelMajorVersionNumber,
					  KTsyEtelMinorVersionNumber,
					  KTsyEtelBuildVersionNumber);
	}

CPhoneFactoryBad::~CPhoneFactoryBad()
	{}

CPhoneBase* CPhoneFactoryBad::NewPhoneL(const TDesC&)
//
// Only pretended to have two phones!
//
	{
	User::Leave(KErrGeneral);
	return NULL;
	}

TInt CPhoneFactoryBad::GetPhoneInfo(const TInt aIndex,RTelServer::TPhoneInfo& aInfo)
//
// Pretending There are Two Phones of the same name
//
	{
	switch(aIndex)
		{
	case 0:
		aInfo.iNetworkType=DSTDPM_NETWORK_TYPE;
		aInfo.iName=DBAD_PHONE_NAME1;
		aInfo.iNumberOfLines=DSTDPM_NUMBER_OF_LINES;
		return KErrNone;
	case 1:
		aInfo.iNetworkType=DSTDNC_NETWORK_TYPE;
		aInfo.iName=DBAD_PHONE_NAME2;
		aInfo.iNumberOfLines=DSTDNC_NUMBER_OF_LINES;
		return KErrNone;
	default:
		return KErrNotFound;
		}
	}

TInt CPhoneFactoryBad::EnumeratePhones()
//
// Return as Two Phones
//
	{
	return (DBADIDEN_NUMBER_OF_PHONES);
	}

TBool CPhoneFactoryBad::IsSupported(const TInt)
	{
	return EFalse;
	}