1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/loggingservices/eventlogger/test/inc/t_logcntmatchplugin.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,75 @@
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 +// Header file of the ECom impletementation of for testing contact matching.
1.18 +//
1.19 +
1.20 +#ifndef __CNTMATCHLOG_H__
1.21 +#define __CNTMATCHLOG_H__
1.22 +
1.23 +#include <e32base.h>
1.24 +#include <logcntmodel.h>
1.25 +#include <badesca.h>
1.26 +#include <e32des16.h>
1.27 +
1.28 +//The contact items
1.29 +const TInt KNumberOfItems = 7;
1.30 +
1.31 +_LIT(KNumber1, "447700900000");
1.32 +_LIT(KNumber2, "+441632960000");
1.33 +_LIT(KNumber3, "07700900001");
1.34 +_LIT(KNumber4, "447756900111");
1.35 +_LIT(KNumber5, "447756900111");
1.36 +_LIT(KNumber6, "1234567890");
1.37 +_LIT(KNumber7, "0123456789");
1.38 +
1.39 +_LIT(KFirstName1, "Barney");
1.40 +_LIT(KFirstName2, "Elma");
1.41 +_LIT(KFirstName3, "Peter");
1.42 +_LIT(KFirstName4, "Abc");
1.43 +_LIT(KFirstName5, "Rtyu");
1.44 +_LIT(KFirstName6, "Zxcvb");
1.45 +_LIT(KFirstName7, "AAA");
1.46 +
1.47 +_LIT(KLastName1, "Rubble");
1.48 +_LIT(KLastName2, "Fudd");
1.49 +_LIT(KLastName3, "Harper");
1.50 +_LIT(KLastName4, "Lkjhgf");
1.51 +_LIT(KLastName5, "Poiuytqwe");
1.52 +_LIT(KLastName6, "Mnbvcxz");
1.53 +_LIT(KLastName7, "BBB");
1.54 +
1.55 +/** Plugin implementation that provide contacts matching functionality.
1.56 +
1.57 +@internalAll
1.58 +*/
1.59 +class CLogTestCntMatch : public CLogCntModel
1.60 + {
1.61 +public:
1.62 + static CLogTestCntMatch* NewL();
1.63 + virtual void OpenContactsL();
1.64 + virtual void CloseContacts();
1.65 + virtual TLogContactItemId MatchPhoneNumberL(const TDesC& aNumber, TInt aMatchLengthFromRight);
1.66 + virtual void ReadContactNameL(TLogContactItemId aContactId, TDes &aName, TLogContactNameFormat aNameFormat);
1.67 +
1.68 +private:
1.69 + ~CLogTestCntMatch();
1.70 + CLogTestCntMatch();
1.71 +
1.72 + void ConstructL();
1.73 + CDesCArray* iTelNumbers;
1.74 + CDesCArray* iContactFirstNames;
1.75 + CDesCArray* iContactLastNames;
1.76 + };
1.77 +
1.78 +#endif