First public contribution.
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 @internalComponent - Internal Symbian test code
26 #include <ecom/implementationproxy.h>
28 #include "TEcomDecpDataRec.h"
30 const TInt KNumDataTypes = 1;
31 const TUid KUid = {0x102032A2};
34 const TInt KTestDataRecognizerError=-420; // some random number for test error code
35 _LIT(KDeceptiveRecognizerToken, "c:\\test\\appfwk\\emime\\deceptive_recognizer.token");
38 CApaDataRecognizerType* CTEcomDecpDataRec::CreateRecognizerL()
40 return new (ELeave) CTEcomDecpDataRec;
43 CTEcomDecpDataRec::CTEcomDecpDataRec():CApaDataRecognizerType(KUid, CApaDataRecognizerType::EHigh)
45 iCountDataTypes = KNumDataTypes;
48 TUint CTEcomDecpDataRec::PreferredBufSize()
53 TDataType CTEcomDecpDataRec::SupportedDataTypeL(TInt /*lIndex*/) const
55 return TDataType(_L8("deceptivedata/app"));
58 void CTEcomDecpDataRec::DoRecognizeL(const TDesC& /*aName*/, const TDesC8& /*aBuffer*/)
60 // KTestDataRecognizerError - Random error code chosen to simulate a leave in a recognizer which can be used for testing.
62 // NOTE: To avoid leaving with KTestDataRecognizerError whenever a file is not recognized, a token has been used,
63 // so that only when running emime tests this leaving will occur (i.e, the token is created/destroyed during such tests).
64 // Otherwise, the DoRecognizeL does nothing.
67 CleanupClosePushL(fs);
68 User::LeaveIfError(fs.Connect());
70 if (BaflUtils::FileExists(fs, KDeceptiveRecognizerToken))
72 User::Leave(KTestDataRecognizerError);
75 CleanupStack::PopAndDestroy(&fs);