sl@0
|
1 |
// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// The ECom impletementation of testing contact matching.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
|
sl@0
|
17 |
#include "t_logcntmatchplugin.h"
|
sl@0
|
18 |
#include <e32def.h>
|
sl@0
|
19 |
#include <ecom/implementationproxy.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
/** Creates a CLogTestCntMatch object
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
CLogTestCntMatch* CLogTestCntMatch::NewL()
|
sl@0
|
24 |
{
|
sl@0
|
25 |
RDebug::Print(_L("CLogTestCntMatch::NewL()"));
|
sl@0
|
26 |
CLogTestCntMatch* self = new (ELeave) CLogTestCntMatch;
|
sl@0
|
27 |
CleanupStack::PushL(self);
|
sl@0
|
28 |
self->ConstructL();
|
sl@0
|
29 |
CleanupStack::Pop(self);
|
sl@0
|
30 |
return self;
|
sl@0
|
31 |
}
|
sl@0
|
32 |
|
sl@0
|
33 |
void CLogTestCntMatch::ConstructL()
|
sl@0
|
34 |
{
|
sl@0
|
35 |
iTelNumbers = new(ELeave) CDesCArrayFlat(KNumberOfItems);
|
sl@0
|
36 |
iContactFirstNames = new(ELeave) CDesCArrayFlat(KNumberOfItems);
|
sl@0
|
37 |
iContactLastNames = new(ELeave) CDesCArrayFlat(KNumberOfItems);
|
sl@0
|
38 |
}
|
sl@0
|
39 |
|
sl@0
|
40 |
CLogTestCntMatch::CLogTestCntMatch()
|
sl@0
|
41 |
{
|
sl@0
|
42 |
}
|
sl@0
|
43 |
|
sl@0
|
44 |
CLogTestCntMatch::~CLogTestCntMatch()
|
sl@0
|
45 |
{
|
sl@0
|
46 |
delete iTelNumbers;
|
sl@0
|
47 |
delete iContactFirstNames;
|
sl@0
|
48 |
delete iContactLastNames;
|
sl@0
|
49 |
}
|
sl@0
|
50 |
|
sl@0
|
51 |
/** Interface of ECOM. In real phone, it should opens the contacts DB
|
sl@0
|
52 |
*/
|
sl@0
|
53 |
void CLogTestCntMatch::OpenContactsL()
|
sl@0
|
54 |
{
|
sl@0
|
55 |
RDebug::Print(_L("Test Mock Contact Matching: OpenContactsL "));
|
sl@0
|
56 |
|
sl@0
|
57 |
iTelNumbers->Reset();
|
sl@0
|
58 |
iContactFirstNames->Reset();
|
sl@0
|
59 |
iContactLastNames->Reset();
|
sl@0
|
60 |
|
sl@0
|
61 |
iTelNumbers->AppendL(KNumber1);
|
sl@0
|
62 |
iContactFirstNames->AppendL(KFirstName1);
|
sl@0
|
63 |
iContactLastNames->AppendL(KLastName1);
|
sl@0
|
64 |
|
sl@0
|
65 |
iTelNumbers->AppendL(KNumber2);
|
sl@0
|
66 |
iContactFirstNames->AppendL(KFirstName2);
|
sl@0
|
67 |
iContactLastNames->AppendL(KLastName2);
|
sl@0
|
68 |
|
sl@0
|
69 |
iTelNumbers->AppendL(KNumber3);
|
sl@0
|
70 |
iContactFirstNames->AppendL(KFirstName3);
|
sl@0
|
71 |
iContactLastNames->AppendL(KLastName3);
|
sl@0
|
72 |
|
sl@0
|
73 |
iTelNumbers->AppendL(KNumber4);
|
sl@0
|
74 |
iContactFirstNames->AppendL(KFirstName4);
|
sl@0
|
75 |
iContactLastNames->AppendL(KLastName4);
|
sl@0
|
76 |
|
sl@0
|
77 |
iTelNumbers->AppendL(KNumber5);
|
sl@0
|
78 |
iContactFirstNames->AppendL(KFirstName5);
|
sl@0
|
79 |
iContactLastNames->AppendL(KLastName5);
|
sl@0
|
80 |
|
sl@0
|
81 |
iTelNumbers->AppendL(KNumber6);
|
sl@0
|
82 |
iContactFirstNames->AppendL(KFirstName6);
|
sl@0
|
83 |
iContactLastNames->AppendL(KLastName6);
|
sl@0
|
84 |
|
sl@0
|
85 |
iTelNumbers->AppendL(KNumber7);
|
sl@0
|
86 |
iContactFirstNames->AppendL(KFirstName7);
|
sl@0
|
87 |
iContactLastNames->AppendL(KLastName7);
|
sl@0
|
88 |
}
|
sl@0
|
89 |
|
sl@0
|
90 |
/** Interface of ECOM. In real phone, it should closes the contacts DB
|
sl@0
|
91 |
*/
|
sl@0
|
92 |
void CLogTestCntMatch::CloseContacts()
|
sl@0
|
93 |
{
|
sl@0
|
94 |
RDebug::Print(_L("OpenContactsL is called"));
|
sl@0
|
95 |
iContactFirstNames->Reset();
|
sl@0
|
96 |
iContactLastNames->Reset();
|
sl@0
|
97 |
iTelNumbers->Reset();
|
sl@0
|
98 |
}
|
sl@0
|
99 |
|
sl@0
|
100 |
/** Attempts to find a contact item ID for the contact items which contains
|
sl@0
|
101 |
the specified telephone number in a telephone, fax or SMS type field for tests.
|
sl@0
|
102 |
If more than one contact item contains the telephone number this should be
|
sl@0
|
103 |
treated the same as no contact found.
|
sl@0
|
104 |
@param aNumber Phone number string
|
sl@0
|
105 |
@param aMatchLengthFromRight Number of digits from the right of the phone number to use.
|
sl@0
|
106 |
@return The contact Id found that contains the phone number. KLogNullContactId if none or more than one is found.
|
sl@0
|
107 |
*/
|
sl@0
|
108 |
TLogContactItemId CLogTestCntMatch::MatchPhoneNumberL(const TDesC& aNumber, TInt aMatchLengthFromRight)
|
sl@0
|
109 |
{
|
sl@0
|
110 |
RDebug::Print(_L("CLogTestCntMatch::MatchPhoneNumberL()"));
|
sl@0
|
111 |
__ASSERT_ALWAYS(iTelNumbers->Length() == KNumberOfItems &&
|
sl@0
|
112 |
iContactFirstNames->Length()==KNumberOfItems &&
|
sl@0
|
113 |
iContactLastNames->Length()==KNumberOfItems, _L("CLogTestCntMatch::MatchPhoneNumberL"));
|
sl@0
|
114 |
|
sl@0
|
115 |
TLogContactItemId contactId = KLogNullContactId;
|
sl@0
|
116 |
TInt numHit = 0;
|
sl@0
|
117 |
const TInt KMinLength = 7;
|
sl@0
|
118 |
TInt pos = -1;
|
sl@0
|
119 |
if(aNumber.Length() >= KMinLength)
|
sl@0
|
120 |
{
|
sl@0
|
121 |
for (TInt ii = 0; ii < KNumberOfItems && numHit < 2; ++ii)
|
sl@0
|
122 |
{
|
sl@0
|
123 |
TPtrC number((*iTelNumbers)[ii]);
|
sl@0
|
124 |
TInt numDigToMatch = aNumber.Length()<aMatchLengthFromRight?aNumber.Length():aMatchLengthFromRight;
|
sl@0
|
125 |
if(number.Length() < numDigToMatch)
|
sl@0
|
126 |
{//This is not matched
|
sl@0
|
127 |
continue;
|
sl@0
|
128 |
}
|
sl@0
|
129 |
if(number.Right(numDigToMatch).CompareF(aNumber.Right(numDigToMatch)) == 0)
|
sl@0
|
130 |
{
|
sl@0
|
131 |
pos = ii;
|
sl@0
|
132 |
++numHit;
|
sl@0
|
133 |
}
|
sl@0
|
134 |
}
|
sl@0
|
135 |
|
sl@0
|
136 |
// Only set contactId if we have exactly one match
|
sl@0
|
137 |
if (numHit == 1)
|
sl@0
|
138 |
{
|
sl@0
|
139 |
contactId = static_cast<TLogContactItemId>(pos)+1;
|
sl@0
|
140 |
}
|
sl@0
|
141 |
}
|
sl@0
|
142 |
|
sl@0
|
143 |
return contactId;
|
sl@0
|
144 |
}
|
sl@0
|
145 |
|
sl@0
|
146 |
/** Gets the text data for the family and given name fields of a given contact Id for tests.
|
sl@0
|
147 |
|
sl@0
|
148 |
@param aContactId Contact Id to find data for
|
sl@0
|
149 |
@param aName On return contains the family and given name in the desired format if found, leave with KErrNotFound otherwise.
|
sl@0
|
150 |
@param aNameFormat Desired format of returned string - Chinese or Western format
|
sl@0
|
151 |
*/
|
sl@0
|
152 |
void CLogTestCntMatch::ReadContactNameL(TLogContactItemId aContactId, TDes &aName, TLogContactNameFormat aNameFormat)
|
sl@0
|
153 |
{
|
sl@0
|
154 |
RDebug::Print(_L("CLogTestCntMatch::ReadContactNameL()"));
|
sl@0
|
155 |
__ASSERT_ALWAYS(iTelNumbers->Length() == KNumberOfItems &&
|
sl@0
|
156 |
iContactFirstNames->Length()==KNumberOfItems &&
|
sl@0
|
157 |
iContactLastNames->Length()==KNumberOfItems, _L("CLogTestCntMatch::ReadContactNameL"));
|
sl@0
|
158 |
|
sl@0
|
159 |
if(aContactId < 1 && aContactId > KNumberOfItems)
|
sl@0
|
160 |
{
|
sl@0
|
161 |
User::Leave(KErrNotFound);
|
sl@0
|
162 |
}
|
sl@0
|
163 |
if(aNameFormat == ELogWesternFormat)
|
sl@0
|
164 |
{
|
sl@0
|
165 |
aName.Append((*iContactFirstNames)[aContactId-1]);
|
sl@0
|
166 |
aName.Append(' ');
|
sl@0
|
167 |
aName.Append((*iContactLastNames)[aContactId-1]);
|
sl@0
|
168 |
}
|
sl@0
|
169 |
else //ELogChineseFormat
|
sl@0
|
170 |
{
|
sl@0
|
171 |
aName.Append((*iContactLastNames)[aContactId-1]);
|
sl@0
|
172 |
aName.Append((*iContactFirstNames)[aContactId-1]);
|
sl@0
|
173 |
aName.Append(' ');
|
sl@0
|
174 |
}
|
sl@0
|
175 |
}
|
sl@0
|
176 |
|
sl@0
|
177 |
const TImplementationProxy ImplementationTable[] =
|
sl@0
|
178 |
{
|
sl@0
|
179 |
IMPLEMENTATION_PROXY_ENTRY(0x2000862a, CLogTestCntMatch::NewL)
|
sl@0
|
180 |
};
|
sl@0
|
181 |
|
sl@0
|
182 |
EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
|
sl@0
|
183 |
{
|
sl@0
|
184 |
aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
|
sl@0
|
185 |
return ImplementationTable;
|
sl@0
|
186 |
}
|
sl@0
|
187 |
|