sl@0: // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // The ECom impletementation of testing contact matching. sl@0: // sl@0: sl@0: #include "t_logcntmatchplugin.h" sl@0: #include sl@0: #include sl@0: sl@0: /** Creates a CLogTestCntMatch object sl@0: */ sl@0: CLogTestCntMatch* CLogTestCntMatch::NewL() sl@0: { sl@0: RDebug::Print(_L("CLogTestCntMatch::NewL()")); sl@0: CLogTestCntMatch* self = new (ELeave) CLogTestCntMatch; sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: void CLogTestCntMatch::ConstructL() sl@0: { sl@0: iTelNumbers = new(ELeave) CDesCArrayFlat(KNumberOfItems); sl@0: iContactFirstNames = new(ELeave) CDesCArrayFlat(KNumberOfItems); sl@0: iContactLastNames = new(ELeave) CDesCArrayFlat(KNumberOfItems); sl@0: } sl@0: sl@0: CLogTestCntMatch::CLogTestCntMatch() sl@0: { sl@0: } sl@0: sl@0: CLogTestCntMatch::~CLogTestCntMatch() sl@0: { sl@0: delete iTelNumbers; sl@0: delete iContactFirstNames; sl@0: delete iContactLastNames; sl@0: } sl@0: sl@0: /** Interface of ECOM. In real phone, it should opens the contacts DB sl@0: */ sl@0: void CLogTestCntMatch::OpenContactsL() sl@0: { sl@0: RDebug::Print(_L("Test Mock Contact Matching: OpenContactsL ")); sl@0: sl@0: iTelNumbers->Reset(); sl@0: iContactFirstNames->Reset(); sl@0: iContactLastNames->Reset(); sl@0: sl@0: iTelNumbers->AppendL(KNumber1); sl@0: iContactFirstNames->AppendL(KFirstName1); sl@0: iContactLastNames->AppendL(KLastName1); sl@0: sl@0: iTelNumbers->AppendL(KNumber2); sl@0: iContactFirstNames->AppendL(KFirstName2); sl@0: iContactLastNames->AppendL(KLastName2); sl@0: sl@0: iTelNumbers->AppendL(KNumber3); sl@0: iContactFirstNames->AppendL(KFirstName3); sl@0: iContactLastNames->AppendL(KLastName3); sl@0: sl@0: iTelNumbers->AppendL(KNumber4); sl@0: iContactFirstNames->AppendL(KFirstName4); sl@0: iContactLastNames->AppendL(KLastName4); sl@0: sl@0: iTelNumbers->AppendL(KNumber5); sl@0: iContactFirstNames->AppendL(KFirstName5); sl@0: iContactLastNames->AppendL(KLastName5); sl@0: sl@0: iTelNumbers->AppendL(KNumber6); sl@0: iContactFirstNames->AppendL(KFirstName6); sl@0: iContactLastNames->AppendL(KLastName6); sl@0: sl@0: iTelNumbers->AppendL(KNumber7); sl@0: iContactFirstNames->AppendL(KFirstName7); sl@0: iContactLastNames->AppendL(KLastName7); sl@0: } sl@0: sl@0: /** Interface of ECOM. In real phone, it should closes the contacts DB sl@0: */ sl@0: void CLogTestCntMatch::CloseContacts() sl@0: { sl@0: RDebug::Print(_L("OpenContactsL is called")); sl@0: iContactFirstNames->Reset(); sl@0: iContactLastNames->Reset(); sl@0: iTelNumbers->Reset(); sl@0: } sl@0: sl@0: /** Attempts to find a contact item ID for the contact items which contains sl@0: the specified telephone number in a telephone, fax or SMS type field for tests. sl@0: If more than one contact item contains the telephone number this should be sl@0: treated the same as no contact found. sl@0: @param aNumber Phone number string sl@0: @param aMatchLengthFromRight Number of digits from the right of the phone number to use. sl@0: @return The contact Id found that contains the phone number. KLogNullContactId if none or more than one is found. sl@0: */ sl@0: TLogContactItemId CLogTestCntMatch::MatchPhoneNumberL(const TDesC& aNumber, TInt aMatchLengthFromRight) sl@0: { sl@0: RDebug::Print(_L("CLogTestCntMatch::MatchPhoneNumberL()")); sl@0: __ASSERT_ALWAYS(iTelNumbers->Length() == KNumberOfItems && sl@0: iContactFirstNames->Length()==KNumberOfItems && sl@0: iContactLastNames->Length()==KNumberOfItems, _L("CLogTestCntMatch::MatchPhoneNumberL")); sl@0: sl@0: TLogContactItemId contactId = KLogNullContactId; sl@0: TInt numHit = 0; sl@0: const TInt KMinLength = 7; sl@0: TInt pos = -1; sl@0: if(aNumber.Length() >= KMinLength) sl@0: { sl@0: for (TInt ii = 0; ii < KNumberOfItems && numHit < 2; ++ii) sl@0: { sl@0: TPtrC number((*iTelNumbers)[ii]); sl@0: TInt numDigToMatch = aNumber.Length()(pos)+1; sl@0: } sl@0: } sl@0: sl@0: return contactId; sl@0: } sl@0: sl@0: /** Gets the text data for the family and given name fields of a given contact Id for tests. sl@0: sl@0: @param aContactId Contact Id to find data for sl@0: @param aName On return contains the family and given name in the desired format if found, leave with KErrNotFound otherwise. sl@0: @param aNameFormat Desired format of returned string - Chinese or Western format sl@0: */ sl@0: void CLogTestCntMatch::ReadContactNameL(TLogContactItemId aContactId, TDes &aName, TLogContactNameFormat aNameFormat) sl@0: { sl@0: RDebug::Print(_L("CLogTestCntMatch::ReadContactNameL()")); sl@0: __ASSERT_ALWAYS(iTelNumbers->Length() == KNumberOfItems && sl@0: iContactFirstNames->Length()==KNumberOfItems && sl@0: iContactLastNames->Length()==KNumberOfItems, _L("CLogTestCntMatch::ReadContactNameL")); sl@0: sl@0: if(aContactId < 1 && aContactId > KNumberOfItems) sl@0: { sl@0: User::Leave(KErrNotFound); sl@0: } sl@0: if(aNameFormat == ELogWesternFormat) sl@0: { sl@0: aName.Append((*iContactFirstNames)[aContactId-1]); sl@0: aName.Append(' '); sl@0: aName.Append((*iContactLastNames)[aContactId-1]); sl@0: } sl@0: else //ELogChineseFormat sl@0: { sl@0: aName.Append((*iContactLastNames)[aContactId-1]); sl@0: aName.Append((*iContactFirstNames)[aContactId-1]); sl@0: aName.Append(' '); sl@0: } sl@0: } sl@0: sl@0: const TImplementationProxy ImplementationTable[] = sl@0: { sl@0: IMPLEMENTATION_PROXY_ENTRY(0x2000862a, CLogTestCntMatch::NewL) sl@0: }; sl@0: sl@0: EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount) sl@0: { sl@0: aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy); sl@0: return ImplementationTable; sl@0: } sl@0: