sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @internalComponent - Internal Symbian test code sl@0: */ sl@0: sl@0: #include "TEcomLeavingRecognizer.h" sl@0: #include sl@0: sl@0: sl@0: const TInt KNumDataTypes = 1; sl@0: const TUid KUid = {0x10203630}; sl@0: sl@0: sl@0: CApaDataRecognizerType* CEcomLeavingApplicationRec::CreateRecognizerL() sl@0: { sl@0: return new (ELeave) CEcomLeavingApplicationRec; sl@0: } sl@0: sl@0: CEcomLeavingApplicationRec::CEcomLeavingApplicationRec():CApaDataRecognizerType(KUid, CApaDataRecognizerType::EHigh) sl@0: { sl@0: iCountDataTypes = KNumDataTypes; sl@0: } sl@0: sl@0: /* sl@0: Specifies the buffer size required by the data type sl@0: */ sl@0: TUint CEcomLeavingApplicationRec::PreferredBufSize() sl@0: { sl@0: return 0; sl@0: } sl@0: sl@0: /* sl@0: Should return one of the supported data types based on index sent. sl@0: */ sl@0: TDataType CEcomLeavingApplicationRec::SupportedDataTypeL(TInt /*lIndex*/) const sl@0: { sl@0: // This function is made to leave, just to reproduce the defect: sl@0: // DEF038928 - App Arc server/ Recogniser needs to be more robust. sl@0: User::Leave(KErrNoMemory); sl@0: return TDataType(_L8("dodgy/app")); sl@0: } sl@0: sl@0: /* sl@0: Should recognize the data type of the file. sl@0: Called by the RecognizeL function. sl@0: */ sl@0: void CEcomLeavingApplicationRec::DoRecognizeL(const TDesC& /*aName*/, const TDesC8& /*aBuffer*/) sl@0: { sl@0: // does nothing sl@0: }