1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/genericservices/mimerecognitionfw/rec/RECAPP.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,90 @@
1.4 +// Copyright (c) 1997-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 +#include <apmrec.h>
1.20 +#include <apmstd.h>
1.21 +#include "RECAPP.H"
1.22 +#include <ecom/implementationproxy.h>
1.23 +
1.24 +//
1.25 +// This is a very odd recognizer - it doesn't know how many things it recognizes
1.26 +// It assumes there are none.
1.27 +//
1.28 +
1.29 +const TInt KMimeAppRecognizerValue=0x1000415F;
1.30 +const TUid KUidMimeAppRecognizer={KMimeAppRecognizerValue};
1.31 +const TInt KAppNumMimeTypes=0;
1.32 +
1.33 +CApaAppRecognizer::CApaAppRecognizer()
1.34 + :CApaDataRecognizerType(KUidMimeAppRecognizer,CApaDataRecognizerType::EHigh)
1.35 + // All these mime types have reasonable recognition
1.36 + {
1.37 + iCountDataTypes=KAppNumMimeTypes;
1.38 + }
1.39 +
1.40 +TUint CApaAppRecognizer::PreferredBufSize()
1.41 + {
1.42 + return 16;
1.43 + }
1.44 +
1.45 +TDataType CApaAppRecognizer::SupportedDataTypeL(TInt /*aIndex*/) const
1.46 + {
1.47 + return TDataType();
1.48 + }
1.49 +
1.50 +void CApaAppRecognizer::DoRecognizeL(const TDesC& /*aName*/, const TDesC8& aBuffer)
1.51 + {
1.52 + if (aBuffer.Length()>=16)
1.53 + {
1.54 + const TUidType uids(TCheckedUid(aBuffer.Left(16)).UidType());
1.55 +#if defined(_UNICODE)
1.56 + if (uids[1].iUid==0x10003a12)
1.57 +#else
1.58 + if (uids[1].iUid==0x1000006d)
1.59 +#endif
1.60 + {
1.61 + iDataType=TDataType(uids[2]);
1.62 + iConfidence=ECertain;
1.63 + }
1.64 + }
1.65 + }
1.66 +
1.67 +CApaDataRecognizerType* CApaAppRecognizer::CreateRecognizerL()
1.68 + {
1.69 + return new (ELeave) CApaAppRecognizer();
1.70 + }
1.71 +
1.72 +const TImplementationProxy ImplementationTable[] =
1.73 + {
1.74 + IMPLEMENTATION_PROXY_ENTRY(0x101F7D9F,CApaAppRecognizer::CreateRecognizerL)
1.75 + };
1.76 +
1.77 +EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
1.78 + {
1.79 + aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
1.80 + return ImplementationTable;
1.81 + }
1.82 +
1.83 +
1.84 +
1.85 +
1.86 +GLDEF_C TInt E32Dll(
1.87 + )
1.88 +//
1.89 +// DLL entry point
1.90 +//
1.91 + {
1.92 + return KErrNone;
1.93 + }