1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/loggingservices/eventlogger/test/src/t_logcntmatchplugin.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,187 @@
1.4 +// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// The ECom impletementation of testing contact matching.
1.18 +//
1.19 +
1.20 +#include "t_logcntmatchplugin.h"
1.21 +#include <e32def.h>
1.22 +#include <ecom/implementationproxy.h>
1.23 +
1.24 +/** Creates a CLogTestCntMatch object
1.25 +*/
1.26 +CLogTestCntMatch* CLogTestCntMatch::NewL()
1.27 + {
1.28 + RDebug::Print(_L("CLogTestCntMatch::NewL()"));
1.29 + CLogTestCntMatch* self = new (ELeave) CLogTestCntMatch;
1.30 + CleanupStack::PushL(self);
1.31 + self->ConstructL();
1.32 + CleanupStack::Pop(self);
1.33 + return self;
1.34 + }
1.35 +
1.36 +void CLogTestCntMatch::ConstructL()
1.37 + {
1.38 + iTelNumbers = new(ELeave) CDesCArrayFlat(KNumberOfItems);
1.39 + iContactFirstNames = new(ELeave) CDesCArrayFlat(KNumberOfItems);
1.40 + iContactLastNames = new(ELeave) CDesCArrayFlat(KNumberOfItems);
1.41 + }
1.42 +
1.43 +CLogTestCntMatch::CLogTestCntMatch()
1.44 + {
1.45 + }
1.46 +
1.47 +CLogTestCntMatch::~CLogTestCntMatch()
1.48 + {
1.49 + delete iTelNumbers;
1.50 + delete iContactFirstNames;
1.51 + delete iContactLastNames;
1.52 + }
1.53 +
1.54 +/** Interface of ECOM. In real phone, it should opens the contacts DB
1.55 +*/
1.56 +void CLogTestCntMatch::OpenContactsL()
1.57 + {
1.58 + RDebug::Print(_L("Test Mock Contact Matching: OpenContactsL "));
1.59 +
1.60 + iTelNumbers->Reset();
1.61 + iContactFirstNames->Reset();
1.62 + iContactLastNames->Reset();
1.63 +
1.64 + iTelNumbers->AppendL(KNumber1);
1.65 + iContactFirstNames->AppendL(KFirstName1);
1.66 + iContactLastNames->AppendL(KLastName1);
1.67 +
1.68 + iTelNumbers->AppendL(KNumber2);
1.69 + iContactFirstNames->AppendL(KFirstName2);
1.70 + iContactLastNames->AppendL(KLastName2);
1.71 +
1.72 + iTelNumbers->AppendL(KNumber3);
1.73 + iContactFirstNames->AppendL(KFirstName3);
1.74 + iContactLastNames->AppendL(KLastName3);
1.75 +
1.76 + iTelNumbers->AppendL(KNumber4);
1.77 + iContactFirstNames->AppendL(KFirstName4);
1.78 + iContactLastNames->AppendL(KLastName4);
1.79 +
1.80 + iTelNumbers->AppendL(KNumber5);
1.81 + iContactFirstNames->AppendL(KFirstName5);
1.82 + iContactLastNames->AppendL(KLastName5);
1.83 +
1.84 + iTelNumbers->AppendL(KNumber6);
1.85 + iContactFirstNames->AppendL(KFirstName6);
1.86 + iContactLastNames->AppendL(KLastName6);
1.87 +
1.88 + iTelNumbers->AppendL(KNumber7);
1.89 + iContactFirstNames->AppendL(KFirstName7);
1.90 + iContactLastNames->AppendL(KLastName7);
1.91 + }
1.92 +
1.93 +/** Interface of ECOM. In real phone, it should closes the contacts DB
1.94 +*/
1.95 +void CLogTestCntMatch::CloseContacts()
1.96 + {
1.97 + RDebug::Print(_L("OpenContactsL is called"));
1.98 + iContactFirstNames->Reset();
1.99 + iContactLastNames->Reset();
1.100 + iTelNumbers->Reset();
1.101 + }
1.102 +
1.103 +/** Attempts to find a contact item ID for the contact items which contains
1.104 + the specified telephone number in a telephone, fax or SMS type field for tests.
1.105 + If more than one contact item contains the telephone number this should be
1.106 + treated the same as no contact found.
1.107 + @param aNumber Phone number string
1.108 + @param aMatchLengthFromRight Number of digits from the right of the phone number to use.
1.109 + @return The contact Id found that contains the phone number. KLogNullContactId if none or more than one is found.
1.110 +*/
1.111 +TLogContactItemId CLogTestCntMatch::MatchPhoneNumberL(const TDesC& aNumber, TInt aMatchLengthFromRight)
1.112 + {
1.113 + RDebug::Print(_L("CLogTestCntMatch::MatchPhoneNumberL()"));
1.114 + __ASSERT_ALWAYS(iTelNumbers->Length() == KNumberOfItems &&
1.115 + iContactFirstNames->Length()==KNumberOfItems &&
1.116 + iContactLastNames->Length()==KNumberOfItems, _L("CLogTestCntMatch::MatchPhoneNumberL"));
1.117 +
1.118 + TLogContactItemId contactId = KLogNullContactId;
1.119 + TInt numHit = 0;
1.120 + const TInt KMinLength = 7;
1.121 + TInt pos = -1;
1.122 + if(aNumber.Length() >= KMinLength)
1.123 + {
1.124 + for (TInt ii = 0; ii < KNumberOfItems && numHit < 2; ++ii)
1.125 + {
1.126 + TPtrC number((*iTelNumbers)[ii]);
1.127 + TInt numDigToMatch = aNumber.Length()<aMatchLengthFromRight?aNumber.Length():aMatchLengthFromRight;
1.128 + if(number.Length() < numDigToMatch)
1.129 + {//This is not matched
1.130 + continue;
1.131 + }
1.132 + if(number.Right(numDigToMatch).CompareF(aNumber.Right(numDigToMatch)) == 0)
1.133 + {
1.134 + pos = ii;
1.135 + ++numHit;
1.136 + }
1.137 + }
1.138 +
1.139 + // Only set contactId if we have exactly one match
1.140 + if (numHit == 1)
1.141 + {
1.142 + contactId = static_cast<TLogContactItemId>(pos)+1;
1.143 + }
1.144 + }
1.145 +
1.146 + return contactId;
1.147 + }
1.148 +
1.149 +/** Gets the text data for the family and given name fields of a given contact Id for tests.
1.150 +
1.151 + @param aContactId Contact Id to find data for
1.152 + @param aName On return contains the family and given name in the desired format if found, leave with KErrNotFound otherwise.
1.153 + @param aNameFormat Desired format of returned string - Chinese or Western format
1.154 +*/
1.155 +void CLogTestCntMatch::ReadContactNameL(TLogContactItemId aContactId, TDes &aName, TLogContactNameFormat aNameFormat)
1.156 + {
1.157 + RDebug::Print(_L("CLogTestCntMatch::ReadContactNameL()"));
1.158 + __ASSERT_ALWAYS(iTelNumbers->Length() == KNumberOfItems &&
1.159 + iContactFirstNames->Length()==KNumberOfItems &&
1.160 + iContactLastNames->Length()==KNumberOfItems, _L("CLogTestCntMatch::ReadContactNameL"));
1.161 +
1.162 + if(aContactId < 1 && aContactId > KNumberOfItems)
1.163 + {
1.164 + User::Leave(KErrNotFound);
1.165 + }
1.166 + if(aNameFormat == ELogWesternFormat)
1.167 + {
1.168 + aName.Append((*iContactFirstNames)[aContactId-1]);
1.169 + aName.Append(' ');
1.170 + aName.Append((*iContactLastNames)[aContactId-1]);
1.171 + }
1.172 + else //ELogChineseFormat
1.173 + {
1.174 + aName.Append((*iContactLastNames)[aContactId-1]);
1.175 + aName.Append((*iContactFirstNames)[aContactId-1]);
1.176 + aName.Append(' ');
1.177 + }
1.178 + }
1.179 +
1.180 +const TImplementationProxy ImplementationTable[] =
1.181 + {
1.182 + IMPLEMENTATION_PROXY_ENTRY(0x2000862a, CLogTestCntMatch::NewL)
1.183 + };
1.184 +
1.185 +EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
1.186 + {
1.187 + aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
1.188 + return ImplementationTable;
1.189 + }
1.190 +