sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <apmrec.h>
|
sl@0
|
17 |
#include <apmstd.h>
|
sl@0
|
18 |
#include "RECAPP.H"
|
sl@0
|
19 |
#include <ecom/implementationproxy.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
//
|
sl@0
|
22 |
// This is a very odd recognizer - it doesn't know how many things it recognizes
|
sl@0
|
23 |
// It assumes there are none.
|
sl@0
|
24 |
//
|
sl@0
|
25 |
|
sl@0
|
26 |
const TInt KMimeAppRecognizerValue=0x1000415F;
|
sl@0
|
27 |
const TUid KUidMimeAppRecognizer={KMimeAppRecognizerValue};
|
sl@0
|
28 |
const TInt KAppNumMimeTypes=0;
|
sl@0
|
29 |
|
sl@0
|
30 |
CApaAppRecognizer::CApaAppRecognizer()
|
sl@0
|
31 |
:CApaDataRecognizerType(KUidMimeAppRecognizer,CApaDataRecognizerType::EHigh)
|
sl@0
|
32 |
// All these mime types have reasonable recognition
|
sl@0
|
33 |
{
|
sl@0
|
34 |
iCountDataTypes=KAppNumMimeTypes;
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
TUint CApaAppRecognizer::PreferredBufSize()
|
sl@0
|
38 |
{
|
sl@0
|
39 |
return 16;
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
TDataType CApaAppRecognizer::SupportedDataTypeL(TInt /*aIndex*/) const
|
sl@0
|
43 |
{
|
sl@0
|
44 |
return TDataType();
|
sl@0
|
45 |
}
|
sl@0
|
46 |
|
sl@0
|
47 |
void CApaAppRecognizer::DoRecognizeL(const TDesC& /*aName*/, const TDesC8& aBuffer)
|
sl@0
|
48 |
{
|
sl@0
|
49 |
if (aBuffer.Length()>=16)
|
sl@0
|
50 |
{
|
sl@0
|
51 |
const TUidType uids(TCheckedUid(aBuffer.Left(16)).UidType());
|
sl@0
|
52 |
#if defined(_UNICODE)
|
sl@0
|
53 |
if (uids[1].iUid==0x10003a12)
|
sl@0
|
54 |
#else
|
sl@0
|
55 |
if (uids[1].iUid==0x1000006d)
|
sl@0
|
56 |
#endif
|
sl@0
|
57 |
{
|
sl@0
|
58 |
iDataType=TDataType(uids[2]);
|
sl@0
|
59 |
iConfidence=ECertain;
|
sl@0
|
60 |
}
|
sl@0
|
61 |
}
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
CApaDataRecognizerType* CApaAppRecognizer::CreateRecognizerL()
|
sl@0
|
65 |
{
|
sl@0
|
66 |
return new (ELeave) CApaAppRecognizer();
|
sl@0
|
67 |
}
|
sl@0
|
68 |
|
sl@0
|
69 |
const TImplementationProxy ImplementationTable[] =
|
sl@0
|
70 |
{
|
sl@0
|
71 |
IMPLEMENTATION_PROXY_ENTRY(0x101F7D9F,CApaAppRecognizer::CreateRecognizerL)
|
sl@0
|
72 |
};
|
sl@0
|
73 |
|
sl@0
|
74 |
EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
|
sl@0
|
75 |
{
|
sl@0
|
76 |
aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
|
sl@0
|
77 |
return ImplementationTable;
|
sl@0
|
78 |
}
|
sl@0
|
79 |
|
sl@0
|
80 |
|
sl@0
|
81 |
|
sl@0
|
82 |
|
sl@0
|
83 |
GLDEF_C TInt E32Dll(
|
sl@0
|
84 |
)
|
sl@0
|
85 |
//
|
sl@0
|
86 |
// DLL entry point
|
sl@0
|
87 |
//
|
sl@0
|
88 |
{
|
sl@0
|
89 |
return KErrNone;
|
sl@0
|
90 |
}
|