sl@0
|
1 |
// Copyright (c) 2006-2009 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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@test
|
sl@0
|
19 |
@internalComponent - Internal Symbian test code
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
|
sl@0
|
23 |
#include <eikenv.h>
|
sl@0
|
24 |
#include <bautils.h>
|
sl@0
|
25 |
#include <f32file.h>
|
sl@0
|
26 |
#include <ecom/implementationproxy.h>
|
sl@0
|
27 |
|
sl@0
|
28 |
#include "TEcomDecpDataRec.h"
|
sl@0
|
29 |
|
sl@0
|
30 |
const TInt KNumDataTypes = 1;
|
sl@0
|
31 |
const TUid KUid = {0x102032A2};
|
sl@0
|
32 |
|
sl@0
|
33 |
|
sl@0
|
34 |
const TInt KTestDataRecognizerError=-420; // some random number for test error code
|
sl@0
|
35 |
_LIT(KDeceptiveRecognizerToken, "c:\\test\\appfwk\\emime\\deceptive_recognizer.token");
|
sl@0
|
36 |
|
sl@0
|
37 |
|
sl@0
|
38 |
CApaDataRecognizerType* CTEcomDecpDataRec::CreateRecognizerL()
|
sl@0
|
39 |
{
|
sl@0
|
40 |
return new (ELeave) CTEcomDecpDataRec;
|
sl@0
|
41 |
}
|
sl@0
|
42 |
|
sl@0
|
43 |
CTEcomDecpDataRec::CTEcomDecpDataRec():CApaDataRecognizerType(KUid, CApaDataRecognizerType::EHigh)
|
sl@0
|
44 |
{
|
sl@0
|
45 |
iCountDataTypes = KNumDataTypes;
|
sl@0
|
46 |
}
|
sl@0
|
47 |
|
sl@0
|
48 |
TUint CTEcomDecpDataRec::PreferredBufSize()
|
sl@0
|
49 |
{
|
sl@0
|
50 |
return 0;
|
sl@0
|
51 |
}
|
sl@0
|
52 |
|
sl@0
|
53 |
TDataType CTEcomDecpDataRec::SupportedDataTypeL(TInt /*lIndex*/) const
|
sl@0
|
54 |
{
|
sl@0
|
55 |
return TDataType(_L8("deceptivedata/app"));
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
void CTEcomDecpDataRec::DoRecognizeL(const TDesC& /*aName*/, const TDesC8& /*aBuffer*/)
|
sl@0
|
59 |
{
|
sl@0
|
60 |
// KTestDataRecognizerError - Random error code chosen to simulate a leave in a recognizer which can be used for testing.
|
sl@0
|
61 |
//
|
sl@0
|
62 |
// NOTE: To avoid leaving with KTestDataRecognizerError whenever a file is not recognized, a token has been used,
|
sl@0
|
63 |
// so that only when running emime tests this leaving will occur (i.e, the token is created/destroyed during such tests).
|
sl@0
|
64 |
// Otherwise, the DoRecognizeL does nothing.
|
sl@0
|
65 |
|
sl@0
|
66 |
RFs fs;
|
sl@0
|
67 |
CleanupClosePushL(fs);
|
sl@0
|
68 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
69 |
|
sl@0
|
70 |
if (BaflUtils::FileExists(fs, KDeceptiveRecognizerToken))
|
sl@0
|
71 |
{
|
sl@0
|
72 |
User::Leave(KTestDataRecognizerError);
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
CleanupStack::PopAndDestroy(&fs);
|
sl@0
|
76 |
}
|