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 "RECTXT.H"
|
sl@0
|
19 |
#include <ecom/implementationproxy.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
const TUid KUidMimeTxtRecognizer={0x100012FB};
|
sl@0
|
22 |
const TInt KMinBufferLength=42; // minimum amount of file needed to determine a text file IF it's not called .TXT
|
sl@0
|
23 |
const TInt KMaxBufferLength=1024; // maximum amount of buffer space we will ever use
|
sl@0
|
24 |
_LIT8(KDataTypeTextPlain,"text/plain");
|
sl@0
|
25 |
_LIT(KTextFileExt,".txt");
|
sl@0
|
26 |
|
sl@0
|
27 |
CApaTextRecognizer::CApaTextRecognizer()
|
sl@0
|
28 |
:CApaDataRecognizerType(KUidMimeTxtRecognizer,CApaDataRecognizerType::ELow)
|
sl@0
|
29 |
// Text files are low recognition - they don't have a clear signature
|
sl@0
|
30 |
{
|
sl@0
|
31 |
iCountDataTypes=1;
|
sl@0
|
32 |
}
|
sl@0
|
33 |
|
sl@0
|
34 |
TUint CApaTextRecognizer::PreferredBufSize()
|
sl@0
|
35 |
{
|
sl@0
|
36 |
return KMaxBufferLength;
|
sl@0
|
37 |
}
|
sl@0
|
38 |
|
sl@0
|
39 |
#if defined(_DEBUG)
|
sl@0
|
40 |
TDataType CApaTextRecognizer::SupportedDataTypeL(TInt aIndex) const
|
sl@0
|
41 |
#else
|
sl@0
|
42 |
TDataType CApaTextRecognizer::SupportedDataTypeL(TInt /*aIndex*/) const
|
sl@0
|
43 |
#endif
|
sl@0
|
44 |
{
|
sl@0
|
45 |
__ASSERT_DEBUG(aIndex==0,User::Invariant());
|
sl@0
|
46 |
return TDataType(KDataTypeTextPlain);
|
sl@0
|
47 |
}
|
sl@0
|
48 |
|
sl@0
|
49 |
void CApaTextRecognizer::DoRecognizeL(const TDesC& aName, const TDesC8& aBuffer)
|
sl@0
|
50 |
{
|
sl@0
|
51 |
TBool nameRecognized=EFalse;
|
sl@0
|
52 |
|
sl@0
|
53 |
// check if the file has valid UIDs
|
sl@0
|
54 |
if (aBuffer.Length() >= 16)
|
sl@0
|
55 |
{
|
sl@0
|
56 |
// if the first 3 bytes are valid UIDs,then this file is not a plain/text.
|
sl@0
|
57 |
// Set iConfidence appropriately and exit.
|
sl@0
|
58 |
const TCheckedUid checkUid(aBuffer.Left(16));
|
sl@0
|
59 |
if (checkUid.UidType().IsValid())
|
sl@0
|
60 |
{
|
sl@0
|
61 |
iConfidence=ENotRecognized;
|
sl@0
|
62 |
return;
|
sl@0
|
63 |
}
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
if (aName.Length()>4)
|
sl@0
|
67 |
{
|
sl@0
|
68 |
nameRecognized=(aName.Right(4).CompareF(KTextFileExt)==0);
|
sl@0
|
69 |
}
|
sl@0
|
70 |
const TInt length=Min(aBuffer.Length(), KMaxBufferLength);
|
sl@0
|
71 |
if (length<KMinBufferLength && !nameRecognized)
|
sl@0
|
72 |
return;
|
sl@0
|
73 |
TInt ii;
|
sl@0
|
74 |
for (ii=0; ii<length; ii++)
|
sl@0
|
75 |
{
|
sl@0
|
76 |
const TUint chr=aBuffer[ii];
|
sl@0
|
77 |
// these are guesses of what WON'T be in a text file
|
sl@0
|
78 |
if (chr<9 || chr==11 || chr==12 || (chr>13 && chr<32))
|
sl@0
|
79 |
{
|
sl@0
|
80 |
break;
|
sl@0
|
81 |
}
|
sl@0
|
82 |
if (chr>148)
|
sl@0
|
83 |
{
|
sl@0
|
84 |
break;
|
sl@0
|
85 |
}
|
sl@0
|
86 |
}
|
sl@0
|
87 |
const TBool validChars=(ii==length);
|
sl@0
|
88 |
|
sl@0
|
89 |
if (nameRecognized)
|
sl@0
|
90 |
{
|
sl@0
|
91 |
iConfidence=validChars? EProbable : EUnlikely;
|
sl@0
|
92 |
}
|
sl@0
|
93 |
else
|
sl@0
|
94 |
{
|
sl@0
|
95 |
if (!validChars)
|
sl@0
|
96 |
{
|
sl@0
|
97 |
return;
|
sl@0
|
98 |
}
|
sl@0
|
99 |
iConfidence=EPossible;
|
sl@0
|
100 |
}
|
sl@0
|
101 |
iDataType=TDataType(KDataTypeTextPlain);
|
sl@0
|
102 |
}
|
sl@0
|
103 |
|
sl@0
|
104 |
CApaDataRecognizerType* CApaTextRecognizer::CreateRecognizerL()
|
sl@0
|
105 |
{
|
sl@0
|
106 |
return new (ELeave) CApaTextRecognizer();
|
sl@0
|
107 |
}
|
sl@0
|
108 |
|
sl@0
|
109 |
const TImplementationProxy ImplementationTable[] =
|
sl@0
|
110 |
{
|
sl@0
|
111 |
IMPLEMENTATION_PROXY_ENTRY(0x101F7DA0,CApaTextRecognizer::CreateRecognizerL)
|
sl@0
|
112 |
};
|
sl@0
|
113 |
|
sl@0
|
114 |
EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
|
sl@0
|
115 |
{
|
sl@0
|
116 |
aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
|
sl@0
|
117 |
return ImplementationTable;
|
sl@0
|
118 |
}
|
sl@0
|
119 |
|
sl@0
|
120 |
|