1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/genericservices/mimerecognitionfw/tef/TTestEcomDataRec.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,84 @@
1.4 +// Copyright (c) 2005-2009 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 +//
1.18 +
1.19 +/**
1.20 + @file
1.21 + @internalComponent - Internal Symbian test code
1.22 +*/
1.23 +
1.24 +#include "TTestEcomDataRec.h"
1.25 +#include "TEcomDecpDataRec.h"
1.26 +#include "TEcomLeavingRecognizer.h"
1.27 +#include <eikenv.h>
1.28 +#include <ecom/implementationproxy.h>
1.29 +
1.30 +
1.31 +const TInt KNumDataTypes = 1;
1.32 +const TUid KUid = {0x1d1f75ed};
1.33 +
1.34 +
1.35 +GLDEF_C TInt E32Dll(
1.36 + )
1.37 + {
1.38 + return KErrNone;
1.39 + }
1.40 +
1.41 +
1.42 +CTestEcomRecognizer::CTestEcomRecognizer():CApaDataRecognizerType(KUid, CApaDataRecognizerType::EHigh)
1.43 + {
1.44 + iCountDataTypes = KNumDataTypes;
1.45 + }
1.46 +
1.47 +/*
1.48 + Specifies the buffer size required by the data type
1.49 +*/
1.50 +TUint CTestEcomRecognizer::PreferredBufSize()
1.51 + {
1.52 + return 0;
1.53 + }
1.54 +
1.55 +TDataType CTestEcomRecognizer::SupportedDataTypeL(TInt /*lIndex*/) const
1.56 + {
1.57 + return TDataType(_L8("dodgy/app"));
1.58 + }
1.59 +
1.60 +/*
1.61 + Should recognize the data type of the file.
1.62 + Called by the RecognizeL function.
1.63 +*/
1.64 +void CTestEcomRecognizer::DoRecognizeL(const TDesC& /*aName*/, const TDesC8& /*aBuffer*/)
1.65 + {
1.66 + // does nothing
1.67 + }
1.68 +
1.69 +
1.70 +
1.71 +CApaDataRecognizerType* CTestEcomRecognizer::CreateRecognizerL()
1.72 + {
1.73 + return new (ELeave) CTestEcomRecognizer();
1.74 + }
1.75 +
1.76 +const TImplementationProxy ImplementationTable[] =
1.77 + {
1.78 + IMPLEMENTATION_PROXY_ENTRY(0x101F7DA1,CTestEcomRecognizer::CreateRecognizerL),
1.79 + IMPLEMENTATION_PROXY_ENTRY(0x102032A2,CTEcomDecpDataRec::CreateRecognizerL),
1.80 + IMPLEMENTATION_PROXY_ENTRY(0x10203630,CEcomLeavingApplicationRec::CreateRecognizerL)
1.81 + };
1.82 +
1.83 +EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
1.84 + {
1.85 + aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
1.86 + return ImplementationTable;
1.87 + }