1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/genericservices/mimerecognitionfw/tef/TEcomLeavingRecognizer.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,65 @@
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 "TEcomLeavingRecognizer.h"
1.25 +#include <eikenv.h>
1.26 +
1.27 +
1.28 +const TInt KNumDataTypes = 1;
1.29 +const TUid KUid = {0x10203630};
1.30 +
1.31 +
1.32 +CApaDataRecognizerType* CEcomLeavingApplicationRec::CreateRecognizerL()
1.33 + {
1.34 + return new (ELeave) CEcomLeavingApplicationRec;
1.35 + }
1.36 +
1.37 +CEcomLeavingApplicationRec::CEcomLeavingApplicationRec():CApaDataRecognizerType(KUid, CApaDataRecognizerType::EHigh)
1.38 + {
1.39 + iCountDataTypes = KNumDataTypes;
1.40 + }
1.41 +
1.42 +/*
1.43 + Specifies the buffer size required by the data type
1.44 +*/
1.45 +TUint CEcomLeavingApplicationRec::PreferredBufSize()
1.46 + {
1.47 + return 0;
1.48 + }
1.49 +
1.50 +/*
1.51 + Should return one of the supported data types based on index sent.
1.52 +*/
1.53 +TDataType CEcomLeavingApplicationRec::SupportedDataTypeL(TInt /*lIndex*/) const
1.54 + {
1.55 + // This function is made to leave, just to reproduce the defect:
1.56 + // DEF038928 - App Arc server/ Recogniser needs to be more robust.
1.57 + User::Leave(KErrNoMemory);
1.58 + return TDataType(_L8("dodgy/app"));
1.59 + }
1.60 +
1.61 +/*
1.62 + Should recognize the data type of the file.
1.63 + Called by the RecognizeL function.
1.64 +*/
1.65 +void CEcomLeavingApplicationRec::DoRecognizeL(const TDesC& /*aName*/, const TDesC8& /*aBuffer*/)
1.66 + {
1.67 + // does nothing
1.68 + }